diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 10:40:01 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-11-05 10:40:01 +0900 |
| commit | e3ec0ad97e988467301488624f3c74aeec26b477 (patch) | |
| tree | d5fdc9bc7078794fb95b69d42a982be913fa8188 | |
| parent | [API] Better validation of admin/emoji/add (diff) | |
| download | misskey-e3ec0ad97e988467301488624f3c74aeec26b477.tar.gz misskey-e3ec0ad97e988467301488624f3c74aeec26b477.tar.bz2 misskey-e3ec0ad97e988467301488624f3c74aeec26b477.zip | |
[Client] Improve admin panel usability
| -rw-r--r-- | locales/ja-JP.yml | 3 | ||||
| -rw-r--r-- | src/client/app/admin/views/announcements.vue | 29 |
2 files changed, 24 insertions, 8 deletions
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 4d87859d88..2650d3c21c 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1151,6 +1151,9 @@ admin/views/announcements.vue: title: "タイトル" text: "内容" saved: "保存しました" + _remove: + are-you-sure: "「$1」を削除しますか?" + removed: "削除しました" admin/views/hashtags.vue: hided-tags: "Hidden Tags" diff --git a/src/client/app/admin/views/announcements.vue b/src/client/app/admin/views/announcements.vue index 926426844d..bd99e1bc0d 100644 --- a/src/client/app/admin/views/announcements.vue +++ b/src/client/app/admin/views/announcements.vue @@ -10,7 +10,7 @@ <span>%i18n:@text%</span> </ui-textarea> <ui-horizon-group> - <ui-button @click="save">%fa:save R% %i18n:@save%</ui-button> + <ui-button @click="save()">%fa:save R% %i18n:@save%</ui-button> <ui-button @click="remove(i)">%fa:trash-alt R% %i18n:@remove%</ui-button> </ui-horizon-group> </section> @@ -46,18 +46,31 @@ export default Vue.extend({ }, remove(i) { - this.announcements = this.announcements.filter((_, j) => j !== i); - this.save(); + this.$swal({ + type: 'warning', + text: '%i18n:@_remove.are-you-sure%'.replace('$1', this.announcements.find((_, j) => j == i).title), + showCancelButton: true + }).then(res => { + if (!res.value) return; + this.announcements = this.announcements.filter((_, j) => j !== i); + this.save(true); + this.$swal({ + type: 'success', + text: '%i18n:@_remove.removed%' + }); + }); }, - save() { + save(silent) { (this as any).api('admin/update-meta', { broadcasts: this.announcements }).then(() => { - this.$swal({ - type: 'success', - text: '%i18n:@saved%' - }); + if (!silent) { + this.$swal({ + type: 'success', + text: '%i18n:@saved%' + }); + } }).catch(e => { this.$swal({ type: 'error', |