1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-22 09:49:16 +08:00

168 lines
5.8 KiB
Vue
Raw Normal View History

2022-10-09 16:17:15 +08:00
<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.repo')" :class="{ mask: dockerStatus != 'Running' }">
<template #toolbar>
<el-button type="primary" @click="onOpenDialog('create')">
{{ $t('container.createRepo') }}
</el-button>
<el-button type="primary" plain :disabled="selects.length === 0" @click="onBatchDelete(null)">
{{ $t('commons.button.delete') }}
</el-button>
</template>
<template #main>
2023-01-30 09:39:37 +08:00
<ComplexTable
:pagination-config="paginationConfig"
v-model:selects="selects"
:data="data"
@search="search"
>
<el-table-column type="selection" :selectable="selectable" fix />
<el-table-column :label="$t('commons.table.name')" prop="name" min-width="60" />
<el-table-column
:label="$t('container.downloadUrl')"
show-overflow-tooltip
prop="downloadUrl"
min-width="100"
fix
/>
<el-table-column :label="$t('container.protocol')" prop="protocol" min-width="60" fix />
<el-table-column :label="$t('commons.table.status')" prop="status" min-width="60" fix>
<template #default="{ row }">
<el-tag v-if="row.status === 'Success'" type="success">
{{ $t('commons.status.success') }}
</el-tag>
<el-tooltip v-else effect="dark" :content="row.message" placement="bottom">
<el-tag type="danger">{{ $t('commons.status.failed') }}</el-tag>
</el-tooltip>
</template>
</el-table-column>
<el-table-column :label="$t('commons.table.createdAt')" min-width="80" fix>
<template #default="{ row }">
{{ dateFormatSimple(row.createdAt) }}
2023-01-30 09:39:37 +08:00
</template>
</el-table-column>
<fu-table-operations :buttons="buttons" :label="$t('commons.table.operate')" />
</ComplexTable>
</template>
</LayoutContent>
2022-10-09 16:17:15 +08:00
<OperatorDialog @search="search" ref="dialogRef" />
<DeleteDialog @search="search" ref="dialogDeleteRef" />
2022-10-09 16:17:15 +08:00
</div>
</template>
<script lang="ts" setup>
2023-01-30 09:39:37 +08:00
import LayoutContent from '@/layout/layout-content.vue';
2022-10-09 16:17:15 +08:00
import ComplexTable from '@/components/complex-table/index.vue';
import OperatorDialog from '@/views/container/repo/operator/index.vue';
import DeleteDialog from '@/views/container/repo/delete/index.vue';
2022-10-09 16:17:15 +08:00
import { reactive, onMounted, ref } from 'vue';
2023-01-16 15:55:53 +08:00
import { dateFormatSimple } from '@/utils/util';
2022-10-09 16:17:15 +08:00
import { Container } from '@/api/interface/container';
import { loadDockerStatus, searchImageRepo } from '@/api/modules/container';
2022-10-09 16:17:15 +08:00
import i18n from '@/lang';
import router from '@/routers';
2022-10-09 16:17:15 +08:00
const loading = ref();
2022-10-09 16:17:15 +08:00
const data = ref();
const selects = ref<any>([]);
const paginationConfig = reactive({
2022-12-06 18:24:26 +08:00
currentPage: 1,
2022-10-09 16:17:15 +08:00
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' });
};
2022-10-09 16:17:15 +08:00
const search = async () => {
2022-10-17 09:10:06 +08:00
let params = {
2022-12-06 18:24:26 +08:00
page: paginationConfig.currentPage,
2022-10-17 09:10:06 +08:00
pageSize: paginationConfig.pageSize,
};
loading.value = true;
await searchImageRepo(params)
.then((res) => {
loading.value = false;
data.value = res.data.items || [];
paginationConfig.total = res.data.total;
})
.catch(() => {
loading.value = false;
});
2022-10-09 16:17:15 +08:00
};
2022-12-07 14:30:11 +08:00
function selectable(row) {
return !(row.name === 'Docker Hub');
}
2022-10-17 09:10:06 +08:00
const dialogRef = ref();
2022-10-09 16:17:15 +08:00
const onOpenDialog = async (
title: string,
rowData: Partial<Container.RepoInfo> = {
auth: true,
protocol: 'http',
2022-10-09 16:17:15 +08:00
},
) => {
let params = {
title,
rowData: { ...rowData },
};
dialogRef.value!.acceptParams(params);
};
const dialogDeleteRef = ref();
2022-10-09 16:17:15 +08:00
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);
});
}
dialogDeleteRef.value!.acceptParams({ ids: ids });
2022-10-09 16:17:15 +08:00
};
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();
2022-10-09 16:17:15 +08:00
});
</script>