mirror of https://github.com/halo-dev/halo-admin
391 lines
14 KiB
Vue
391 lines
14 KiB
Vue
<script lang="ts" setup>
|
|
import {
|
|
IconAddCircle,
|
|
IconArrowDown,
|
|
IconPlug,
|
|
IconSettings,
|
|
VButton,
|
|
VCard,
|
|
VPageHeader,
|
|
VSpace,
|
|
VSwitch,
|
|
VTag,
|
|
} from "@halo-dev/components";
|
|
import { onMounted, ref } from "vue";
|
|
import { useRouter } from "vue-router";
|
|
import type { Plugin } from "@/types/extension";
|
|
import { axiosInstance } from "@halo-dev/admin-shared";
|
|
|
|
const checkAll = ref(false);
|
|
const plugins = ref<Plugin[]>([]);
|
|
|
|
const router = useRouter();
|
|
|
|
const handleRouteToDetail = (plugin: Plugin) => {
|
|
router.push({
|
|
name: "PluginDetail",
|
|
params: { pluginName: plugin.metadata.name },
|
|
});
|
|
};
|
|
|
|
function isStarted(plugin: Plugin) {
|
|
return plugin.status?.phase === "STARTED" && plugin.spec.enabled;
|
|
}
|
|
|
|
const handleFetchPlugins = async () => {
|
|
try {
|
|
const response = await axiosInstance.get(
|
|
`/apis/plugin.halo.run/v1alpha1/plugins`
|
|
);
|
|
plugins.value = response.data;
|
|
} catch (e) {
|
|
console.error("Fail to fetch plugins", e);
|
|
}
|
|
};
|
|
|
|
const handleChangePluginStatus = async (plugin: Plugin) => {
|
|
try {
|
|
plugin.spec.enabled = !plugin.spec.enabled;
|
|
await axiosInstance.put(
|
|
`/apis/plugin.halo.run/v1alpha1/plugins/${plugin.metadata.name}`,
|
|
plugin
|
|
);
|
|
} catch (e) {
|
|
console.error(e);
|
|
} finally {
|
|
window.location.reload();
|
|
}
|
|
};
|
|
|
|
onMounted(handleFetchPlugins);
|
|
</script>
|
|
<template>
|
|
<VPageHeader title="插件">
|
|
<template #icon>
|
|
<IconPlug class="mr-2 self-center" />
|
|
</template>
|
|
<template #actions>
|
|
<VButton type="secondary">
|
|
<template #icon>
|
|
<IconAddCircle class="h-full w-full" />
|
|
</template>
|
|
安装
|
|
</VButton>
|
|
</template>
|
|
</VPageHeader>
|
|
|
|
<div class="m-0 md:m-4">
|
|
<VCard :body-class="['!p-0']">
|
|
<template #header>
|
|
<div class="block w-full bg-gray-50 px-4 py-3">
|
|
<div
|
|
class="relative flex flex-col items-start sm:flex-row sm:items-center"
|
|
>
|
|
<div class="mr-4 hidden items-center sm:flex">
|
|
<input
|
|
v-model="checkAll"
|
|
class="h-4 w-4 rounded border-gray-300 text-indigo-600"
|
|
type="checkbox"
|
|
/>
|
|
</div>
|
|
<div class="flex w-full flex-1 sm:w-auto">
|
|
<FormKit
|
|
v-if="!checkAll"
|
|
placeholder="输入关键词搜索"
|
|
type="text"
|
|
></FormKit>
|
|
<VSpace v-else>
|
|
<VButton type="default">禁用</VButton>
|
|
<VButton type="danger">卸载</VButton>
|
|
</VSpace>
|
|
</div>
|
|
<div class="mt-4 flex sm:mt-0">
|
|
<VSpace spacing="lg">
|
|
<FloatingDropdown>
|
|
<div
|
|
class="flex cursor-pointer select-none items-center text-sm text-gray-700 hover:text-black"
|
|
>
|
|
<span class="mr-0.5">启用状态</span>
|
|
<span>
|
|
<IconArrowDown />
|
|
</span>
|
|
</div>
|
|
<template #popper>
|
|
<div class="w-52 p-4">
|
|
<ul class="space-y-1">
|
|
<li
|
|
class="flex cursor-pointer items-center rounded px-3 py-2 text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900"
|
|
>
|
|
<span class="truncate">已启用</span>
|
|
</li>
|
|
<li
|
|
class="flex cursor-pointer items-center rounded px-3 py-2 text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900"
|
|
>
|
|
<span class="truncate">未启用</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
</FloatingDropdown>
|
|
<div
|
|
class="flex cursor-pointer select-none items-center text-sm text-gray-700 hover:text-black"
|
|
>
|
|
<span class="mr-0.5">类别</span>
|
|
<span>
|
|
<IconArrowDown />
|
|
</span>
|
|
</div>
|
|
<FloatingDropdown>
|
|
<div
|
|
class="flex cursor-pointer select-none items-center text-sm text-gray-700 hover:text-black"
|
|
>
|
|
<span class="mr-0.5">提供方</span>
|
|
<span>
|
|
<IconArrowDown />
|
|
</span>
|
|
</div>
|
|
<template #popper>
|
|
<div class="h-96 w-80 p-4">
|
|
<div class="bg-white">
|
|
<!--TODO: Auto Focus-->
|
|
<FormKit
|
|
placeholder="输入关键词搜索"
|
|
type="text"
|
|
></FormKit>
|
|
</div>
|
|
<div class="mt-2">
|
|
<ul class="divide-y divide-gray-200" role="list">
|
|
<li class="cursor-pointer py-4 hover:bg-gray-50">
|
|
<div class="flex items-center space-x-4">
|
|
<div class="flex items-center">
|
|
<input
|
|
class="h-4 w-4 rounded border-gray-300 text-indigo-600"
|
|
type="checkbox"
|
|
/>
|
|
</div>
|
|
<div class="flex-shrink-0">
|
|
<img
|
|
alt="halo-dev"
|
|
class="h-10 w-10 rounded"
|
|
src="https://halo.run/logo"
|
|
/>
|
|
</div>
|
|
<div class="min-w-0 flex-1">
|
|
<p
|
|
class="truncate text-sm font-medium text-gray-900"
|
|
>
|
|
Halo
|
|
</p>
|
|
<p class="truncate text-sm text-gray-500">
|
|
https://halo.run
|
|
</p>
|
|
</div>
|
|
<div>
|
|
<VTag>2 个</VTag>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</FloatingDropdown>
|
|
<FloatingDropdown>
|
|
<div
|
|
class="flex cursor-pointer select-none items-center text-sm text-gray-700 hover:text-black"
|
|
>
|
|
<span class="mr-0.5">排序</span>
|
|
<span>
|
|
<IconArrowDown />
|
|
</span>
|
|
</div>
|
|
<template #popper>
|
|
<div class="w-72 p-4">
|
|
<ul class="space-y-1">
|
|
<li
|
|
class="flex cursor-pointer items-center rounded px-3 py-2 text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900"
|
|
>
|
|
<span class="truncate">较近安装</span>
|
|
</li>
|
|
<li
|
|
class="flex cursor-pointer items-center rounded px-3 py-2 text-sm text-gray-600 hover:bg-gray-100 hover:text-gray-900"
|
|
>
|
|
<span class="truncate">较晚安装</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
</FloatingDropdown>
|
|
</VSpace>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<ul class="box-border h-full w-full divide-y divide-gray-100" role="list">
|
|
<li v-for="(plugin, index) in plugins" :key="index">
|
|
<div
|
|
:class="{
|
|
'bg-gray-100': checkAll,
|
|
}"
|
|
class="relative block cursor-pointer px-4 py-3 transition-all hover:bg-gray-50"
|
|
>
|
|
<div
|
|
v-show="checkAll"
|
|
class="absolute inset-y-0 left-0 w-0.5 bg-themeable-primary"
|
|
></div>
|
|
<div class="relative flex flex-row items-center">
|
|
<div class="mr-4 hidden items-center sm:flex">
|
|
<input
|
|
v-model="checkAll"
|
|
class="h-4 w-4 rounded border-gray-300 text-indigo-600"
|
|
type="checkbox"
|
|
/>
|
|
</div>
|
|
<div v-if="plugin.spec.logo" class="mr-4">
|
|
<div
|
|
class="h-12 w-12 rounded border bg-white p-1 hover:shadow-sm"
|
|
>
|
|
<img
|
|
:alt="plugin.metadata.name"
|
|
:src="plugin.spec.logo"
|
|
class="h-full w-full"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="flex-1">
|
|
<div class="flex flex-row items-center">
|
|
<span
|
|
class="mr-2 truncate text-sm font-medium text-gray-900"
|
|
@click.stop="handleRouteToDetail(plugin)"
|
|
>
|
|
{{ plugin.spec.displayName }}
|
|
</span>
|
|
<VSpace>
|
|
<VTag>
|
|
{{ isStarted(plugin) ? "已启用" : "未启用" }}
|
|
</VTag>
|
|
</VSpace>
|
|
</div>
|
|
<div class="mt-2 flex">
|
|
<VSpace align="start" direction="column" spacing="xs">
|
|
<span class="text-xs text-gray-500">
|
|
{{ plugin.spec.description }}
|
|
</span>
|
|
<span class="text-xs text-gray-500 sm:hidden">
|
|
@{{ plugin.spec.author }} {{ plugin.spec.version }}
|
|
</span>
|
|
</VSpace>
|
|
</div>
|
|
</div>
|
|
<div class="flex">
|
|
<div
|
|
class="inline-flex flex-col flex-col-reverse items-end gap-4 sm:flex-row sm:items-center sm:gap-6"
|
|
>
|
|
<a
|
|
:href="plugin.spec.homepage"
|
|
class="hidden text-sm text-gray-500 hover:text-gray-900 sm:block"
|
|
target="_blank"
|
|
>
|
|
@{{ plugin.spec.author }}
|
|
</a>
|
|
<span class="hidden text-sm text-gray-500 sm:block">
|
|
{{ plugin.spec.version }}
|
|
</span>
|
|
<time class="text-sm text-gray-500" datetime="2020-01-07">
|
|
{{ plugin.metadata.creationTimestamp }}
|
|
</time>
|
|
<div class="flex items-center">
|
|
<VSwitch
|
|
:model-value="isStarted(plugin)"
|
|
@click="handleChangePluginStatus(plugin)"
|
|
/>
|
|
</div>
|
|
<span class="cursor-pointer">
|
|
<IconSettings @click.stop="handleRouteToDetail(plugin)" />
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<template #footer>
|
|
<div class="flex items-center justify-end bg-white">
|
|
<div class="flex flex-1 items-center justify-end">
|
|
<div>
|
|
<nav
|
|
aria-label="Pagination"
|
|
class="relative z-0 inline-flex -space-x-px rounded-md shadow-sm"
|
|
>
|
|
<a
|
|
class="relative inline-flex items-center rounded-l-md border border-gray-300 bg-white px-2 py-2 text-sm font-medium text-gray-500 hover:bg-gray-50"
|
|
href="#"
|
|
>
|
|
<span class="sr-only">Previous</span>
|
|
<svg
|
|
aria-hidden="true"
|
|
class="h-5 w-5"
|
|
fill="currentColor"
|
|
viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clip-rule="evenodd"
|
|
d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z"
|
|
fill-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
</a>
|
|
<a
|
|
aria-current="page"
|
|
class="relative z-10 inline-flex items-center border border-indigo-500 bg-indigo-50 px-4 py-2 text-sm font-medium text-indigo-600"
|
|
href="#"
|
|
>
|
|
1
|
|
</a>
|
|
<a
|
|
class="relative inline-flex items-center border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-500 hover:bg-gray-50"
|
|
href="#"
|
|
>
|
|
2
|
|
</a>
|
|
<span
|
|
class="relative inline-flex items-center border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-700"
|
|
>
|
|
...
|
|
</span>
|
|
<a
|
|
class="relative hidden items-center border border-gray-300 bg-white px-4 py-2 text-sm font-medium text-gray-500 hover:bg-gray-50 md:inline-flex"
|
|
href="#"
|
|
>
|
|
4
|
|
</a>
|
|
<a
|
|
class="relative inline-flex items-center rounded-r-md border border-gray-300 bg-white px-2 py-2 text-sm font-medium text-gray-500 hover:bg-gray-50"
|
|
href="#"
|
|
>
|
|
<span class="sr-only">Next</span>
|
|
<svg
|
|
aria-hidden="true"
|
|
class="h-5 w-5"
|
|
fill="currentColor"
|
|
viewBox="0 0 20 20"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
clip-rule="evenodd"
|
|
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
|
|
fill-rule="evenodd"
|
|
/>
|
|
</svg>
|
|
</a>
|
|
</nav>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</VCard>
|
|
</div>
|
|
</template>
|