egirlskey/packages/frontend/src/pages/registry.value.vue

130 lines
3.3 KiB
Vue
Raw Normal View History

<!--
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>
<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-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>
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';
import MkButton from '@/components/MkButton.vue';
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';
import FormInfo from '@/components/MkInfo.vue';
2022-07-16 14:11:05 +00:00
const props = defineProps<{
path: string;
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,
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),
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,
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,
icon: 'ti ti-adjustments',
2022-07-16 14:11:05 +00:00
});
</script>