gtsoft-snail-job-admin/src/views/group/index.vue

203 lines
5.0 KiB
Vue
Raw Normal View History

2024-04-17 23:48:25 +08:00
<script setup lang="tsx">
2024-04-23 23:33:00 +08:00
import { NButton, NSwitch, NTag } from 'naive-ui';
import { ref } from 'vue';
import { fetchGetGroupConfigList, fetchUpdateGroupStatus } from '@/service/api';
2024-04-17 23:48:25 +08:00
import { $t } from '@/locales';
import { useAppStore } from '@/store/modules/app';
import { useTable, useTableOperate } from '@/hooks/common/table';
2024-04-23 23:33:00 +08:00
import { groupConfigIdModeRecord, yesOrNoRecord } from '@/constants/business';
import GroupOperateDrawer from './modules/group-operate-drawer.vue';
import GroupSearch from './modules/group-search.vue';
2024-04-17 23:48:25 +08:00
const appStore = useAppStore();
2024-04-23 23:33:00 +08:00
/** 组状态 Switch 的 loading 状态 */
const statusSwithLoading = ref(false);
2024-04-17 23:48:25 +08:00
const { columns, columnChecks, data, getData, loading, mobilePagination, searchParams, resetSearchParams } = useTable({
apiFn: fetchGetGroupConfigList,
apiParams: {
page: 1,
size: 10,
groupName: null
2024-04-17 23:48:25 +08:00
},
columns: () => [
{
key: 'index',
title: $t('common.index'),
align: 'center',
width: 64
},
{
key: 'groupName',
title: $t('page.groupConfig.groupName'),
align: 'left',
minWidth: 260
},
{
key: 'namespaceId',
title: $t('page.groupConfig.namespaceId'),
align: 'left',
minWidth: 260
},
{
key: 'groupStatus',
title: $t('page.groupConfig.groupStatus'),
align: 'center',
width: 80,
render: row => {
2024-04-23 23:33:00 +08:00
return (
<NSwitch
v-model:value={row.groupStatus}
v-model:loading={statusSwithLoading.value}
checkedValue={1}
uncheckedValue={0}
onUpdateValue={() => handleUpdateValue(row)}
></NSwitch>
);
2024-04-17 23:48:25 +08:00
}
},
{
key: 'idGeneratorMode',
title: $t('page.groupConfig.idGeneratorMode'),
align: 'center',
width: 120,
render: row => {
if (row.idGeneratorMode === null) {
return null;
}
2024-04-20 16:34:30 +08:00
const label = $t(groupConfigIdModeRecord[row.idGeneratorMode!]);
2024-04-17 23:48:25 +08:00
return <NTag type="primary">{label}</NTag>;
}
},
{
key: 'version',
title: $t('page.groupConfig.version'),
align: 'left',
minWidth: 60
},
{
key: 'groupPartition',
title: $t('page.groupConfig.groupPartition'),
align: 'left',
minWidth: 60
},
{
key: 'initScene',
title: $t('page.groupConfig.initScene'),
align: 'left',
minWidth: 80,
render: row => {
if (row.groupStatus === null) {
return null;
}
const tagMap: Record<Api.Common.YesOrNo, NaiveUI.ThemeColor> = {
'1': 'success',
'0': 'warning'
};
const label = $t(yesOrNoRecord[row.initScene!]);
return <NTag type={tagMap[row.initScene!]}>{label}</NTag>;
}
},
{
key: 'updateDt',
title: $t('page.groupConfig.updateDt'),
align: 'left',
width: 130
},
{
key: 'description',
title: $t('page.groupConfig.description'),
align: 'left',
width: 130
},
{
key: 'operate',
title: $t('common.operate'),
align: 'center',
width: 130,
render: row => (
<div class="flex-center gap-8px">
<NButton type="primary" ghost size="small" onClick={() => edit(row.id!)}>
{$t('common.edit')}
</NButton>
</div>
)
}
]
});
const {
drawerVisible,
operateType,
editingData,
handleAdd,
handleEdit,
checkedRowKeys
// closeDrawer
} = useTableOperate(data, getData);
function edit(id: string) {
handleEdit(id);
}
2024-04-23 23:33:00 +08:00
async function handleUpdateValue(group: Api.GroupConfig.GroupConfig) {
statusSwithLoading.value = true;
try {
await fetchUpdateGroupStatus({ groupName: group.groupName, groupStatus: group.groupStatus });
} finally {
await getData();
statusSwithLoading.value = false;
}
}
2024-04-17 23:48:25 +08:00
</script>
<template>
<div class="min-h-500px flex-col-stretch gap-16px overflow-hidden lt-sm:overflow-auto">
<GroupSearch v-model:model="searchParams" @reset="resetSearchParams" @search="getData" />
2024-04-18 09:47:26 +08:00
<NCard
:title="$t('page.groupConfig.title')"
:bordered="false"
size="small"
header-class="view-card-header"
class="sm:flex-1-hidden card-wrapper"
>
2024-04-17 23:48:25 +08:00
<template #header-extra>
<TableHeaderOperation
v-model:columns="columnChecks"
:disabled-delete="checkedRowKeys.length === 0"
:loading="loading"
:show-delete="false"
@add="handleAdd"
@refresh="getData"
/>
</template>
<NDataTable
v-model:checked-row-keys="checkedRowKeys"
:columns="columns"
:data="data"
:flex-height="!appStore.isMobile"
:scroll-x="962"
:loading="loading"
remote
:row-key="row => row.id"
:pagination="mobilePagination"
class="sm:h-full"
/>
<GroupOperateDrawer
2024-04-17 23:48:25 +08:00
v-model:visible="drawerVisible"
:operate-type="operateType"
:row-data="editingData"
@submitted="getData"
/>
</NCard>
</div>
</template>
2024-04-18 09:47:26 +08:00
<style scoped></style>