mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 09:33:09 +02:00
75034d9240
* refactor(frontend): Reactivityで型を明示するように * fix: プロパティの参照が誤っているのを修正 * fix: 初期化の値を空配列に書き換えていた部分をnullに置き換え
79 lines
2.2 KiB
Vue
79 lines
2.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkStickyContainer>
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :contentMax="600" :marginMin="16">
|
|
<MkButton primary @click="createKey">{{ i18n.ts._registry.createKey }}</MkButton>
|
|
|
|
<div v-if="scopesWithDomain" class="_gaps_m">
|
|
<FormSection v-for="domain in scopesWithDomain" :key="domain.domain">
|
|
<template #label>{{ domain.domain ? domain.domain.toUpperCase() : i18n.ts.system }}</template>
|
|
<div class="_gaps_s">
|
|
<FormLink v-for="scope in domain.scopes" :to="`/registry/keys/${domain.domain ?? '@'}/${scope.join('/')}`" class="_monospace">{{ scope.length === 0 ? '(root)' : scope.join('/') }}</FormLink>
|
|
</div>
|
|
</FormSection>
|
|
</div>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, computed } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import JSON5 from 'json5';
|
|
import * as os from '@/os.js';
|
|
import { i18n } from '@/i18n.js';
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
import FormLink from '@/components/form/link.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
const scopesWithDomain = ref<Misskey.entities.IRegistryScopesWithDomainResponse | null>(null);
|
|
|
|
function fetchScopes() {
|
|
os.api('i/registry/scopes-with-domain').then(res => {
|
|
scopesWithDomain.value = res;
|
|
});
|
|
}
|
|
|
|
async function createKey() {
|
|
const { canceled, result } = await os.form(i18n.ts._registry.createKey, {
|
|
key: {
|
|
type: 'string',
|
|
label: i18n.ts._registry.key,
|
|
},
|
|
value: {
|
|
type: 'string',
|
|
multiline: true,
|
|
label: i18n.ts.value,
|
|
},
|
|
scope: {
|
|
type: 'string',
|
|
label: i18n.ts._registry.scope,
|
|
},
|
|
});
|
|
if (canceled) return;
|
|
os.apiWithDialog('i/registry/set', {
|
|
scope: result.scope.split('/'),
|
|
key: result.key,
|
|
value: JSON5.parse(result.value),
|
|
}).then(() => {
|
|
fetchScopes();
|
|
});
|
|
}
|
|
|
|
fetchScopes();
|
|
|
|
const headerActions = computed(() => []);
|
|
|
|
const headerTabs = computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.registry,
|
|
icon: 'ti ti-adjustments',
|
|
});
|
|
</script>
|