mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-25 22:01:13 +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);
|
||||
autosize.update(textarea);
|
||||
pictrsDeleteToast(
|
||||
i18n.t("click_to_delete_picture").concat(' (', file.name,')'),
|
||||
i18n.t("picture_deleted").concat(' (', file.name,')'),
|
||||
i18n.t("fail_picture_deleted").concat(' (', file.name,')'),
|
||||
`${i18n.t("click_to_delete_picture")}: ${file.name}`,
|
||||
`${i18n.t("picture_deleted")}: ${file.name}`,
|
||||
`${i18n.t("failed_to_delete_picture")}: ${file.name}`,
|
||||
deleteUrl
|
||||
);
|
||||
} else {
|
||||
|
|
|
@ -641,8 +641,9 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
|||
i.state.postForm.url = Some(url);
|
||||
i.setState({ imageLoading: false });
|
||||
pictrsDeleteToast(
|
||||
i18n.t("click_to_delete_picture"),
|
||||
i18n.t("picture_deleted"),
|
||||
`${i18n.t("click_to_delete_picture")}: ${file.name}`,
|
||||
`${i18n.t("picture_deleted")}: ${file.name}`,
|
||||
`${i18n.t("failed_to_delete_picture")}: ${file.name}`,
|
||||
deleteUrl
|
||||
);
|
||||
} else {
|
||||
|
|
|
@ -553,16 +553,14 @@ export function pictrsDeleteToast(
|
|||
duration: 10000,
|
||||
onClick: () => {
|
||||
if (toast) {
|
||||
fetch(deleteUrl, {})
|
||||
.then( res => {
|
||||
console.log(res)
|
||||
fetch(deleteUrl).then(res => {
|
||||
toast.hideToast();
|
||||
if (res.ok === true){
|
||||
if (res.ok === true) {
|
||||
alert(deletePictureText);
|
||||
} else{
|
||||
} else {
|
||||
alert(failedDeletePictureText);
|
||||
}
|
||||
})
|
||||
});
|
||||
}
|
||||
},
|
||||
close: true,
|
||||
|
|
Loading…
Reference in a new issue