scinote-web/app/javascript/vue/results/results_toolbar.vue

119 lines
4.1 KiB
Vue
Raw Normal View History

<template>
<div class="result-toolbar p-3 flex justify-between rounded-md bg-sn-white">
<div class="result-toolbar__left">
<button v-if="canCreate" :title="i18n.t('my_modules.results.add_title')" class="btn btn-secondary" @click="$emit('newResult')">
<i class="sn-icon sn-icon-new-task"></i>
{{ i18n.t('my_modules.results.add_label') }}
</button>
</div>
<div class="dropdown view-switch" >
<div class="btn btn-light btn-black view-switch-button prevent-shrink" id="viewSwitchButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<span v-if="archived" class="state-view-switch-btn-name">{{ i18n.t('my_modules.results.archived_results') }}</span>
<span v-else class="state-view-switch-btn-name">{{ i18n.t('my_modules.results.active_results') }}</span>
<span class="sn-icon sn-icon-down"></span>
</div>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="viewSwitchButton">
<li class="view-switch-active">
<a :href="active_url" :class="{'form-dropdown-state-item prevent-shrink': !archived}">
{{ i18n.t('my_modules.results.active_results') }}
</a>
</li>
<li class="view-switch-archived">
<a :href="archived_url" :class="{'form-dropdown-state-item prevent-shrink': archived}">
{{ i18n.t('my_modules.results.archived_results') }}
</a>
</li>
</ul>
</div>
<div class="result-toolbar__right flex items-center" @click="$emit('expandAll')">
<button class="btn btn-secondary mr-3" @click="collapseResults" tabindex="0">
{{ i18n.t('my_modules.results.collapse_label') }}
</button>
<button class="btn btn-secondary mr-3" @click="expandResults" tabindex="0">
{{ i18n.t('my_modules.results.expand_label') }}
</button>
2023-08-23 17:59:21 +08:00
<FilterDropdown :filters="filters" @applyFilters="setFilters" />
<div class="dropdown">
<button class="dropdown-toggle btn btn-light icon-btn mr-3" id="sortDropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
<i class="sn-icon sn-icon-sort"></i>
</button>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="sortDropdown">
<li v-for="sort in sorts" :key="sort">
<a class="cursor-pointer" @click="setSort(sort)">
{{ i18n.t(`my_modules.results.sorts.${sort}`)}}
</a>
</li>
</ul>
</div>
</div>
</div>
</template>
<script>
const SORTS = [
'updated_at_asc',
'updated_at_desc',
'created_at_asc',
'created_at_desc',
'name_asc',
'name_desc'
];
2023-08-23 17:59:21 +08:00
import FilterDropdown from '../shared/filters/filter_dropdown.vue';
export default {
name: 'ResultsToolbar',
props: {
2023-08-23 17:59:21 +08:00
sort: { type: String, required: true },
canCreate: { type: Boolean, required: true },
archived: { type: Boolean, required: true },
active_url: { type: String, required: true },
archived_url: { type: String, required: true }
},
2023-08-23 17:59:21 +08:00
data() {
return {
filters: null
}
},
components: { FilterDropdown },
created() {
2023-08-23 17:59:21 +08:00
this.filters = [
{
key: 'query',
type: 'Text',
label: this.i18n.t('my_modules.results.filters.query.label'),
placeholder: this.i18n.t('my_modules.results.filters.query.placeholder')
},
{
key: 'created_at',
type: 'DateRange',
label: this.i18n.t('my_modules.results.filters.created_at.label')
},
{
key: 'updated_at',
type: 'DateRange',
label: this.i18n.t('my_modules.results.filters.updated_at.label')
}
];
this.sorts = SORTS;
},
methods: {
setSort(sort) {
this.$emit('setSort', sort);
2023-08-23 17:59:21 +08:00
},
setFilters(filters) {
this.$emit('setFilters', filters);
},
collapseResults() {
$('.result-wrapper .collapse').collapse('hide')
},
expandResults() {
$('.result-wrapper .collapse').collapse('show')
}
}
}
</script>