2022-10-09 16:17:15 +08:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-12-07 18:15:56 +08:00
|
|
|
<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>
|
2023-01-31 23:28:37 +08:00
|
|
|
|
|
|
|
<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>
|
2023-02-01 16:15:31 +08:00
|
|
|
<el-button type="primary" plain :disabled="selects.length === 0" @click="onBatchDelete(null)">
|
2023-01-31 23:28:37 +08:00
|
|
|
{{ $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 }">
|
2023-01-31 23:28:37 +08:00
|
|
|
{{ 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>
|
2023-01-31 23:28:37 +08:00
|
|
|
</template>
|
|
|
|
</LayoutContent>
|
2022-10-09 16:17:15 +08:00
|
|
|
<OperatorDialog @search="search" ref="dialogRef" />
|
2022-12-20 13:23:01 +08:00
|
|
|
<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';
|
2022-12-20 13:23:01 +08:00
|
|
|
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';
|
2022-12-20 13:23:01 +08:00
|
|
|
import { loadDockerStatus, searchImageRepo } from '@/api/modules/container';
|
2022-10-09 16:17:15 +08:00
|
|
|
import i18n from '@/lang';
|
2022-12-07 18:15:56 +08:00
|
|
|
import router from '@/routers';
|
2022-10-09 16:17:15 +08:00
|
|
|
|
2023-01-31 23:28:37 +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,
|
|
|
|
});
|
|
|
|
|
2022-12-07 18:15:56 +08:00
|
|
|
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,
|
|
|
|
};
|
2023-01-31 23:28:37 +08:00
|
|
|
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,
|
2022-10-10 16:47:05 +08:00
|
|
|
protocol: 'http',
|
2022-10-09 16:17:15 +08:00
|
|
|
},
|
|
|
|
) => {
|
|
|
|
let params = {
|
|
|
|
title,
|
|
|
|
rowData: { ...rowData },
|
|
|
|
};
|
|
|
|
dialogRef.value!.acceptParams(params);
|
|
|
|
};
|
|
|
|
|
2022-12-20 13:23:01 +08:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
}
|
2022-12-20 13:23:01 +08:00
|
|
|
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(() => {
|
2022-12-07 18:15:56 +08:00
|
|
|
loadStatus();
|
2022-10-09 16:17:15 +08:00
|
|
|
});
|
|
|
|
</script>
|