Sharkey/src/client/app/admin/views/moderators.vue

62 lines
1.2 KiB
Vue
Raw Normal View History

2018-11-14 21:15:42 +02:00
<template>
<div class="jnhmugbb">
<ui-card>
<div slot="title"><fa icon="plus"/> {{ $t('add-moderator.title') }}</div>
<section class="fit-top">
<ui-input v-model="username" type="text">
<span slot="prefix">@</span>
</ui-input>
<ui-button @click="add" :disabled="adding">{{ $t('add-moderator.add') }}</ui-button>
</section>
</ui-card>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../i18n';
import parseAcct from "../../../../misc/acct/parse";
export default Vue.extend({
i18n: i18n('admin/views/moderators.vue'),
data() {
return {
username: '',
adding: false
};
},
methods: {
async add() {
this.adding = true;
const process = async () => {
const user = await this.$root.api('users/show', parseAcct(this.username));
await this.$root.api('admin/moderators/add', { userId: user.id });
2018-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 21:15:42 +02:00
type: 'success',
text: this.$t('add-moderator.added')
});
};
await process().catch(e => {
2018-12-02 08:28:52 +02:00
this.$root.dialog({
2018-11-14 21:15:42 +02:00
type: 'error',
2018-11-14 21:24:40 +02:00
text: e.toString()
2018-11-14 21:15:42 +02:00
});
});
this.adding = false;
},
}
});
</script>
<style lang="stylus" scoped>
.jnhmugbb
@media (min-width 500px)
padding 16px
</style>