summaryrefslogtreecommitdiff
path: root/src/client/app/admin/views/moderators.vue
blob: ba9417d9691d9b5009d9fae88d9d1a82bca3e912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<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 });
				this.$root.alert({
					type: 'success',
					text: this.$t('add-moderator.added')
				});
			};

			await process().catch(e => {
				this.$root.alert({
					type: 'error',
					text: e.toString()
				});
			});

			this.adding = false;
		},
	}
});
</script>

<style lang="stylus" scoped>
.jnhmugbb
	@media (min-width 500px)
		padding 16px

</style>