import axios from '../../../packs/custom_axios.js'; import StringWithEllipsis from '../../shared/string_with_ellipsis.vue'; import SortFlyout from './helpers/sort_flyout.vue'; import Loader from '../loader.vue'; import ListEnd from './helpers/list_end.vue'; import NoSearchResult from './helpers/no_search_result.vue'; import CellTemplate from './helpers/cell_template.vue'; import LinkTemplate from './helpers/link_template.vue'; /* global GLOBAL_CONSTANTS I18n */ export default { props: { searchUrl: String, query: String, selected: Boolean, filters: Object }, components: { StringWithEllipsis, SortFlyout, Loader, NoSearchResult, ListEnd, CellTemplate, LinkTemplate }, data() { return { sort: 'created_desc', results: [], total: 0, loading: false, page: 1, disabled: false, fullDataLoaded: false, }; }, watch: { selected() { if (this.selected) { if (!this.fullDataLoaded) { this.total = 0; this.results = []; this.loadData(); } } }, query() { if (this.query.length > 1) { this.results = []; this.page = 1; this.total = 0; this.fullDataLoaded = false; this.loadData(); } } }, mounted() { this.loadData(); window.addEventListener('scroll', this.handleScroll); }, unmounted() { window.removeEventListener('scroll', this.handleScroll); }, computed: { preparedResults() { if (this.selected) { return this.results; } return this.results.slice(0, 4); }, viewAll() { return !this.selected && this.total > GLOBAL_CONSTANTS.GLOBAL_SEARCH_PREVIEW_LIMIT; }, loaderRows() { return !this.selected ? 4 : 20; }, reachedEnd() { return !this.page && this.selected; }, showNoSearchResult() { return this.selected && !this.loading && !this.results.length; } }, methods: { labelName(object) { if (!object) return ''; if (!object.archived) return object.name; return `${I18n.t('labels.archived')} ${object.name}`; }, handleScroll() { if (this.loading || !this.selected) return; if ((window.innerHeight + window.scrollY) >= document.body.offsetHeight) { if (this.results.length < this.total) { this.loadData(); } } }, changeSort(sort) { this.sort = sort; this.results = []; this.page = 1; this.loadData(); }, loadData() { if (this.query.length < 2) return; if (this.loading && this.page) return; this.loading = true; axios.get(this.searchUrl, { params: { q: this.query, sort: this.sort, filters: this.filters, group: this.group, preview: !this.selected, page: this.page } }) .then((response) => { if (this.selected) this.fullDataLoaded = true; this.results = this.results.concat(response.data.data); this.total = response.data.meta.total; this.disabled = response.data.meta.disabled; this.loading = false; this.page = response.data.meta.next_page; }) .finally(() => { this.loading = false; }); } } };