firefish/packages/client/src/pages/registry.value.vue

135 lines
3.3 KiB
Vue
Raw Normal View History

2023-07-20 04:17:05 +09:00
<template>
<MkStickyContainer>
<template #header
><MkPageHeader :actions="headerActions" :tabs="headerTabs"
/></template>
<MkSpacer :content-max="600" :margin-min="16">
<FormInfo warn>{{
i18n.ts.editTheseSettingsMayBreakAccount
}}</FormInfo>
<template v-if="value">
<FormSplit>
<MkKeyValue class="_formBlock">
<template #key>{{ i18n.ts._registry.domain }}</template>
<template #value>{{ i18n.ts.system }}</template>
</MkKeyValue>
<MkKeyValue class="_formBlock">
<template #key>{{ i18n.ts._registry.scope }}</template>
<template #value>{{ scope.join("/") }}</template>
</MkKeyValue>
<MkKeyValue class="_formBlock">
<template #key>{{ i18n.ts._registry.key }}</template>
<template #value>{{ key }}</template>
</MkKeyValue>
</FormSplit>
<FormTextarea
v-model="valueForEditor"
tall
class="_formBlock _monospace"
>
<template #label>{{ i18n.ts.value }} (JSON)</template>
</FormTextarea>
<MkButton class="_formBlock" primary @click="save"
><i class="ph-floppy-disk-back ph-bold ph-lg"></i>
{{ i18n.ts.save }}</MkButton
>
<MkKeyValue class="_formBlock">
<template #key>{{ i18n.ts.updatedAt }}</template>
<template #value
><MkTime :time="value.updatedAt" mode="detail"
/></template>
</MkKeyValue>
<MkButton danger @click="del"
><i class="ph-trash ph-bold ph-lg"></i>
{{ i18n.ts.delete }}</MkButton
>
</template>
</MkSpacer>
</MkStickyContainer>
</template>
<script lang="ts" setup>
2023-09-04 17:47:24 +09:00
import { computed, ref, watch } from "vue";
2023-07-20 04:17:05 +09:00
import JSON5 from "json5";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import MkButton from "@/components/MkButton.vue";
import MkKeyValue from "@/components/MkKeyValue.vue";
import FormTextarea from "@/components/form/textarea.vue";
import FormSplit from "@/components/form/split.vue";
import FormInfo from "@/components/MkInfo.vue";
const props = defineProps<{
path: string;
}>();
2023-08-25 07:19:12 +09:00
const scope = computed(() => props.path.split("/").slice(0, -1));
const key = computed(() => props.path.split("/").at(-1));
2023-07-20 04:17:05 +09:00
2023-09-04 17:47:24 +09:00
const value = ref(null);
const valueForEditor = ref(null);
2023-07-20 04:17:05 +09:00
function fetchValue() {
os.api("i/registry/get-detail", {
2023-08-25 07:19:12 +09:00
scope: scope.value,
key: key.value,
2023-07-20 04:17:05 +09:00
}).then((res) => {
2023-08-25 07:19:12 +09:00
value.value = res;
valueForEditor.value = JSON5.stringify(res.value, null, "\t");
2023-07-20 04:17:05 +09:00
});
}
async function save() {
try {
2023-08-25 07:19:12 +09:00
JSON5.parse(valueForEditor.value);
2023-07-20 04:17:05 +09:00
} catch (err) {
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", {
2023-08-25 07:19:12 +09:00
scope: scope.value,
key: key.value,
value: JSON5.parse(valueForEditor.value),
2023-07-20 04:17:05 +09:00
});
});
}
function del() {
os.confirm({
type: "warning",
text: i18n.ts.deleteConfirm,
}).then(({ canceled }) => {
if (canceled) return;
os.apiWithDialog("i/registry/remove", {
2023-08-25 07:19:12 +09:00
scope: scope.value,
key: key.value,
2023-07-20 04:17:05 +09:00
});
});
}
watch(() => props.path, fetchValue, { immediate: true });
2023-08-25 07:19:12 +09:00
const headerActions = computed(() => []);
2023-07-20 04:17:05 +09:00
2023-08-25 07:19:12 +09:00
const headerTabs = computed(() => []);
2023-07-20 04:17:05 +09:00
definePageMetadata({
title: i18n.ts.registry,
icon: "ph-gear-six ph-bold ph-lg",
});
</script>