mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
194 lines
4.2 KiB
Vue
194 lines
4.2 KiB
Vue
<template>
|
|
<div :class="classes" v-bind="$attrs">
|
|
<table :class="$style.datatable">
|
|
<thead :class="$style.datatableHeader">
|
|
<tr>
|
|
<th
|
|
v-for="column in columns"
|
|
:key="column.id"
|
|
:class="column.classes"
|
|
:style="getThStyle(column)"
|
|
>
|
|
{{ column.label }}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<template v-for="row in visibleRows">
|
|
<slot name="row" :columns="columns" :row="row" :get-td-value="getTdValue">
|
|
<tr :key="row.id">
|
|
<td v-for="column in columns" :key="column.id" :class="column.classes">
|
|
<component :is="column.render" v-if="column.render" :row="row" :column="column" />
|
|
<span v-else>{{ getTdValue(row, column) }}</span>
|
|
</td>
|
|
</tr>
|
|
</slot>
|
|
</template>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div :class="$style.pagination">
|
|
<N8nPagination
|
|
v-if="totalPages > 1"
|
|
background
|
|
:pager-count="5"
|
|
:page-size="rowsPerPage"
|
|
layout="prev, pager, next"
|
|
:total="totalRows"
|
|
:current-page="currentPage"
|
|
@update:current-page="onUpdateCurrentPage"
|
|
/>
|
|
|
|
<div :class="$style.pageSizeSelector">
|
|
<N8nSelect
|
|
size="mini"
|
|
:model-value="rowsPerPage"
|
|
teleported
|
|
@update:model-value="onRowsPerPageChange"
|
|
>
|
|
<template #prepend>{{ t('datatable.pageSize') }}</template>
|
|
<N8nOption
|
|
v-for="size in rowsPerPageOptions"
|
|
:key="size"
|
|
:label="`${size}`"
|
|
:value="size"
|
|
/>
|
|
<N8nOption :label="`All`" value="*"> </N8nOption>
|
|
</N8nSelect>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, ref, useCssModule } from 'vue';
|
|
import N8nSelect from '../N8nSelect';
|
|
import N8nOption from '../N8nOption';
|
|
import N8nPagination from '../N8nPagination';
|
|
import type { DatatableColumn, DatatableRow, DatatableRowDataType } from '../../types';
|
|
import { useI18n } from '../../composables/useI18n';
|
|
import { getValueByPath } from '../../utils';
|
|
|
|
interface DatatableProps {
|
|
columns: DatatableColumn[];
|
|
rows: DatatableRow[];
|
|
currentPage?: number;
|
|
pagination?: boolean;
|
|
rowsPerPage?: number;
|
|
}
|
|
|
|
defineOptions({ name: 'N8nDatatable' });
|
|
const props = withDefaults(defineProps<DatatableProps>(), {
|
|
currentPage: 1,
|
|
pagination: true,
|
|
rowsPerPage: 10,
|
|
});
|
|
|
|
const $emit = defineEmits<{
|
|
(event: 'update:currentPage', value: number): void;
|
|
(event: 'update:rowsPerPage', value: number): void;
|
|
}>();
|
|
|
|
const { t } = useI18n();
|
|
const rowsPerPageOptions = ref([10, 25, 50, 100]);
|
|
|
|
const $style = useCssModule();
|
|
|
|
const totalPages = computed(() => {
|
|
return Math.ceil(props.rows.length / props.rowsPerPage);
|
|
});
|
|
|
|
const totalRows = computed(() => {
|
|
return props.rows.length;
|
|
});
|
|
|
|
const visibleRows = computed(() => {
|
|
const start = (props.currentPage - 1) * props.rowsPerPage;
|
|
const end = start + props.rowsPerPage;
|
|
|
|
return props.rows.slice(start, end);
|
|
});
|
|
|
|
const classes = computed(() => ({
|
|
datatable: true,
|
|
[$style.datatableWrapper]: true,
|
|
}));
|
|
|
|
function onUpdateCurrentPage(value: number) {
|
|
$emit('update:currentPage', value);
|
|
}
|
|
|
|
function onRowsPerPageChange(value: number) {
|
|
$emit('update:rowsPerPage', value);
|
|
|
|
const maxPage = Math.ceil(totalRows.value / value);
|
|
if (maxPage < props.currentPage) {
|
|
onUpdateCurrentPage(maxPage);
|
|
}
|
|
}
|
|
|
|
function getTdValue(row: DatatableRow, column: DatatableColumn) {
|
|
return getValueByPath<DatatableRowDataType>(row, column.path);
|
|
}
|
|
|
|
function getThStyle(column: DatatableColumn) {
|
|
return {
|
|
...(column.width ? { width: column.width } : {}),
|
|
};
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.datatableWrapper {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
|
|
.datatable {
|
|
width: 100%;
|
|
|
|
tbody {
|
|
tr {
|
|
td {
|
|
vertical-align: top;
|
|
color: var(--color-text-base);
|
|
padding: var(--spacing-s) var(--spacing-2xs);
|
|
}
|
|
|
|
&:nth-of-type(even) {
|
|
background: var(--color-background-xlight);
|
|
}
|
|
|
|
&:nth-of-type(odd) {
|
|
background: var(--color-background-light);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.datatableHeader {
|
|
background: var(--color-background-base);
|
|
|
|
th {
|
|
text-align: left;
|
|
padding: var(--spacing-s) var(--spacing-2xs);
|
|
}
|
|
}
|
|
|
|
.pagination {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
bottom: 0;
|
|
overflow: visible;
|
|
margin-top: var(--spacing-s);
|
|
}
|
|
|
|
.pageSizeSelector {
|
|
text-transform: capitalize;
|
|
max-width: 150px;
|
|
flex: 0 1 auto;
|
|
}
|
|
</style>
|