mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-16 22:25:30 +08:00
40 lines
1.3 KiB
JavaScript
40 lines
1.3 KiB
JavaScript
export default {
|
|
template: `
|
|
<div class="w-full grid items-center gap-2 grid-cols-[auto_1.5rem] cursor-pointer" @click="onSortRequested((activeSort == 'asc' ? 'desc' : 'asc'), $event)">
|
|
<div v-if="params.html" class="customHeaderLabel truncate" v-html="params.html"></div>
|
|
<div v-else class="customHeaderLabel truncate">{{ params.displayName }}</div>
|
|
<div v-if="activeSort == 'asc'" class="customSortDownLabel text-sn-sleepy-grey">
|
|
<i class="sn-icon sn-icon-sort-up"></i>
|
|
</div>
|
|
<div v-if="activeSort == 'desc'" class="customSortUpLabel text-sn-sleepy-grey">
|
|
<i class="sn-icon sn-icon-sort-down"></i>
|
|
</div>
|
|
</div>
|
|
`,
|
|
data() {
|
|
return {
|
|
activeSort: null,
|
|
};
|
|
},
|
|
beforeMount() {},
|
|
mounted() {
|
|
this.params.column.addEventListener('sortChanged', this.onSortChanged);
|
|
this.onSortChanged();
|
|
},
|
|
methods: {
|
|
onSortChanged() {
|
|
this.activeSort = null;
|
|
if (this.params.column.isSortAscending()) {
|
|
this.activeSort = 'asc';
|
|
} else if (this.params.column.isSortDescending()) {
|
|
this.activeSort = 'desc';
|
|
}
|
|
},
|
|
|
|
onSortRequested(order, event) {
|
|
if (!this.params.enableSorting) return;
|
|
|
|
this.params.setSort(order, event.shiftKey);
|
|
},
|
|
},
|
|
};
|