mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 04:43:08 +02:00
87 lines
2.8 KiB
Vue
87 lines
2.8 KiB
Vue
<template>
|
|
<MkStickyContainer>
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
|
<FormSuspense :p="init">
|
|
<div class="_gaps">
|
|
<div class="_panel" style="padding: 16px;">
|
|
<MkSwitch v-model="enableServerMachineStats">
|
|
<template #label>{{ i18n.ts.enableServerMachineStats }}</template>
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
</MkSwitch>
|
|
</div>
|
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
<MkSwitch v-model="enableIdenticonGeneration">
|
|
<template #label>{{ i18n.ts.enableIdenticonGeneration }}</template>
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
</MkSwitch>
|
|
</div>
|
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
<MkSwitch v-model="enableChartsForRemoteUser">
|
|
<template #label>{{ i18n.ts.enableChartsForRemoteUser }}</template>
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
</MkSwitch>
|
|
</div>
|
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
<MkSwitch v-model="enableChartsForFederatedInstances">
|
|
<template #label>{{ i18n.ts.enableChartsForFederatedInstances }}</template>
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
</MkSwitch>
|
|
</div>
|
|
</div>
|
|
</FormSuspense>
|
|
</MkSpacer>
|
|
</MkStickyContainer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { } from 'vue';
|
|
import XHeader from './_header_.vue';
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
|
import * as os from '@/os';
|
|
import { fetchInstance } from '@/instance';
|
|
import { i18n } from '@/i18n';
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
let enableServerMachineStats: boolean = $ref(false);
|
|
let enableIdenticonGeneration: boolean = $ref(false);
|
|
let enableChartsForRemoteUser: boolean = $ref(false);
|
|
let enableChartsForFederatedInstances: boolean = $ref(false);
|
|
|
|
async function init() {
|
|
const meta = await os.api('admin/meta');
|
|
enableServerMachineStats = meta.enableServerMachineStats;
|
|
enableIdenticonGeneration = meta.enableIdenticonGeneration;
|
|
enableChartsForRemoteUser = meta.enableChartsForRemoteUser;
|
|
enableChartsForFederatedInstances = meta.enableChartsForFederatedInstances;
|
|
}
|
|
|
|
function save() {
|
|
os.apiWithDialog('admin/update-meta', {
|
|
enableServerMachineStats,
|
|
enableIdenticonGeneration,
|
|
enableChartsForRemoteUser,
|
|
enableChartsForFederatedInstances,
|
|
}).then(() => {
|
|
fetchInstance();
|
|
});
|
|
}
|
|
|
|
const headerActions = $computed(() => [{
|
|
asFullButton: true,
|
|
icon: 'ti ti-check',
|
|
text: i18n.ts.save,
|
|
handler: save,
|
|
}]);
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
definePageMetadata({
|
|
title: i18n.ts.other,
|
|
icon: 'ti ti-adjustments',
|
|
});
|
|
</script>
|