summaryrefslogtreecommitdiff
path: root/packages/client/src/components/MkTokenGenerateWindow.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
commit9384f5399da39e53855beb8e7f8ded1aa56bf72e (patch)
treece5959571a981b9c4047da3c7b3fd080aa44222c /packages/client/src/components/MkTokenGenerateWindow.vue
parentwip: retention for dashboard (diff)
downloadsharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.gz
sharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.bz2
sharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.zip
rename: client -> frontend
Diffstat (limited to 'packages/client/src/components/MkTokenGenerateWindow.vue')
-rw-r--r--packages/client/src/components/MkTokenGenerateWindow.vue90
1 files changed, 0 insertions, 90 deletions
diff --git a/packages/client/src/components/MkTokenGenerateWindow.vue b/packages/client/src/components/MkTokenGenerateWindow.vue
deleted file mode 100644
index b846034a24..0000000000
--- a/packages/client/src/components/MkTokenGenerateWindow.vue
+++ /dev/null
@@ -1,90 +0,0 @@
-<template>
-<XModalWindow
- ref="dialog"
- :width="400"
- :height="450"
- :with-ok-button="true"
- :ok-button-disabled="false"
- :can-close="false"
- @close="dialog.close()"
- @closed="$emit('closed')"
- @ok="ok()"
->
- <template #header>{{ title || $ts.generateAccessToken }}</template>
- <div v-if="information" class="_section">
- <MkInfo warn>{{ information }}</MkInfo>
- </div>
- <div class="_section">
- <MkInput v-model="name">
- <template #label>{{ $ts.name }}</template>
- </MkInput>
- </div>
- <div class="_section">
- <div style="margin-bottom: 16px;"><b>{{ $ts.permission }}</b></div>
- <MkButton inline @click="disableAll">{{ $ts.disableAll }}</MkButton>
- <MkButton inline @click="enableAll">{{ $ts.enableAll }}</MkButton>
- <MkSwitch v-for="kind in (initialPermissions || kinds)" :key="kind" v-model="permissions[kind]">{{ $t(`_permissions.${kind}`) }}</MkSwitch>
- </div>
-</XModalWindow>
-</template>
-
-<script lang="ts" setup>
-import { } from 'vue';
-import { permissions as kinds } from 'misskey-js';
-import MkInput from './form/input.vue';
-import MkSwitch from './form/switch.vue';
-import MkButton from './MkButton.vue';
-import MkInfo from './MkInfo.vue';
-import XModalWindow from '@/components/MkModalWindow.vue';
-
-const props = withDefaults(defineProps<{
- title?: string | null;
- information?: string | null;
- initialName?: string | null;
- initialPermissions?: string[] | null;
-}>(), {
- title: null,
- information: null,
- initialName: null,
- initialPermissions: null,
-});
-
-const emit = defineEmits<{
- (ev: 'closed'): void;
- (ev: 'done', result: { name: string | null, permissions: string[] }): void;
-}>();
-
-const dialog = $ref<InstanceType<typeof XModalWindow>>();
-let name = $ref(props.initialName);
-let permissions = $ref({});
-
-if (props.initialPermissions) {
- for (const kind of props.initialPermissions) {
- permissions[kind] = true;
- }
-} else {
- for (const kind of kinds) {
- permissions[kind] = false;
- }
-}
-
-function ok(): void {
- emit('done', {
- name: name,
- permissions: Object.keys(permissions).filter(p => permissions[p]),
- });
- dialog.close();
-}
-
-function disableAll(): void {
- for (const p in permissions) {
- permissions[p] = false;
- }
-}
-
-function enableAll(): void {
- for (const p in permissions) {
- permissions[p] = true;
- }
-}
-</script>