2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2022-07-16 14:11:05 +00:00
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer :contentMax="600" :marginMin="16">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-05 12:04:56 +00:00
|
|
|
<FormInfo warn>{{ i18n.ts.editTheseSettingsMayBreakAccount }}</FormInfo>
|
2022-07-16 14:11:05 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<template v-if="value">
|
|
|
|
<FormSplit>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts._registry.domain }}</template>
|
2023-11-03 04:23:03 +00:00
|
|
|
<template #value>{{ props.domain === '@' ? i18n.ts.system : props.domain.toUpperCase() }}</template>
|
2023-01-05 12:04:56 +00:00
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts._registry.scope }}</template>
|
|
|
|
<template #value>{{ scope.join('/') }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts._registry.key }}</template>
|
|
|
|
<template #value>{{ key }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
</FormSplit>
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2023-01-07 06:09:46 +00:00
|
|
|
<MkTextarea v-model="valueForEditor" tall class="_monospace">
|
2023-01-05 12:04:56 +00:00
|
|
|
<template #label>{{ i18n.ts.value }} (JSON)</template>
|
2023-01-07 06:09:46 +00:00
|
|
|
</MkTextarea>
|
2022-07-16 14:11:05 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkButton primary @click="save"><i class="ti ti-device-floppy"></i> {{ i18n.ts.save }}</MkButton>
|
2022-07-16 14:11:05 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkKeyValue>
|
|
|
|
<template #key>{{ i18n.ts.updatedAt }}</template>
|
|
|
|
<template #value><MkTime :time="value.updatedAt" mode="detail"/></template>
|
|
|
|
</MkKeyValue>
|
2022-07-16 14:11:05 +00:00
|
|
|
|
2023-01-05 12:04:56 +00:00
|
|
|
<MkButton danger @click="del"><i class="ti ti-trash"></i> {{ i18n.ts.delete }}</MkButton>
|
|
|
|
</template>
|
|
|
|
</div>
|
2022-07-16 14:11:05 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { watch } from 'vue';
|
2022-07-16 14:11:05 +00:00
|
|
|
import JSON5 from 'json5';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-08-30 15:24:33 +00:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2022-07-16 14:11:05 +00:00
|
|
|
import FormSplit from '@/components/form/split.vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
2022-07-16 14:11:05 +00:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
path: string;
|
2023-11-03 04:23:03 +00:00
|
|
|
domain: string;
|
2022-07-16 14:11:05 +00:00
|
|
|
}>();
|
|
|
|
|
|
|
|
const scope = $computed(() => props.path.split('/').slice(0, -1));
|
|
|
|
const key = $computed(() => props.path.split('/').at(-1));
|
|
|
|
|
|
|
|
let value = $ref(null);
|
|
|
|
let valueForEditor = $ref(null);
|
|
|
|
|
|
|
|
function fetchValue() {
|
|
|
|
os.api('i/registry/get-detail', {
|
|
|
|
scope,
|
|
|
|
key,
|
2023-11-03 04:23:03 +00:00
|
|
|
domain: props.domain === '@' ? null : props.domain,
|
2022-07-16 14:11:05 +00:00
|
|
|
}).then(res => {
|
|
|
|
value = res;
|
|
|
|
valueForEditor = JSON5.stringify(res.value, null, '\t');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
async function save() {
|
|
|
|
try {
|
|
|
|
JSON5.parse(valueForEditor);
|
2022-07-17 20:08:13 +00:00
|
|
|
} catch (err) {
|
2022-07-16 14:11:05 +00:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: i18n.ts.invalidValue,
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.saveConfirm,
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('i/registry/set', {
|
|
|
|
scope,
|
|
|
|
key,
|
|
|
|
value: JSON5.parse(valueForEditor),
|
2023-11-03 04:23:03 +00:00
|
|
|
domain: props.domain === '@' ? null : props.domain,
|
2022-07-16 14:11:05 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function del() {
|
|
|
|
os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts.deleteConfirm,
|
|
|
|
}).then(({ canceled }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
os.apiWithDialog('i/registry/remove', {
|
|
|
|
scope,
|
|
|
|
key,
|
2023-11-03 04:23:03 +00:00
|
|
|
domain: props.domain === '@' ? null : props.domain,
|
2022-07-16 14:11:05 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(() => props.path, fetchValue, { immediate: true });
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.registry,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-adjustments',
|
2022-07-16 14:11:05 +00:00
|
|
|
});
|
|
|
|
</script>
|