2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-07-16 17:11:05 +03:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 10:20:53 +03:00
|
|
|
<MkSpacer :contentMax="600" :marginMin="16">
|
2022-07-16 17:11:05 +03:00
|
|
|
<MkButton primary @click="createKey">{{ i18n.ts._registry.createKey }}</MkButton>
|
|
|
|
|
2023-11-03 06:23:03 +02:00
|
|
|
<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>
|
2022-07-16 17:11:05 +03:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-12-07 07:42:09 +02:00
|
|
|
import { ref, computed } from 'vue';
|
2022-07-16 17:11:05 +03:00
|
|
|
import JSON5 from 'json5';
|
2023-09-19 10:37:43 +03:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2022-07-16 17:11:05 +03:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-07-16 17:11:05 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const scopesWithDomain = ref(null);
|
2022-07-16 17:11:05 +03:00
|
|
|
|
|
|
|
function fetchScopes() {
|
2023-11-03 06:23:03 +02:00
|
|
|
os.api('i/registry/scopes-with-domain').then(res => {
|
2023-12-07 07:42:09 +02:00
|
|
|
scopesWithDomain.value = res;
|
2022-07-16 17:11:05 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerActions = computed(() => []);
|
2022-07-16 17:11:05 +03:00
|
|
|
|
2023-12-07 07:42:09 +02:00
|
|
|
const headerTabs = computed(() => []);
|
2022-07-16 17:11:05 +03:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.registry,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-adjustments',
|
2022-07-16 17:11:05 +03:00
|
|
|
});
|
|
|
|
</script>
|