Improve input dialog

This commit is contained in:
syuilo 2018-12-02 20:10:53 +09:00
parent 3a2dc95850
commit 1653977392
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
26 changed files with 201 additions and 318 deletions

View file

@ -384,13 +384,12 @@ export default Vue.extend({
},
addVisibleUser() {
this.$input({
title: this.$t('enter-username')
}).then(acct => {
if (acct.startsWith('@')) acct = acct.substr(1);
this.$root.api('users/show', parseAcct(acct)).then(user => {
this.visibleUsers.push(user);
});
this.$root.dialog({
title: this.$t('enter-username'),
user: true
}).then(({ canceled, result: user }) => {
if (canceled) return;
this.visibleUsers.push(user);
});
},