2021-01-11 05:38:34 -06:00
< template >
< FormBase >
< FormGroup >
< FormKeyValueView >
< template # key > { { $ts . _registry . domain } } < / template >
< template # value > { { $ts . system } } < / template >
< / FormKeyValueView >
< FormKeyValueView >
< template # key > { { $ts . _registry . scope } } < / template >
< template # value > { { scope . join ( '/' ) } } < / template >
< / FormKeyValueView >
< / FormGroup >
< FormGroup v-if = "keys" >
< template # label > { { $ts . _registry . keys } } < / template >
< FormLink v-for = "key in keys" :to="`/settings/registry/value/system/${scope.join('/')}/${key[0]}`" class="_monospace" > {{ key [ 0 ] }} < template # suffix > { { key [ 1 ] . toUpperCase ( ) } } < / template > < / FormLink >
< / FormGroup >
< FormButton @click ="createKey" primary > { { $ts . _registry . createKey } } < / FormButton >
< / FormBase >
< / template >
< script lang = "ts" >
import { defineAsyncComponent , defineComponent } from 'vue' ;
import * as JSON5 from 'json5' ;
2021-03-23 03:30:14 -05:00
import FormSwitch from '@client/components/form/switch.vue' ;
import FormSelect from '@client/components/form/select.vue' ;
2021-09-29 10:50:45 -05:00
import FormLink from '@client/components/debobigego/link.vue' ;
import FormBase from '@client/components/debobigego/base.vue' ;
import FormGroup from '@client/components/debobigego/group.vue' ;
import FormButton from '@client/components/debobigego/button.vue' ;
import FormKeyValueView from '@client/components/debobigego/key-value-view.vue' ;
2021-03-23 03:30:14 -05:00
import * as os from '@client/os' ;
2021-04-09 22:54:12 -05:00
import * as symbols from '@client/symbols' ;
2021-01-11 05:38:34 -06:00
export default defineComponent ( {
components : {
FormBase ,
FormSelect ,
FormSwitch ,
FormButton ,
FormLink ,
FormGroup ,
FormKeyValueView ,
} ,
props : {
scope : {
required : true
}
} ,
emits : [ 'info' ] ,
data ( ) {
return {
2021-04-09 22:54:12 -05:00
[ symbols . PAGE _INFO ] : {
2021-01-11 05:38:34 -06:00
title : this . $ts . registry ,
2021-09-29 10:50:45 -05:00
icon : 'fas fa-cogs' ,
bg : 'var(--bg)' ,
2021-01-11 05:38:34 -06:00
} ,
keys : null ,
}
} ,
watch : {
scope ( ) {
this . fetch ( ) ;
}
} ,
mounted ( ) {
2021-04-09 22:54:12 -05:00
this . $emit ( 'info' , this [ symbols . PAGE _INFO ] ) ;
2021-01-11 05:38:34 -06:00
this . fetch ( ) ;
} ,
methods : {
fetch ( ) {
os . api ( 'i/registry/keys-with-type' , {
scope : this . scope
} ) . then ( keys => {
this . keys = Object . entries ( keys ) . sort ( ( a , b ) => a [ 0 ] . localeCompare ( b [ 0 ] ) ) ;
} ) ;
} ,
async createKey ( ) {
const { canceled , result } = await os . form ( this . $ts . _registry . createKey , {
key : {
type : 'string' ,
label : this . $ts . _registry . key ,
} ,
value : {
type : 'string' ,
multiline : true ,
label : this . $ts . value ,
} ,
scope : {
type : 'string' ,
label : this . $ts . _registry . scope ,
default : this . scope . join ( '/' )
}
} ) ;
if ( canceled ) return ;
os . apiWithDialog ( 'i/registry/set' , {
scope : result . scope . split ( '/' ) ,
key : result . key ,
value : JSON5 . parse ( result . value ) ,
} ) . then ( ( ) => {
this . fetch ( ) ;
} ) ;
}
}
} ) ;
< / script >