2021-04-22 16:29:33 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><XHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:35:46 +03:00
|
|
|
<MkSpacer :contentMax="700" :marginMin="16" :marginMax="32">
|
2022-06-20 11:38:49 +03:00
|
|
|
<FormSuspense :p="init">
|
2023-07-08 02:46:42 +03:00
|
|
|
<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>
|
2023-07-02 10:02:32 +03:00
|
|
|
|
2023-07-08 02:46:42 +03:00
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
|
|
<MkSwitch v-model="enableIdenticonGeneration">
|
|
|
|
<template #label>{{ i18n.ts.enableIdenticonGeneration }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
2023-07-02 10:02:32 +03:00
|
|
|
|
2023-07-08 02:46:42 +03:00
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
|
|
<MkSwitch v-model="enableChartsForRemoteUser">
|
|
|
|
<template #label>{{ i18n.ts.enableChartsForRemoteUser }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
2023-05-19 07:35:46 +03:00
|
|
|
|
2023-07-08 02:46:42 +03:00
|
|
|
<div class="_panel" style="padding: 16px;">
|
|
|
|
<MkSwitch v-model="enableChartsForFederatedInstances">
|
|
|
|
<template #label>{{ i18n.ts.enableChartsForFederatedInstances }}</template>
|
|
|
|
<template #caption>{{ i18n.ts.turnOffToImprovePerformance }}</template>
|
|
|
|
</MkSwitch>
|
|
|
|
</div>
|
2023-05-19 07:35:46 +03:00
|
|
|
</div>
|
2022-06-20 11:38:49 +03:00
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 16:29:33 +03:00
|
|
|
</template>
|
|
|
|
|
2022-05-25 10:38:18 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-06-20 11:38:49 +03:00
|
|
|
import XHeader from './_header_.vue';
|
2022-01-04 14:16:41 +02:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-02-28 20:51:31 +02:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-25 10:38:18 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-05-19 07:35:46 +03:00
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
|
|
|
2023-07-02 10:02:32 +03:00
|
|
|
let enableServerMachineStats: boolean = $ref(false);
|
|
|
|
let enableIdenticonGeneration: boolean = $ref(false);
|
2023-05-19 07:35:46 +03:00
|
|
|
let enableChartsForRemoteUser: boolean = $ref(false);
|
|
|
|
let enableChartsForFederatedInstances: boolean = $ref(false);
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-25 10:38:18 +03:00
|
|
|
async function init() {
|
2023-05-19 07:35:46 +03:00
|
|
|
const meta = await os.api('admin/meta');
|
2023-07-02 10:02:32 +03:00
|
|
|
enableServerMachineStats = meta.enableServerMachineStats;
|
|
|
|
enableIdenticonGeneration = meta.enableIdenticonGeneration;
|
2023-05-19 07:35:46 +03:00
|
|
|
enableChartsForRemoteUser = meta.enableChartsForRemoteUser;
|
|
|
|
enableChartsForFederatedInstances = meta.enableChartsForFederatedInstances;
|
2022-05-25 10:38:18 +03:00
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-05-25 10:38:18 +03:00
|
|
|
function save() {
|
2023-05-19 07:35:46 +03:00
|
|
|
os.apiWithDialog('admin/update-meta', {
|
2023-07-02 10:02:32 +03:00
|
|
|
enableServerMachineStats,
|
|
|
|
enableIdenticonGeneration,
|
2023-05-19 07:35:46 +03:00
|
|
|
enableChartsForRemoteUser,
|
|
|
|
enableChartsForFederatedInstances,
|
|
|
|
}).then(() => {
|
2022-05-25 10:38:18 +03:00
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 16:29:33 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-check',
|
2022-06-20 11:38:49 +03:00
|
|
|
text: i18n.ts.save,
|
|
|
|
handler: save,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.other,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-adjustments',
|
2021-04-22 16:29:33 +03:00
|
|
|
});
|
|
|
|
</script>
|