hippofish/src/client/app/desktop/views/pages/admin/admin.suspend-user.vue

58 lines
1 KiB
Vue
Raw Normal View History

2018-08-13 18:05:58 +02:00
<template>
2018-08-25 08:40:22 +02:00
<div class="mk-admin-card">
2018-08-13 18:05:58 +02:00
<header>%i18n:@suspend-user%</header>
2018-08-14 21:44:39 +02:00
<input v-model="username" type="text" class="ui"/>
<button class="ui" @click="suspendUser" :disabled="suspending">%i18n:@suspend%</button>
2018-08-13 18:05:58 +02:00
</div>
</template>
<script lang="ts">
import Vue from "vue";
import parseAcct from "../../../../../../misc/acct/parse";
export default Vue.extend({
2018-08-13 18:48:11 +02:00
data() {
return {
username: null,
suspending: false
};
},
methods: {
async suspendUser() {
this.suspending = true;
2018-08-13 18:05:58 +02:00
2018-10-02 16:42:46 +02:00
const process = async () => {
const user = await (this as any).os.api(
"users/show",
parseAcct(this.username)
);
2018-08-13 18:05:58 +02:00
2018-10-02 16:42:46 +02:00
await (this as any).os.api("admin/suspend-user", {
userId: user.id
});
(this as any).os.apis.dialog({ text: "%i18n:@suspended%" });
};
await process().catch(e => {
(this as any).os.apis.dialog({ text: `Failed: ${e}` });
2018-08-13 18:48:11 +02:00
});
2018-08-13 18:05:58 +02:00
2018-08-13 18:48:11 +02:00
this.suspending = false;
}
}
2018-08-13 18:05:58 +02:00
});
</script>
2018-08-17 20:59:48 +02:00
<style lang="stylus" scoped>
2018-09-26 13:19:35 +02:00
2018-08-17 20:59:48 +02:00
header
margin 10px 0
button
margin 16px 0
</style>