Feat: add NewImage page

This commit is contained in:
Lazy 2023-10-19 13:11:30 +08:00
parent 62a468cfa1
commit b91d455e7a
5 changed files with 176 additions and 3 deletions

View File

@ -30,6 +30,7 @@ import ClockCard from "@/widgets/others/ClockCard.vue";
import UserStatusBlock from "@/widgets/UserStatusBlock.vue";
import UserInstanceList from "@/widgets/UserInstanceList.vue";
import ImageManager from "@/widgets/imageManager/index.vue";
import NewImage from "@/widgets/imageManager/NewImage.vue";
import { NEW_CARD_TYPE } from "../types/index";
@ -62,7 +63,8 @@ export const LAYOUT_CARD_TYPES: { [key: string]: any } = {
ClockCard,
UserStatusBlock,
UserInstanceList,
ImageManager
ImageManager,
NewImage
};
export interface NewCardItem extends LayoutCard {

View File

@ -316,6 +316,28 @@ export const ORIGIN_LAYOUT_CONFIG: PageLayoutConfig[] = [
}
]
},
{
page: "/node/image/new",
items: [
{
id: getRandomId(),
meta: {},
type: "NewImage",
title: t("创建镜像"),
width: 12,
height: LayoutCardHeight.AUTO,
disableDelete: true
},
{
id: getRandomId(),
meta: {},
type: "EmptyCard",
title: "",
width: 12,
height: LayoutCardHeight.MINI
}
]
},
{
page: "/quickstart",
items: [

View File

@ -112,7 +112,18 @@ let originRouterConfig: RouterConfig[] = [
meta: {
permission: ROLE.ADMIN,
mainMenu: false
}
},
children: [
{
path: "/node/image/new",
name: t("创建镜像"),
component: LayoutContainer,
meta: {
permission: ROLE.ADMIN,
mainMenu: false
}
}
]
}
]
},

View File

@ -0,0 +1,127 @@
<script setup lang="ts">
import { ref, computed, onMounted, h } from "vue";
import { t } from "@/lang/i18n";
import { Modal, message, notification } from "ant-design-vue";
import CardPanel from "@/components/CardPanel.vue";
import BetweenMenus from "@/components/BetweenMenus.vue";
import { useScreen } from "@/hooks/useScreen";
import { useLayoutCardTools } from "@/hooks/useCardTools";
import { useAppRouters } from "@/hooks/useAppRouters";
import type { LayoutCard } from "@/types";
const props = defineProps<{
card: LayoutCard;
}>();
const { toPage } = useAppRouters();
const { getMetaOrRouteValue } = useLayoutCardTools(props.card);
const daemonId: string | undefined = getMetaOrRouteValue("daemonId");
const screen = useScreen();
const imageList = [
{
title: t("创建 OpenJDK 8 环境镜像"),
description: t(
"适用于需要 Java 8 的服务端软件,属于经典的 Java 运行时版本,适用于 Minecraft 1.17 以下的所有版本"
),
type: 1
},
{
title: t("创建 OpenJDK 16 环境镜像"),
description: t("内置 Java 16 运行时环境,适用于 Minecraft 1.17 版本的服务端"),
type: 2
},
{
title: t("创建 OpenJDK 17 环境镜像"),
description: t("内置 Java 17 运行时环境,适用于 Minecraft 1.18 以上版本的服务端"),
type: 3
},
{
title: t("创建 Ubuntu 22.04 环境镜像"),
description: t("适用于 MC 基岩版服务端运行环境或者其他 Linux 程序"),
type: 4
},
{
title: t("使用 DockerFile 自定义创建"),
description: t("使用 DockerFile 自定义创建任何环境镜像,建议技术人员进行此操作"),
type: 5
}
];
const toImageListPage = () => {
toPage({
path: "/node/image",
query: {
daemonId
}
});
};
onMounted(async () => {});
</script>
<template>
<div style="height: 100%" class="container">
<a-row :gutter="[24, 24]" style="height: 100%">
<a-col :span="24">
<BetweenMenus>
<template #left>
<a-typography-title class="mb-0" :level="4">
{{ card.title }}
</a-typography-title>
</template>
<template #right>
<a-button v-show="!screen.isPhone.value" class="mr-8" @click="toImageListPage">
{{ t("回到镜像列表") }}
</a-button>
<a-button type="primary">
{{ t("查看构建进度") }}
</a-button>
</template>
</BetweenMenus>
</a-col>
<a-col :span="24">
<CardPanel style="height: 100%">
<template #body>
<a-typography>
<a-typography-paragraph>
<a-typography-title :level="5">{{ t("什么是环境镜像?") }}</a-typography-title>
<a-typography-text>
{{
t(
"由于 Minecraft 或其他程序需要特定的运行环境,比如 Java/Python/.NET 等等,不同版本在同一台机器上安装管理十分复杂,使用不同的环境镜像可以很方便的管理不同版本不同类型的服务环境。"
)
}}
</a-typography-text>
</a-typography-paragraph>
<a-typography-paragraph>
<a-typography-title :level="5">
{{ t("什么是 Docker为什么需要它") }}
</a-typography-title>
<a-typography-text>
{{
t(
"Docker 是一款轻量级虚拟化软件,能够利用环境镜像来创建容器(就像一个盒子)包裹你的实际应用程序,让你的应用程序在一个虚拟的沙箱环境中运行,不论应用程序做任何恶意操作,都不会影响到宿主机的任何文件。"
)
}}
</a-typography-text>
</a-typography-paragraph>
</a-typography>
</template>
</CardPanel>
</a-col>
<a-col v-for="i in imageList" :key="i" :span="24" :lg="6" :md="8" :sm="12">
<CardPanel>
<template #title>{{ i.title }}</template>
<template #body>
<a-typography-text>
{{ i.description }}
</a-typography-text>
</template>
</CardPanel>
</a-col>
</a-row>
</div>
</template>

View File

@ -11,10 +11,12 @@ import { useLayoutCardTools } from "@/hooks/useCardTools";
import { imageList, containerList } from "@/services/apis/envImage";
import type { LayoutCard, ImageInfo, ContainerInfo } from "@/types";
import CopyButton from "@/components/CopyButton.vue";
import { useAppRouters } from "@/hooks/useAppRouters";
const props = defineProps<{
card: LayoutCard;
}>();
const { toPage } = useAppRouters();
const { getMetaOrRouteValue } = useLayoutCardTools(props.card);
const daemonId: string | undefined = getMetaOrRouteValue("daemonId");
const screen = useScreen();
@ -173,6 +175,15 @@ const getContainerList = async () => {
}
};
const toNewImagePage = () => {
toPage({
path: "/node/image/new",
query: {
daemonId
}
});
};
onMounted(async () => {
await getImageList();
await getContainerList();
@ -193,7 +204,7 @@ onMounted(async () => {
<a-button v-show="!screen.isPhone.value" class="mr-8" @click="getImageList">
{{ t("刷新") }}
</a-button>
<a-button type="primary">
<a-button type="primary" @click="toNewImagePage">
{{ t("新增镜像") }}
<PlusOutlined />
</a-button>