87 lines
2.1 KiB
Vue
87 lines
2.1 KiB
Vue
<template>
|
|
<FormBase>
|
|
<FormSwitch :value="$i.injectFeaturedNote" @update:value="onChangeInjectFeaturedNote">
|
|
{{ $ts.showFeaturedNotesInTimeline }}
|
|
</FormSwitch>
|
|
|
|
<FormSwitch v-model:value="reportError">{{ $ts.sendErrorReports }}<template #desc>{{ $ts.sendErrorReportsDescription }}</template></FormSwitch>
|
|
|
|
<FormLink to="/settings/account-info">{{ $ts.accountInfo }}</FormLink>
|
|
<FormLink to="/settings/experimental-features">{{ $ts.experimentalFeatures }}</FormLink>
|
|
|
|
<FormGroup>
|
|
<template #label>{{ $ts.developer }}</template>
|
|
<FormSwitch v-model:value="debug" @update:value="changeDebug">
|
|
DEBUG MODE
|
|
</FormSwitch>
|
|
<template v-if="debug">
|
|
<FormLink to="/settings/regedit">RegEdit</FormLink>
|
|
<FormButton @click="taskmanager">Task Manager</FormButton>
|
|
</template>
|
|
</FormGroup>
|
|
</FormBase>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
|
import { faEllipsisH } from '@fortawesome/free-solid-svg-icons';
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
import FormSelect from '@/components/form/select.vue';
|
|
import FormLink from '@/components/form/link.vue';
|
|
import FormBase from '@/components/form/base.vue';
|
|
import FormGroup from '@/components/form/group.vue';
|
|
import FormButton from '@/components/form/button.vue';
|
|
import * as os from '@/os';
|
|
import { debug } from '@/config';
|
|
import { defaultStore } from '@/store';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormBase,
|
|
FormSelect,
|
|
FormSwitch,
|
|
FormButton,
|
|
FormLink,
|
|
FormGroup,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
INFO: {
|
|
title: this.$ts.other,
|
|
icon: faEllipsisH
|
|
},
|
|
debug
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
reportError: defaultStore.makeGetterSetter('reportError'),
|
|
},
|
|
|
|
mounted() {
|
|
this.$emit('info', this.INFO);
|
|
},
|
|
|
|
methods: {
|
|
changeDebug(v) {
|
|
console.log(v);
|
|
localStorage.setItem('debug', v.toString());
|
|
location.reload();
|
|
},
|
|
|
|
onChangeInjectFeaturedNote(v) {
|
|
os.api('i/update', {
|
|
injectFeaturedNote: v
|
|
});
|
|
},
|
|
|
|
taskmanager() {
|
|
os.popup(import('@/components/taskmanager.vue'), {
|
|
}, {}, 'closed');
|
|
}
|
|
}
|
|
});
|
|
</script>
|