2021-02-06 13:05:00 +01:00
|
|
|
<template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<div class="_formRoot">
|
2022-05-04 03:11:35 +02:00
|
|
|
<FormLink to="/settings/plugin/install"><template #icon><i class="fas fa-download"></i></template>{{ i18n.ts._plugin.install }}</FormLink>
|
2022-01-04 09:52:44 +01:00
|
|
|
|
|
|
|
<FormSection>
|
2022-05-04 03:11:35 +02:00
|
|
|
<template #label>{{ i18n.ts.manage }}</template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<div v-for="plugin in plugins" :key="plugin.id" class="_formBlock _panel" style="padding: 20px;">
|
|
|
|
<span style="display: flex;"><b>{{ plugin.name }}</b><span style="margin-left: auto;">v{{ plugin.version }}</span></span>
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormSwitch class="_formBlock" :model-value="plugin.active" @update:modelValue="changeActive(plugin, $event)">{{ i18n.ts.makeActive }}</FormSwitch>
|
2022-01-04 09:52:44 +01:00
|
|
|
|
|
|
|
<MkKeyValue class="_formBlock">
|
2022-05-04 03:11:35 +02:00
|
|
|
<template #key>{{ i18n.ts.author }}</template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<template #value>{{ plugin.author }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue class="_formBlock">
|
2022-05-04 03:11:35 +02:00
|
|
|
<template #key>{{ i18n.ts.description }}</template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<template #value>{{ plugin.description }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
<MkKeyValue class="_formBlock">
|
2022-05-04 03:11:35 +02:00
|
|
|
<template #key>{{ i18n.ts.permission }}</template>
|
2022-01-04 09:52:44 +01:00
|
|
|
<template #value>{{ plugin.permission }}</template>
|
|
|
|
</MkKeyValue>
|
|
|
|
|
|
|
|
<div style="display: flex; gap: var(--margin); flex-wrap: wrap;">
|
2022-05-04 03:11:35 +02:00
|
|
|
<MkButton v-if="plugin.config" inline @click="config(plugin)"><i class="fas fa-cog"></i> {{ i18n.ts.settings }}</MkButton>
|
|
|
|
<MkButton inline danger @click="uninstall(plugin)"><i class="fas fa-trash-alt"></i> {{ i18n.ts.uninstall }}</MkButton>
|
2022-01-04 09:52:44 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</FormSection>
|
|
|
|
</div>
|
2021-02-06 13:05:00 +01:00
|
|
|
</template>
|
|
|
|
|
2022-05-04 03:11:35 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { nextTick, ref } from 'vue';
|
2022-01-04 09:52:44 +01:00
|
|
|
import FormLink from '@/components/form/link.vue';
|
|
|
|
import FormSwitch from '@/components/form/switch.vue';
|
|
|
|
import FormSection from '@/components/form/section.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2022-08-30 17:24:33 +02:00
|
|
|
import MkKeyValue from '@/components/MkKeyValue.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { ColdDeviceStorage } from '@/store';
|
2022-05-04 03:11:35 +02:00
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-05-04 03:11:35 +02:00
|
|
|
|
|
|
|
const plugins = ref(ColdDeviceStorage.get('plugins'));
|
|
|
|
|
|
|
|
function uninstall(plugin) {
|
|
|
|
ColdDeviceStorage.set('plugins', plugins.value.filter(x => x.id !== plugin.id));
|
|
|
|
os.success();
|
|
|
|
nextTick(() => {
|
|
|
|
unisonReload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: この処理をstore側にactionとして移動し、設定画面を開くAiScriptAPIを実装できるようにする
|
|
|
|
async function config(plugin) {
|
|
|
|
const config = plugin.config;
|
|
|
|
for (const key in plugin.configData) {
|
|
|
|
config[key].default = plugin.configData[key];
|
|
|
|
}
|
|
|
|
|
|
|
|
const { canceled, result } = await os.form(plugin.name, config);
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
const coldPlugins = ColdDeviceStorage.get('plugins');
|
|
|
|
coldPlugins.find(p => p.id === plugin.id)!.configData = result;
|
|
|
|
ColdDeviceStorage.set('plugins', coldPlugins);
|
|
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function changeActive(plugin, active) {
|
|
|
|
const coldPlugins = ColdDeviceStorage.get('plugins');
|
|
|
|
coldPlugins.find(p => p.id === plugin.id)!.active = active;
|
|
|
|
ColdDeviceStorage.set('plugins', coldPlugins);
|
|
|
|
|
|
|
|
nextTick(() => {
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.plugins,
|
|
|
|
icon: 'fas fa-plug',
|
2021-02-06 13:05:00 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|