95 lines
2.8 KiB
Vue
95 lines
2.8 KiB
Vue
<template>
|
|
<div class="_formRoot">
|
|
<FormLink to="/settings/update" class="_formBlock">Misskey Update</FormLink>
|
|
|
|
<FormSwitch :value="$i.injectFeaturedNote" @update:modelValue="onChangeInjectFeaturedNote" class="_formBlock">
|
|
{{ $ts.showFeaturedNotesInTimeline }}
|
|
</FormSwitch>
|
|
|
|
<FormSwitch v-model="reportError" class="_formBlock">{{ $ts.sendErrorReports }}<template #desc>{{ $ts.sendErrorReportsDescription }}</template></FormSwitch>
|
|
|
|
<FormLink to="/settings/account-info" class="_formBlock">{{ $ts.accountInfo }}</FormLink>
|
|
<FormLink to="/settings/experimental-features" class="_formBlock">{{ $ts.experimentalFeatures }}</FormLink>
|
|
|
|
<FormSection>
|
|
<template #label>{{ $ts.developer }}</template>
|
|
<FormSwitch v-model="debug" @update:modelValue="changeDebug" class="_formBlock">
|
|
DEBUG MODE
|
|
</FormSwitch>
|
|
<template v-if="debug">
|
|
<FormButton @click="taskmanager">Task Manager</FormButton>
|
|
</template>
|
|
</FormSection>
|
|
|
|
<FormLink to="/settings/registry" class="_formBlock"><template #icon><i class="fas fa-cogs"></i></template>{{ $ts.registry }}</FormLink>
|
|
|
|
<FormLink to="/bios" behavior="browser" class="_formBlock"><template #icon><i class="fas fa-door-open"></i></template>BIOS</FormLink>
|
|
<FormLink to="/cli" behavior="browser" class="_formBlock"><template #icon><i class="fas fa-door-open"></i></template>CLI</FormLink>
|
|
|
|
<FormLink to="/settings/delete-account" class="_formBlock"><template #icon><i class="fas fa-exclamation-triangle"></i></template>{{ $ts.closeAccount }}</FormLink>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
import FormSelect from '@/components/form/select.vue';
|
|
import FormSection from '@/components/form/section.vue';
|
|
import FormLink from '@/components/debobigego/link.vue';
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
import * as os from '@/os';
|
|
import { debug } from '@/config';
|
|
import { defaultStore } from '@/store';
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
import * as symbols from '@/symbols';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
FormSelect,
|
|
FormSection,
|
|
FormSwitch,
|
|
FormButton,
|
|
FormLink,
|
|
},
|
|
|
|
emits: ['info'],
|
|
|
|
data() {
|
|
return {
|
|
[symbols.PAGE_INFO]: {
|
|
title: this.$ts.other,
|
|
icon: 'fas fa-ellipsis-h',
|
|
bg: 'var(--bg)',
|
|
},
|
|
debug,
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
reportError: defaultStore.makeGetterSetter('reportError'),
|
|
},
|
|
|
|
mounted() {
|
|
this.$emit('info', this[symbols.PAGE_INFO]);
|
|
},
|
|
|
|
methods: {
|
|
changeDebug(v) {
|
|
console.log(v);
|
|
localStorage.setItem('debug', v.toString());
|
|
unisonReload();
|
|
},
|
|
|
|
onChangeInjectFeaturedNote(v) {
|
|
os.api('i/update', {
|
|
injectFeaturedNote: v
|
|
});
|
|
},
|
|
|
|
taskmanager() {
|
|
os.popup(import('@/components/taskmanager.vue'), {
|
|
}, {}, 'closed');
|
|
},
|
|
}
|
|
});
|
|
</script>
|