90 lines
1.9 KiB
Vue
90 lines
1.9 KiB
Vue
|
<template>
|
||
|
<x-window ref="window" :width="400" :height="450" :no-padding="true" @closed="() => { $emit('closed'); destroyDom(); }" :with-ok-button="true" :ok-button-disabled="false" @ok="ok()" :can-close="false">
|
||
|
<template #header>{{ title || $t('generateAccessToken') }}</template>
|
||
|
<div class="ugkkpisj">
|
||
|
<div>
|
||
|
<mk-input v-model="name">{{ $t('name') }}</mk-input>
|
||
|
</div>
|
||
|
<div>
|
||
|
<div style="margin-bottom: 16px;"><b>{{ $t('permission') }}</b></div>
|
||
|
<mk-button inline @click="disableAll">{{ $t('disableAll') }}</mk-button>
|
||
|
<mk-button inline @click="enableAll">{{ $t('enableAll') }}</mk-button>
|
||
|
<mk-switch v-for="kind in kinds" :key="kind" v-model="permissions[kind]">{{ $t(`_permissions.${kind}`) }}</mk-switch>
|
||
|
</div>
|
||
|
</div>
|
||
|
</x-window>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
import { kinds } from '../../misc/api-permissions';
|
||
|
import XWindow from './window.vue';
|
||
|
import MkInput from './ui/input.vue';
|
||
|
import MkTextarea from './ui/textarea.vue';
|
||
|
import MkSwitch from './ui/switch.vue';
|
||
|
import MkButton from './ui/button.vue';
|
||
|
|
||
|
export default Vue.extend({
|
||
|
components: {
|
||
|
XWindow,
|
||
|
MkInput,
|
||
|
MkTextarea,
|
||
|
MkSwitch,
|
||
|
MkButton,
|
||
|
},
|
||
|
|
||
|
props: {
|
||
|
title: {
|
||
|
type: String,
|
||
|
required: false,
|
||
|
default: null
|
||
|
}
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
name: null,
|
||
|
permissions: {},
|
||
|
kinds
|
||
|
};
|
||
|
},
|
||
|
|
||
|
created() {
|
||
|
for (const kind of this.kinds) {
|
||
|
Vue.set(this.permissions, kind, false);
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
ok() {
|
||
|
this.$emit('ok', {
|
||
|
name: this.name,
|
||
|
permissions: Object.keys(this.permissions).filter(p => this.permissions[p])
|
||
|
});
|
||
|
this.$refs.window.close();
|
||
|
},
|
||
|
|
||
|
disableAll() {
|
||
|
for (const p in this.permissions) {
|
||
|
this.permissions[p] = false;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
enableAll() {
|
||
|
for (const p in this.permissions) {
|
||
|
this.permissions[p] = true;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
.ugkkpisj {
|
||
|
> div {
|
||
|
padding: 24px;
|
||
|
border-top: solid 1px var(--divider);
|
||
|
}
|
||
|
}
|
||
|
</style>
|