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

85 lines
1.9 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">
<MkButton primary @click="createKey">{{
i18n.ts._registry.createKey
}}</MkButton>
2022-07-16 16:11:05 +02:00
2023-04-08 02:01:42 +02:00
<FormSection v-if="scopes">
<template #label>{{ i18n.ts.system }}</template>
<div class="_formLinks">
<FormLink
v-for="scope in scopes"
:to="`/registry/keys/system/${scope.join('/')}`"
class="_monospace"
>{{ scope.join("/") }}</FormLink
>
</div>
</FormSection>
</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";
2022-07-16 16:11:05 +02:00
let scopes = $ref(null);
function fetchScopes() {
2023-04-08 02:01:42 +02:00
os.api("i/registry/scopes").then((res) => {
scopes = res
.slice()
.sort((a, b) => a.join("/").localeCompare(b.join("/")));
2022-07-16 16:11:05 +02:00
});
}
async function createKey() {
const { canceled, result } = await os.form(i18n.ts._registry.createKey, {
key: {
2023-04-08 02:01:42 +02:00
type: "string",
2022-07-16 16:11:05 +02:00
label: i18n.ts._registry.key,
},
value: {
2023-04-08 02:01:42 +02:00
type: "string",
2022-07-16 16:11:05 +02:00
multiline: true,
label: i18n.ts.value,
},
scope: {
2023-04-08 02:01:42 +02:00
type: "string",
2022-07-16 16:11:05 +02:00
label: i18n.ts._registry.scope,
},
});
if (canceled) return;
2023-04-08 02:01:42 +02:00
os.apiWithDialog("i/registry/set", {
scope: result.scope.split("/"),
2022-07-16 16:11:05 +02:00
key: result.key,
value: JSON5.parse(result.value),
}).then(() => {
fetchScopes();
});
}
fetchScopes();
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>