2022-07-16 14:11:05 +00:00
< template >
< MkStickyContainer >
< template # header > < MkPageHeader :actions = "headerActions" :tabs = "headerTabs" / > < / template >
2022-07-16 20:13:07 +00:00
< MkSpacer :content-max = "600" :margin-min = "16" >
2022-07-16 14:11:05 +00:00
< FormSplit >
< MkKeyValue class = "_formBlock" >
2022-07-20 13:24:26 +00:00
< template # key > { { i18n . ts . _registry . domain } } < / template >
< template # value > { { i18n . ts . system } } < / template >
2022-07-16 14:11:05 +00:00
< / MkKeyValue >
< MkKeyValue class = "_formBlock" >
2022-07-20 13:24:26 +00:00
< template # key > { { i18n . ts . _registry . scope } } < / template >
2022-07-16 14:11:05 +00:00
< template # value > { { scope . join ( '/' ) } } < / template >
< / MkKeyValue >
< / FormSplit >
< MkButton primary @click ="createKey" > {{ i18n.ts._registry.createKey }} < / MkButton >
< FormSection v-if = "keys" >
< template # label > { { i18n . ts . keys } } < / template >
< div class = "_formLinks" >
< FormLink v-for = "key in keys" :to="`/registry/value/system/${scope.join('/')}/${key[0]}`" class="_monospace" > {{ key [ 0 ] }} < template # suffix > { { key [ 1 ] . toUpperCase ( ) } } < / template > < / FormLink >
< / div >
< / FormSection >
< / MkSpacer >
< / MkStickyContainer >
< / template >
< script lang = "ts" setup >
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' ;
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' ;
2022-07-16 14:11:05 +00:00
import FormSplit from '@/components/form/split.vue' ;
const props = defineProps < {
path : string ;
} > ( ) ;
const scope = $computed ( ( ) => props . path . split ( '/' ) ) ;
let keys = $ref ( null ) ;
function fetchKeys ( ) {
os . api ( 'i/registry/keys-with-type' , {
scope : scope ,
} ) . then ( res => {
keys = Object . entries ( res ) . sort ( ( a , b ) => a [ 0 ] . localeCompare ( b [ 0 ] ) ) ;
} ) ;
}
async function createKey ( ) {
const { canceled , result } = await os . form ( i18n . ts . _registry . createKey , {
key : {
type : 'string' ,
label : i18n . ts . _registry . key ,
} ,
value : {
type : 'string' ,
multiline : true ,
label : i18n . ts . value ,
} ,
scope : {
type : 'string' ,
label : i18n . ts . _registry . scope ,
default : scope . join ( '/' ) ,
} ,
} ) ;
if ( canceled ) return ;
os . apiWithDialog ( 'i/registry/set' , {
scope : result . scope . split ( '/' ) ,
key : result . key ,
value : JSON5 . parse ( result . value ) ,
} ) . then ( ( ) => {
fetchKeys ( ) ;
} ) ;
}
watch ( ( ) => props . path , fetchKeys , { 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 >
2022-12-27 09:29:39 +00:00
< style lang = "scss" scoped >
2022-07-16 14:11:05 +00:00
< / style >