summaryrefslogtreecommitdiff
path: root/src/client/pages/admin/proxy-account.vue
blob: b1ece19710eee4e7263b153729a62f032b75dc9f (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<template>
<FormBase>
	<FormSuspense :p="init">
		<FormGroup>
			<FormKeyValueView>
				<template #key>{{ $ts.proxyAccount }}</template>
				<template #value>{{ proxyAccount ? `@${proxyAccount.username}` : $ts.none }}</template>
			</FormKeyValueView>
			<template #caption>{{ $ts.proxyAccountDescription }}</template>
		</FormGroup>

		<FormButton @click="chooseProxyAccount" primary>{{ $ts.selectAccount }}</FormButton>
	</FormSuspense>
</FormBase>
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import FormKeyValueView from '@client/components/debobigego/key-value-view.vue';
import FormInput from '@client/components/debobigego/input.vue';
import FormButton from '@client/components/debobigego/button.vue';
import FormBase from '@client/components/debobigego/base.vue';
import FormGroup from '@client/components/debobigego/group.vue';
import FormTextarea from '@client/components/debobigego/textarea.vue';
import FormInfo from '@client/components/debobigego/info.vue';
import FormSuspense from '@client/components/debobigego/suspense.vue';
import * as os from '@client/os';
import * as symbols from '@client/symbols';
import { fetchInstance } from '@client/instance';

export default defineComponent({
	components: {
		FormKeyValueView,
		FormInput,
		FormBase,
		FormGroup,
		FormButton,
		FormTextarea,
		FormInfo,
		FormSuspense,
	},

	emits: ['info'],

	data() {
		return {
			[symbols.PAGE_INFO]: {
				title: this.$ts.proxyAccount,
				icon: 'fas fa-ghost',
				bg: 'var(--bg)',
			},
			proxyAccount: null,
			proxyAccountId: null,
		}
	},

	async mounted() {
		this.$emit('info', this[symbols.PAGE_INFO]);
	},

	methods: {
		async init() {
			const meta = await os.api('meta', { detail: true });
			this.proxyAccountId = meta.proxyAccountId;
			if (this.proxyAccountId) {
				this.proxyAccount = await os.api('users/show', { userId: this.proxyAccountId });
			}
		},

		chooseProxyAccount() {
			os.selectUser().then(user => {
				this.proxyAccount = user;
				this.proxyAccountId = user.id;
				this.save();
			});
		},

		save() {
			os.apiWithDialog('admin/update-meta', {
				proxyAccountId: this.proxyAccountId,
			}).then(() => {
				fetchInstance();
			});
		}
	}
});
</script>