cartodb-4.42/lib/assets/javascripts/new-dashboard/components/Dataset/DatasetListHeader.vue

180 lines
4.9 KiB
Vue
Raw Normal View History

2024-04-06 13:25:13 +08:00
<template>
<div class="dataset-list-row">
<div class="viz-column--main-info">
<div class="dataset-list-cell cell cell--start">
</div>
<div class="dataset-list-cell cell cell--main" @click="changeOrder('name')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('name'),
'is-reversed': isReverseOrderApplied('name'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.name`) }}
</span>
</div>
</div>
<div class="viz-column--extra-info">
<div class="viz-column--status">
<div class="dataset-list-cell cell cell--large" @click="changeOrder('updated_at')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('updated_at'),
'is-reversed': isReverseOrderApplied('updated_at'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.lastModified`) }}
</span>
</div>
<div class="dataset-list-cell cell cell--xsmall u-txt-right" @click="changeOrder('estimated_row_count')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('estimated_row_count'),
'is-reversed': isReverseOrderApplied('estimated_row_count'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.rows`) }}
</span>
</div>
<div class="dataset-list-cell cell cell--small u-txt-right" @click="changeOrder('size')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('size'),
'is-reversed': isReverseOrderApplied('size'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.size`) }}
</span>
</div>
</div>
<div class="viz-column--share">
<div class="dataset-list-cell cell cell--small" @click="changeOrder('dependent_visualizations')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('dependent_visualizations'),
'is-reversed': isReverseOrderApplied('dependent_visualizations'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.usage`) }}
</span>
</div>
<div class="dataset-list-cell cell cell--xsmall" @click="changeOrder('privacy')">
<span class="text is-small is-txtSoftGrey"
:class="{
'is-active': isOrderApplied('privacy'),
'is-reversed': isReverseOrderApplied('privacy'),
'element-sort': isSortable
}">
{{ $t(`DatasetListHeader.privacy`) }}
</span>
</div>
<div class="dataset-list-cell cell cell--end"></div>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'DatasetListHeader',
props: {
order: String,
orderDirection: String,
isSortable: {
type: Boolean,
default: true
}
},
methods: {
changeOrder (order) {
if (this.order === order) {
return this.setOrder(
order,
this.getOppositeOrderDirection(this.orderDirection)
);
}
this.setOrder(order);
},
getOppositeOrderDirection (order) {
if (order === 'desc') {
return 'asc';
}
if (order === 'asc') {
return 'desc';
}
},
isOrderApplied (order) {
return order === this.order;
},
isReverseOrderApplied (order) {
return order === this.order && this.orderDirection === 'asc';
},
setOrder (order, direction = 'desc') {
this.$emit('changeOrder', { order, direction });
}
}
};
</script>
<style scoped lang="scss">
@import 'new-dashboard/styles/variables';
.dataset-list-row {
display: flex;
align-items: center;
width: 100%;
margin-bottom: 1px;
padding: 14px;
overflow: hidden;
border-bottom: 1px solid $softblue;
background-color: $white;
cursor: default;
}
.cell--start {
display: flex;
align-items: center;
align-self: flex-start;
width: 58px;
height: 100%;
}
.cell--end {
width: 34px;
}
.element-sort {
&.is-active,
&:hover {
color: $text__color;
cursor: pointer;
&::after {
content: '';
position: absolute;
width: 14px;
height: 100%;
margin-left: 4px;
transition: all 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
background-image: url('../../assets/icons/datasets/chevron.svg');
background-repeat: no-repeat;
background-position: center;
}
&.is-reversed {
&::after {
transform: rotate(180deg);
}
}
}
}
</style>