フォルダーを削除できないときダイアログボックスで知らせる (#5111)

* フォルダーを削除できないときダイアログボックスで知らせる

* https://github.com/syuilo/misskey/pull/5111#issuecomment-508959068

かわいい
This commit is contained in:
Satsuki Yanagi
2019-07-07 14:56:51 +09:00
committed by syuilo
parent 638458e2c1
commit 3b8ea90fdc
2 changed files with 17 additions and 0 deletions

View File

@ -213,6 +213,21 @@ export default Vue.extend({
deleteFolder() {
this.$root.api('drive/folders/delete', {
folderId: this.folder.id
}).catch(err => {
switch(err.id) {
case 'b0fc8a17-963c-405d-bfbc-859a487295e1':
this.$root.dialog({
type: 'error',
title: this.$t('unable-to-delete'),
text: this.$t('has-child-files-or-folders')
});
break;
default:
this.$root.dialog({
type: 'error',
text: this.$t('unable-to-delete')
});
}
});
}
}