mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-01-22 01:39:18 +08:00
201 lines
6.6 KiB
Vue
201 lines
6.6 KiB
Vue
<template>
|
|
<div>
|
|
<el-card width="30%" v-if="dockerStatus != 'Running'" class="mask-prompt">
|
|
<span style="font-size: 14px">{{ $t('container.serviceUnavailable') }}</span>
|
|
<el-button type="primary" link style="font-size: 14px; margin-bottom: 5px" @click="goSetting">
|
|
【 {{ $t('container.setting') }} 】
|
|
</el-button>
|
|
<span style="font-size: 14px">{{ $t('container.startIn') }}</span>
|
|
</el-card>
|
|
|
|
<LayoutContent
|
|
v-loading="loading"
|
|
:title="$t('container.composeTemplate')"
|
|
:class="{ mask: dockerStatus != 'Running' }"
|
|
>
|
|
<template #toolbar>
|
|
<el-button type="primary" @click="onOpenDialog('create')">
|
|
{{ $t('container.createComposeTemplate') }}
|
|
</el-button>
|
|
<el-button plain :disabled="selects.length === 0" @click="onBatchDelete(null)">
|
|
{{ $t('commons.button.delete') }}
|
|
</el-button>
|
|
</template>
|
|
<template #main>
|
|
<ComplexTable
|
|
:pagination-config="paginationConfig"
|
|
v-model:selects="selects"
|
|
:data="data"
|
|
@search="search"
|
|
>
|
|
<el-table-column type="selection" fix />
|
|
<el-table-column
|
|
:label="$t('commons.table.name')"
|
|
show-overflow-tooltip
|
|
min-width="100"
|
|
prop="name"
|
|
fix
|
|
>
|
|
<template #default="{ row }">
|
|
<el-link @click="onOpenDetail(row)" type="primary">{{ row.name }}</el-link>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column :label="$t('container.description')" prop="description" min-width="200" fix />
|
|
<el-table-column :label="$t('commons.table.createdAt')" min-width="80" fix>
|
|
<template #default="{ row }">
|
|
{{ dateFormatSimple(row.createdAt) }}
|
|
</template>
|
|
</el-table-column>
|
|
<fu-table-operations :buttons="buttons" :label="$t('commons.table.operate')" />
|
|
</ComplexTable>
|
|
</template>
|
|
</LayoutContent>
|
|
|
|
<el-dialog v-model="detailVisiable" :destroy-on-close="true" :close-on-click-modal="false" width="70%">
|
|
<template #header>
|
|
<div class="card-header">
|
|
<span>{{ $t('commons.button.view') }}</span>
|
|
</div>
|
|
</template>
|
|
<codemirror
|
|
:autofocus="true"
|
|
placeholder="None data"
|
|
:indent-with-tab="true"
|
|
:tabSize="4"
|
|
style="max-height: 500px"
|
|
:lineWrapping="true"
|
|
:matchBrackets="true"
|
|
theme="cobalt"
|
|
:styleActiveLine="true"
|
|
:extensions="extensions"
|
|
v-model="detailInfo"
|
|
:readOnly="true"
|
|
/>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click="detailVisiable = false">{{ $t('commons.button.cancel') }}</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
|
|
<OperatorDialog @search="search" ref="dialogRef" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import LayoutContent from '@/layout/layout-content.vue';
|
|
import ComplexTable from '@/components/complex-table/index.vue';
|
|
import { Codemirror } from 'vue-codemirror';
|
|
import { javascript } from '@codemirror/lang-javascript';
|
|
import { oneDark } from '@codemirror/theme-one-dark';
|
|
import { reactive, onMounted, ref } from 'vue';
|
|
import { dateFormatSimple } from '@/utils/util';
|
|
import { Container } from '@/api/interface/container';
|
|
import OperatorDialog from '@/views/container/template/operator/index.vue';
|
|
import { deleteComposeTemplate, loadDockerStatus, searchComposeTemplate } from '@/api/modules/container';
|
|
import { useDeleteData } from '@/hooks/use-delete-data';
|
|
import i18n from '@/lang';
|
|
import router from '@/routers';
|
|
|
|
const loading = ref();
|
|
const data = ref();
|
|
const selects = ref<any>([]);
|
|
const detailVisiable = ref(false);
|
|
const detailInfo = ref();
|
|
const extensions = [javascript(), oneDark];
|
|
|
|
const paginationConfig = reactive({
|
|
currentPage: 1,
|
|
pageSize: 10,
|
|
total: 0,
|
|
});
|
|
|
|
const dockerStatus = ref();
|
|
const loadStatus = async () => {
|
|
const res = await loadDockerStatus();
|
|
dockerStatus.value = res.data;
|
|
if (dockerStatus.value === 'Running') {
|
|
search();
|
|
}
|
|
};
|
|
const goSetting = async () => {
|
|
router.push({ name: 'ContainerSetting' });
|
|
};
|
|
|
|
const search = async () => {
|
|
let params = {
|
|
page: paginationConfig.currentPage,
|
|
pageSize: paginationConfig.pageSize,
|
|
};
|
|
loading.value = true;
|
|
await searchComposeTemplate(params)
|
|
.then((res) => {
|
|
loading.value = false;
|
|
data.value = res.data.items || [];
|
|
paginationConfig.total = res.data.total;
|
|
})
|
|
.catch(() => {
|
|
loading.value = false;
|
|
});
|
|
};
|
|
|
|
const onOpenDetail = async (row: Container.TemplateInfo) => {
|
|
detailInfo.value = row.content;
|
|
detailVisiable.value = true;
|
|
};
|
|
|
|
const dialogRef = ref();
|
|
const onOpenDialog = async (
|
|
title: string,
|
|
rowData: Partial<Container.TemplateInfo> = {
|
|
name: '',
|
|
description: '',
|
|
path: '',
|
|
},
|
|
) => {
|
|
let params = {
|
|
title,
|
|
rowData: { ...rowData },
|
|
};
|
|
dialogRef.value!.acceptParams(params);
|
|
};
|
|
|
|
const onBatchDelete = async (row: Container.RepoInfo | null) => {
|
|
let ids: Array<number> = [];
|
|
if (row) {
|
|
ids.push(row.id);
|
|
} else {
|
|
selects.value.forEach((item: Container.RepoInfo) => {
|
|
ids.push(item.id);
|
|
});
|
|
}
|
|
await useDeleteData(deleteComposeTemplate, { ids: ids }, 'commons.msg.delete');
|
|
search();
|
|
};
|
|
|
|
const buttons = [
|
|
{
|
|
label: i18n.global.t('commons.button.edit'),
|
|
disabled: (row: Container.RepoInfo) => {
|
|
return row.downloadUrl === 'docker.io';
|
|
},
|
|
click: (row: Container.RepoInfo) => {
|
|
onOpenDialog('edit', row);
|
|
},
|
|
},
|
|
{
|
|
label: i18n.global.t('commons.button.delete'),
|
|
disabled: (row: Container.RepoInfo) => {
|
|
return row.downloadUrl === 'docker.io';
|
|
},
|
|
click: (row: Container.RepoInfo) => {
|
|
onBatchDelete(row);
|
|
},
|
|
},
|
|
];
|
|
|
|
onMounted(() => {
|
|
loadStatus();
|
|
});
|
|
</script>
|