You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.3 KiB
106 lines
3.3 KiB
<template>
|
|
<div class="content">
|
|
<BasicTable @register="registerTable">
|
|
<template #toolbar>
|
|
<a-button
|
|
v-auth="['AbpWebhooks.Subscriptions.Create']"
|
|
type="primary"
|
|
@click="handleAddNew"
|
|
>{{ L('Subscriptions:AddNew') }}</a-button
|
|
>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column.key === 'isActive'">
|
|
<CheckOutlined v-if="record.isActive" class="enable" />
|
|
<CloseOutlined v-else class="disable" />
|
|
</template>
|
|
<template v-else-if="column.key === 'webhooks'">
|
|
<Tag v-for="hook in record.webhooks" color="blue">{{ hook }}</Tag>
|
|
</template>
|
|
<template v-else-if="column.key === 'action'">
|
|
<TableAction
|
|
:stop-button-propagation="true"
|
|
:actions="[
|
|
{
|
|
auth: 'AbpWebhooks.Subscriptions.Update',
|
|
label: L('Edit'),
|
|
icon: 'ant-design:edit-outlined',
|
|
onClick: handleEdit.bind(null, record),
|
|
},
|
|
{
|
|
auth: 'AbpWebhooks.Subscriptions.Delete',
|
|
color: 'error',
|
|
label: L('Delete'),
|
|
icon: 'ant-design:delete-outlined',
|
|
onClick: handleDelete.bind(null, record),
|
|
},
|
|
]"
|
|
/>
|
|
</template>
|
|
</template>
|
|
</BasicTable>
|
|
<SubscriptionModal @register="registerModal" @change="reload" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Tag } from 'ant-design-vue';
|
|
import { CheckOutlined, CloseOutlined } from '@ant-design/icons-vue';
|
|
import { useMessage } from '/@/hooks/web/useMessage';
|
|
import { useLocalization } from '/@/hooks/abp/useLocalization';
|
|
import { useModal } from '/@/components/Modal';
|
|
import { BasicTable, TableAction, useTable } from '/@/components/Table';
|
|
import { formatPagedRequest } from '/@/utils/http/abp/helper';
|
|
import { getDataColumns } from '../datas/TableData';
|
|
import { getSearchFormSchemas } from '../datas/ModalData';
|
|
import { deleteById, getList } from '/@/api/webhooks/subscriptions';
|
|
import SubscriptionModal from './SubscriptionModal.vue';
|
|
|
|
const { createConfirm } = useMessage();
|
|
const { L } = useLocalization(['WebhooksManagement', 'AbpUi']);
|
|
const [registerModal, { openModal }] = useModal();
|
|
const [registerTable, { reload }] = useTable({
|
|
rowKey: 'id',
|
|
title: L('Subscriptions'),
|
|
columns: getDataColumns(),
|
|
api: getList,
|
|
beforeFetch: formatPagedRequest,
|
|
pagination: true,
|
|
striped: false,
|
|
useSearchForm: true,
|
|
showTableSetting: true,
|
|
bordered: true,
|
|
showIndexColumn: false,
|
|
canResize: false,
|
|
immediate: true,
|
|
clickToRowSelect: false,
|
|
formConfig: getSearchFormSchemas(),
|
|
actionColumn: {
|
|
width: 220,
|
|
title: L('Actions'),
|
|
dataIndex: 'action',
|
|
},
|
|
});
|
|
|
|
function handleAddNew() {
|
|
openModal(true, { id: null });
|
|
}
|
|
|
|
function handleEdit(record) {
|
|
openModal(true, record);
|
|
}
|
|
|
|
function handleDelete(record) {
|
|
createConfirm({
|
|
iconType: 'warning',
|
|
title: L('AreYouSure'),
|
|
content: L('ItemWillBeDeletedMessage'),
|
|
okCancel: true,
|
|
onOk: () => {
|
|
return deleteById(record.id).then(() => {
|
|
reload();
|
|
});
|
|
},
|
|
});
|
|
}
|
|
</script>
|
|
|