Newer
Older
import type { ITableProps } from '../../common/interfaces/componentsProps';
import { computed, type Ref, ref } from 'vue';
import {
convertThemeToColor,
convertThemeToSecondaryColor,
convertThemeToTextColor,
} from '../../common/helpers/common';
import { calcAdditionalHeight, calcGap, calcRows } from './helpers';
import TableHeader from './components/TableHeader.vue';
import TableCell from './components/TableCell.vue';
import Paginator from '../Paginator/Paginator.vue';
import ToggleSwitch from '../ToggleSwitch/ToggleSwitch.vue';
const props = withDefaults(defineProps<ITableProps>(), {

Дмитрий Малюгин
committed
darknessTheme: '500',
const emit = defineEmits(['updateData']);

Дмитрий Малюгин
committed
const currentPage = ref<number>(1);
const itemsPerPage = ref<number>(10);
const isEditMode = ref<boolean>(props.editable);
const columns = ref(props.columns);

Дмитрий Малюгин
committed
const sortStateActive = ref<[number, string] | []>([]);
const isFilterPopup = ref<boolean>(false);

Дмитрий Малюгин
committed
const filterValue = ref<string>('');
const isRegisterSensitive = ref<boolean>(false);

Дмитрий Малюгин
committed
if (props.data) {
data.value = props.data;
}
if (props.columns) {
columns.value = props.columns;
}

Дмитрий Малюгин
committed
const columnToSortIndex = props.columns.findIndex((column) => column.initSort && column.initSort !== 'none');
if (~columnToSortIndex) sortStateActive.value = [columnToSortIndex, props.columns[columnToSortIndex].initSort!];
const initGap = computed(() => calcGap(props.gap ?? '5px', props.fontSize));
const additionalHeightFromSize = computed(() => calcAdditionalHeight(props.size, props.fontSize));
// ['', 'up', 'none', '', 'none', ...]
const sortState = computed<string[]>(() => {
const result = [];
for (const column of columns.value) {
result.push(column.sortable ? (column.initSort ?? 'none') : '');
}
return result;
});
const rows = computed<unknown[][]>(() =>
currentPage.value,
itemsPerPage.value,
sortStateActive.value,
props.multipleSort,
indexColumnToFilter.value,
props.columns[sortStateActive.value?.[0] ?? -1]?.type ?? 'text',
filterValue.value,
isRegisterSensitive.value,
),

Дмитрий Малюгин
committed
);
const types = computed(() => props.columns.map((column) => column.type));
const paginatorContainerHeight = computed(() => (props.paginator || props.editable ? '50px' : '0'));
const themeColor = computed(() => convertThemeToColor(props.theme, props.darknessTheme));
const color = computed(() =>
props.textColor
? convertThemeToColor(props.textColor, props.darknessTextColor)
: convertThemeToTextColor(props.theme, props.darknessTheme),
);
const secondaryColor = computed<string>(() => convertThemeToSecondaryColor(props.theme, props.darknessTheme));
const darkCellColor = computed(() => convertThemeToSecondaryColor(props.theme, String(+props.darknessTheme + 300)));
const knobWidth = computed(() => {
if (!isNaN(+props.fontSize[props.fontSize.length - 3]))
return +props.fontSize.slice(0, -2) * 2.5 + props.fontSize.slice(-2);
return +props.fontSize.slice(0, -3) * 2.5 + props.fontSize.slice(-3);
});
const changeColumnSortMode = (index: number) => {
const cur = sortState.value[index];
const newValue = cur === 'none' ? 'down' : cur === 'down' ? 'up' : 'none';
if (cur === 'up') {
sortStateActive.value = [];
} else {
sortStateActive.value[0] = index;
sortStateActive.value[1] = newValue;
}
if (!props.multipleSort) columns.value.forEach((column) => (column.initSort = 'none'));
columns.value[index].initSort = newValue;

Дмитрий Малюгин
committed
const setFilter = (column: number) => {
if (indexColumnToFilter.value === column || !isFilterPopup.value) {

Дмитрий Малюгин
committed
isFilterPopup.value = !isFilterPopup.value;
}
filterValue.value = '';

Дмитрий Малюгин
committed
}
};
const cancelFilter = () => {
filterValue.value = '';
isFilterPopup.value = false;
};
const updateData = (newValue: Ref<unknown>, rowIndex: number, columnIndex: number) => {
if (data.value?.[rowIndex]?.[columnIndex] !== undefined) {
data.value[rowIndex][columnIndex] = newValue.value ?? newValue;
emit('updateData', data.value);
}
};
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<table
:class="{
tableLines: showAllLines,
}"
:style="`background-color: ${themeColor}; color: ${color}`"
class="table"
ref="table"
>
<thead>
<TableHeader
v-model:filterValue="filterValue"
v-model:isFilterPopup="isFilterPopup"
v-model:isRegisterSensitive="isRegisterSensitive"
:table="table"
:columns="columns"
:sortState="sortState"
:indexColumnToFilter="indexColumnToFilter"
:types="types"
:initGap="initGap"
:additionalHeightFromSize="additionalHeightFromSize"
:theme="theme"
:themeColor="themeColor"
:secondaryColor="secondaryColor"
:color="color"
:showAllLines="!!showAllLines"
:center="!!center"
:fontSize="fontSize"
:isEditMode="isEditMode"
@changeColumnSortMode="changeColumnSortMode"
@setFilter="setFilter"
@cancelFilter="cancelFilter"
/>
</thead>
<tbody>
<tr
v-for="(row, rowIndex) of rows"
:key="rowIndex"
:class="{
noEdit:
!isEditMode ||
(noEditingSettings?.rows && noEditingSettings?.rows.find((i) => data?.[i]?.join('') === row.join(''))),
}"
>
<td
v-for="(item, columnIndex) of row"
:key="columnIndex"
@click="
handlers ? handlers.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex)?.handler?.() : null
leftBorder: showAllLines,
darkRow: stripedRows && !(rowIndex % 2),
noEdit: !isEditMode || (noEditingSettings?.columns && ~noEditingSettings.columns?.indexOf(columnIndex)),
pointer: handlers && handlers?.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex),
:style="`padding: calc(${initGap} / 2 + ${additionalHeightFromSize}) ${initGap}`"
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<TableCell
:item="item"
:types="types"
:column="columns[columnIndex]"
:rowIndex="rowIndex"
:columnIndex="columnIndex"
:center="center"
:isEditMode="isEditMode"
:noEditingSettings="noEditingSettings?.cells"
:fontSize="fontSize"
:initGap="initGap"
:knobWidth="knobWidth"
:noEdit="
handlers ? !!handlers?.find((i) => i.cell?.[0] === rowIndex && i.cell?.[1] === columnIndex) : false
"
:theme="theme"
@updateData="updateData"
/>
</td>
</tr>
</tbody>
</table>
<div class="paginatorContainer">
<section v-if="editable" class="editMenu">
<p class="editText">Edit mode:</p>
<ToggleSwitch v-model="isEditMode" negativeTheme="red" />
</section>
<Paginator
v-show="paginator"
v-model:current="currentPage"
v-model:itemsPerPage="itemsPerPage"
:theme="theme"
:total="data.length"
:itemsPerPageOptions="[2, 5]"
v-bind="paginatorOptions"
class="paginator"
/>
</template>
<style scoped>
position: relative;
* {
font-size: v-bind(fontSize);
}
}
.table::after {
content: '';
position: absolute;
top: 100%;
z-index: -1;
width: 100%;
height: v-bind(paginatorContainerHeight);
background-color: v-bind(themeColor);
.editMenu {
display: flex;
align-items: center;
gap: 10px;
width: max-content;
padding: 10px;
}
.editText {
color: v-bind(color);
}
.paginatorContainer {
height: 50px;
display: flex;
align-items: center;
}
tr {
position: relative;
}
tr::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 1px;
background-color: v-bind(secondaryColor);
border-top: 1px solid v-bind(secondaryColor);
border-right: 1px solid v-bind(secondaryColor);
.cell {
height: 100%;
margin: 0 auto;
}
.cellCenter {
justify-content: center;
align-items: center;
}
.paginator {
margin: 0 auto;
}
border-left: 1px solid v-bind(secondaryColor);
}
.darkRow {
background-color: v-bind(darkCellColor);
.noEdit {
pointer-events: none;
}
.pointer {
cursor: pointer;
}