Fix label and error handling
This commit is contained in:
parent
5879efc978
commit
bbf3b864e7
@ -10,9 +10,13 @@ const EDITION_REGISTER_ENDPOINT = "/register";
|
||||
const EDITION_LOGIN_ENDPOINT = "/access/loginEdition";
|
||||
|
||||
export async function available() {
|
||||
const response = await axios.get(EDITIONS_ENDPOINT);
|
||||
try {
|
||||
const response = await axios.get(EDITIONS_ENDPOINT);
|
||||
|
||||
return (response.data || []).map(editionTeaserDtoTransformer.transform);
|
||||
return (response.data || []).map(editionTeaserDtoTransformer.transform);
|
||||
} catch (e) {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
||||
export async function join(key: string): Promise<boolean> {
|
||||
@ -26,10 +30,14 @@ export async function join(key: string): Promise<boolean> {
|
||||
}
|
||||
|
||||
export async function get(key: string): Promise<Edition | null> {
|
||||
const response = await axios.get<EditionDTO>(prepare(EDITION_INFO_ENDPOINT, { key }));
|
||||
const dto = response.data;
|
||||
try {
|
||||
const response = await axios.get<EditionDTO>(prepare(EDITION_INFO_ENDPOINT, { key }));
|
||||
const dto = response.data;
|
||||
|
||||
return editionDtoTransformer.transform(dto);
|
||||
return editionDtoTransformer.transform(dto);
|
||||
} catch (error) {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
export async function current(): Promise<Edition> {
|
||||
|
@ -39,6 +39,7 @@ pages:
|
||||
my-editions: "Moje praktyki"
|
||||
pick: "wybierz"
|
||||
register: "Zapisz się do edycji praktyk"
|
||||
no-editions: "Brak edycji do wyboru, zarejestruj się do edycji praktyk przyciskiem poniżej."
|
||||
user-fill:
|
||||
title: "Uzupełnij swoje dane"
|
||||
user-profile:
|
||||
|
Loading…
Reference in New Issue
Block a user