mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-29 15:51:14 +00:00
Fixing up popup code.
This commit is contained in:
parent
dd0ce307f5
commit
6bd795c89b
4 changed files with 11 additions and 12 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit ae3132fef13542ab7fc337361bf484183d12d786
|
Subproject commit 94b9b5debdaa40facf13a852cb096ef0cbd34ad7
|
|
@ -386,9 +386,9 @@ export class MarkdownTextArea extends Component<
|
||||||
let textarea: any = document.getElementById(i.id);
|
let textarea: any = document.getElementById(i.id);
|
||||||
autosize.update(textarea);
|
autosize.update(textarea);
|
||||||
pictrsDeleteToast(
|
pictrsDeleteToast(
|
||||||
i18n.t("click_to_delete_picture").concat(' (', file.name,')'),
|
`${i18n.t("click_to_delete_picture")}: ${file.name}`,
|
||||||
i18n.t("picture_deleted").concat(' (', file.name,')'),
|
`${i18n.t("picture_deleted")}: ${file.name}`,
|
||||||
i18n.t("fail_picture_deleted").concat(' (', file.name,')'),
|
`${i18n.t("failed_to_delete_picture")}: ${file.name}`,
|
||||||
deleteUrl
|
deleteUrl
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -641,8 +641,9 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
||||||
i.state.postForm.url = Some(url);
|
i.state.postForm.url = Some(url);
|
||||||
i.setState({ imageLoading: false });
|
i.setState({ imageLoading: false });
|
||||||
pictrsDeleteToast(
|
pictrsDeleteToast(
|
||||||
i18n.t("click_to_delete_picture"),
|
`${i18n.t("click_to_delete_picture")}: ${file.name}`,
|
||||||
i18n.t("picture_deleted"),
|
`${i18n.t("picture_deleted")}: ${file.name}`,
|
||||||
|
`${i18n.t("failed_to_delete_picture")}: ${file.name}`,
|
||||||
deleteUrl
|
deleteUrl
|
||||||
);
|
);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -553,16 +553,14 @@ export function pictrsDeleteToast(
|
||||||
duration: 10000,
|
duration: 10000,
|
||||||
onClick: () => {
|
onClick: () => {
|
||||||
if (toast) {
|
if (toast) {
|
||||||
fetch(deleteUrl, {})
|
fetch(deleteUrl).then(res => {
|
||||||
.then( res => {
|
|
||||||
console.log(res)
|
|
||||||
toast.hideToast();
|
toast.hideToast();
|
||||||
if (res.ok === true) {
|
if (res.ok === true) {
|
||||||
alert(deletePictureText);
|
alert(deletePictureText);
|
||||||
} else {
|
} else {
|
||||||
alert(failedDeletePictureText);
|
alert(failedDeletePictureText);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
close: true,
|
close: true,
|
||||||
|
|
Loading…
Reference in a new issue