iceshrimp-legacy/packages/client/src/pages/registry.value.vue

139 lines
3.3 KiB
Vue
Raw Normal View History

2022-07-16 16:11:05 +02:00
<template>
2023-04-08 02:01:42 +02:00
<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
>
2022-07-16 16:11:05 +02:00
<MkKeyValue class="_formBlock">
2023-04-08 02:01:42 +02:00
<template #key>{{ i18n.ts.updatedAt }}</template>
<template #value
><MkTime :time="value.updatedAt" mode="detail"
/></template>
2022-07-16 16:11:05 +02:00
</MkKeyValue>
2023-04-08 02:01:42 +02:00
<MkButton danger @click="del"
><i class="ph-trash ph-bold ph-lg"></i>
{{ i18n.ts.delete }}</MkButton
>
</template>
</MkSpacer>
</MkStickyContainer>
2022-07-16 16:11:05 +02:00
</template>
<script lang="ts" setup>
2023-04-08 02:01:42 +02:00
import { ref, watch } from "vue";
import JSON5 from "json5";
import * as os from "@/os";
import { i18n } from "@/i18n";
import { definePageMetadata } from "@/scripts/page-metadata";
import FormLink from "@/components/form/link.vue";
import FormSection from "@/components/form/section.vue";
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";
2022-07-16 16:11:05 +02:00
const props = defineProps<{
path: string;
}>();
2023-04-08 02:01:42 +02:00
const scope = $computed(() => props.path.split("/").slice(0, -1));
const key = $computed(() => props.path.split("/").at(-1));
2022-07-16 16:11:05 +02:00
let value = $ref(null);
let valueForEditor = $ref(null);
function fetchValue() {
2023-04-08 02:01:42 +02:00
os.api("i/registry/get-detail", {
2022-07-16 16:11:05 +02:00
scope,
key,
2023-04-08 02:01:42 +02:00
}).then((res) => {
2022-07-16 16:11:05 +02:00
value = res;
2023-04-08 02:01:42 +02:00
valueForEditor = JSON5.stringify(res.value, null, "\t");
2022-07-16 16:11:05 +02:00
});
}
async function save() {
try {
JSON5.parse(valueForEditor);
2022-07-17 22:08:13 +02:00
} catch (err) {
2022-07-16 16:11:05 +02:00
os.alert({
2023-04-08 02:01:42 +02:00
type: "error",
2022-07-16 16:11:05 +02:00
text: i18n.ts.invalidValue,
});
return;
}
os.confirm({
2023-04-08 02:01:42 +02:00
type: "warning",
2022-07-16 16:11:05 +02:00
text: i18n.ts.saveConfirm,
}).then(({ canceled }) => {
if (canceled) return;
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/registry/set", {
2022-07-16 16:11:05 +02:00
scope,
key,
value: JSON5.parse(valueForEditor),
});
});
}
function del() {
os.confirm({
2023-04-08 02:01:42 +02:00
type: "warning",
2022-07-16 16:11:05 +02:00
text: i18n.ts.deleteConfirm,
}).then(({ canceled }) => {
if (canceled) return;
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/registry/remove", {
2022-07-16 16:11:05 +02:00
scope,
key,
});
});
}
watch(() => props.path, fetchValue, { immediate: true });
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.registry,
2023-04-08 02:01:42 +02:00
icon: "ph-gear-six ph-bold ph-lg",
2022-07-16 16:11:05 +02:00
});
</script>
2023-04-08 02:01:42 +02:00
<style lang="scss" scoped></style>