2020-10-17 06:12:00 -05:00
|
|
|
<template>
|
2020-11-25 06:31:34 -06:00
|
|
|
<FormBase>
|
2021-01-23 01:52:45 -06:00
|
|
|
<FormLink to="/settings/update">Misskey Update</FormLink>
|
|
|
|
|
2020-12-18 19:55:52 -06:00
|
|
|
<FormSwitch :value="$i.injectFeaturedNote" @update:value="onChangeInjectFeaturedNote">
|
2020-12-25 19:47:36 -06:00
|
|
|
{{ $ts.showFeaturedNotesInTimeline }}
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormSwitch>
|
|
|
|
|
2021-01-08 06:43:56 -06:00
|
|
|
<FormSwitch v-model:value="reportError">{{ $ts.sendErrorReports }}<template #desc>{{ $ts.sendErrorReportsDescription }}</template></FormSwitch>
|
|
|
|
|
2020-12-25 19:47:36 -06:00
|
|
|
<FormLink to="/settings/account-info">{{ $ts.accountInfo }}</FormLink>
|
|
|
|
<FormLink to="/settings/experimental-features">{{ $ts.experimentalFeatures }}</FormLink>
|
2020-11-25 06:31:34 -06:00
|
|
|
|
|
|
|
<FormGroup>
|
2020-12-25 19:47:36 -06:00
|
|
|
<template #label>{{ $ts.developer }}</template>
|
2020-11-25 06:31:34 -06:00
|
|
|
<FormSwitch v-model:value="debug" @update:value="changeDebug">
|
2020-10-31 21:39:38 -05:00
|
|
|
DEBUG MODE
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormSwitch>
|
|
|
|
<template v-if="debug">
|
|
|
|
<FormButton @click="taskmanager">Task Manager</FormButton>
|
|
|
|
</template>
|
|
|
|
</FormGroup>
|
2021-01-11 05:38:34 -06:00
|
|
|
|
|
|
|
<FormLink to="/settings/registry"><template #icon><Fa :icon="faCogs"/></template>{{ $ts.registry }}</FormLink>
|
2021-01-11 05:57:48 -06:00
|
|
|
|
|
|
|
<FormButton @click="closeAccount" danger>{{ $ts.closeAccount }}</FormButton>
|
2020-11-25 06:31:34 -06:00
|
|
|
</FormBase>
|
2020-10-17 06:12:00 -05:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-31 21:39:38 -05:00
|
|
|
import { defineAsyncComponent, defineComponent } from 'vue';
|
2021-01-11 05:38:34 -06:00
|
|
|
import { faEllipsisH, faCogs } from '@fortawesome/free-solid-svg-icons';
|
2020-11-25 06:31:34 -06:00
|
|
|
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';
|
2020-10-17 06:12:00 -05:00
|
|
|
import * as os from '@/os';
|
2020-10-31 21:39:38 -05:00
|
|
|
import { debug } from '@/config';
|
2021-01-08 06:43:56 -06:00
|
|
|
import { defaultStore } from '@/store';
|
2021-01-11 05:57:48 -06:00
|
|
|
import { signout } from '@/account';
|
2021-02-17 06:36:56 -06:00
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2020-10-17 06:12:00 -05:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2020-11-25 06:31:34 -06:00
|
|
|
FormBase,
|
|
|
|
FormSelect,
|
|
|
|
FormSwitch,
|
|
|
|
FormButton,
|
|
|
|
FormLink,
|
|
|
|
FormGroup,
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
2020-12-25 19:47:36 -06:00
|
|
|
title: this.$ts.other,
|
2020-11-03 05:36:12 -06:00
|
|
|
icon: faEllipsisH
|
2020-10-17 06:12:00 -05:00
|
|
|
},
|
2021-01-11 05:38:34 -06:00
|
|
|
debug,
|
|
|
|
faCogs
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2021-01-08 06:43:56 -06:00
|
|
|
computed: {
|
|
|
|
reportError: defaultStore.makeGetterSetter('reportError'),
|
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
mounted() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
2020-10-31 21:39:38 -05:00
|
|
|
changeDebug(v) {
|
|
|
|
console.log(v);
|
|
|
|
localStorage.setItem('debug', v.toString());
|
2021-02-17 06:36:56 -06:00
|
|
|
unisonReload();
|
2020-10-31 21:39:38 -05:00
|
|
|
},
|
|
|
|
|
2020-10-17 06:12:00 -05:00
|
|
|
onChangeInjectFeaturedNote(v) {
|
|
|
|
os.api('i/update', {
|
|
|
|
injectFeaturedNote: v
|
|
|
|
});
|
|
|
|
},
|
2020-10-31 21:39:38 -05:00
|
|
|
|
|
|
|
taskmanager() {
|
2020-11-03 00:22:55 -06:00
|
|
|
os.popup(import('@/components/taskmanager.vue'), {
|
2020-10-31 21:39:38 -05:00
|
|
|
}, {}, 'closed');
|
2021-01-11 05:57:48 -06:00
|
|
|
},
|
|
|
|
|
|
|
|
closeAccount() {
|
|
|
|
os.dialog({
|
|
|
|
title: this.$ts.password,
|
|
|
|
input: {
|
|
|
|
type: 'password'
|
|
|
|
}
|
|
|
|
}).then(({ canceled, result: password }) => {
|
|
|
|
if (canceled) return;
|
|
|
|
os.api('i/delete-account', {
|
|
|
|
password: password
|
|
|
|
}).then(() => {
|
|
|
|
signout();
|
|
|
|
});
|
|
|
|
});
|
2020-10-31 21:39:38 -05:00
|
|
|
}
|
2020-10-17 06:12:00 -05:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|