mirror of https://github.com/nocodb/nocodb
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.
33 lines
865 B
33 lines
865 B
6 months ago
|
<script setup lang="ts">
|
||
|
const { header, field, toggleSort } = defineProps<{
|
||
|
header: string
|
||
|
activeSort: { field?: string; direction?: string }
|
||
|
field: UsersSortType['field']
|
||
|
toggleSort: Function
|
||
|
}>()
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="flex items-center space-x-2 cursor-pointer text-gray-700" @click="toggleSort(field)">
|
||
|
<span>
|
||
|
{{ header }}
|
||
|
</span>
|
||
|
<div class="flex flex-col">
|
||
|
<GeneralIcon
|
||
|
icon="arrowDropUp"
|
||
|
class="text-sm mb-[-10px] text-[16px]"
|
||
|
:class="{
|
||
|
'text-primary': activeSort.field === field && activeSort.direction === 'asc',
|
||
|
}"
|
||
|
/>
|
||
|
<GeneralIcon
|
||
|
icon="arrowDropDown"
|
||
|
class="text-sm text-[16px]"
|
||
|
:class="{
|
||
|
'text-primary': activeSort.field === field && activeSort.direction === 'desc',
|
||
|
}"
|
||
|
/>
|
||
|
</div>
|
||
|
</div>
|
||
|
</template>
|