mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 21:56:12 +08:00
228 lines
7.7 KiB
Vue
228 lines
7.7 KiB
Vue
<template>
|
|
<GeneralDropdown ref="container" :canOpen="canOpen" :fieldOnlyOpen="true">
|
|
<template v-slot:field>
|
|
<div class="sci--navigation--top-menu-search left-icon sci-input-container-v2" :class="{'disabled' : !currentTeam}" :title="i18n.t('nav.search')">
|
|
<input ref="searchField" type="text" class="!pr-9" v-model="searchQuery" :placeholder="i18n.t('nav.search')" @keyup.enter="saveQuery"/>
|
|
<i class="sn-icon sn-icon-search"></i>
|
|
<i v-if="this.searchQuery.length > 0" class="sn-icon sn-icon-close absolute right-1 top-0.5" @click="this.searchQuery = ''"></i>
|
|
</div>
|
|
</template>
|
|
<template v-slot:flyout >
|
|
<div v-if="showHistory" class="max-w-[600px]">
|
|
<div v-for="(query, i) in previousQueries.reverse()" @click="setQuery(query)" :key="i"
|
|
class="flex px-3 h-11 items-center gap-2 hover:bg-sn-super-light-grey cursor-pointer">
|
|
<i class="sn-icon sn-icon-history-search"></i>
|
|
{{ query }}
|
|
</div>
|
|
</div>
|
|
<div v-else class="max-w-[600px]">
|
|
<div class="flex items-center gap-2">
|
|
<button class="btn btn-secondary btn-xs" @click="setQuickFilter('experiments')">
|
|
{{ i18n.t('search.quick_search.experiments') }}
|
|
</button>
|
|
<button class="btn btn-secondary btn-xs" @click="setQuickFilter('my_modules')">
|
|
{{ i18n.t('search.quick_search.tasks') }}
|
|
</button>
|
|
<button class="btn btn-secondary btn-xs" @click="setQuickFilter('results')">
|
|
{{ i18n.t('search.quick_search.results') }}
|
|
</button>
|
|
<button class="btn btn-secondary btn-xs" @click="setQuickFilter('repository_rows')">
|
|
{{ i18n.t('search.quick_search.inventory_items') }}
|
|
</button>
|
|
</div>
|
|
<hr class="my-2">
|
|
<a v-if="!loading" v-for="(result, i) in results" :key="i"
|
|
:href="getUrl(result.attributes)"
|
|
class="px-3 py-2 hover:bg-sn-super-light-grey cursor-pointer
|
|
text-sn-black hover:no-underline active:no-underline hover:text-black block"
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<i class="sn-icon shrink-0" :class="getIcon(result.type)"></i>
|
|
<span v-if="result.attributes.archived">(A)</span>
|
|
<StringWithEllipsis class="grow max-w-[400px]" :text="getName(result.attributes)"></StringWithEllipsis>
|
|
<div class="ml-auto pl-4 text-sn-grey text-xs shrink-0">
|
|
{{ result.attributes.updated_at }}
|
|
</div>
|
|
</div>
|
|
<div class="text-sn-grey text-xs flex items-center gap-1 pl-8">
|
|
<div v-for="(breadcrumb, i) in getBreadcrumb(result.attributes)" :key="i"
|
|
class="flex items-center gap-1"
|
|
>
|
|
<span v="if" v-if="i !== 0">/</span>
|
|
<span :title="breadcrumb" class="truncate max-w-[130px]">{{ breadcrumb }}</span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
<div v-else v-for="i in Array(5).fill(5)" class="px-3 py-2">
|
|
<div class="flex items-center gap-2 mb-2">
|
|
<div class="h-6 w-6 bg-sn-light-grey rounded shrink-0"></div>
|
|
<div class="h-6 grow max-w-[200px] bg-sn-light-grey rounded shrink-0"></div>
|
|
<div class="h-6 w-12 bg-sn-light-grey rounded shrink-0 ml-auto"></div>
|
|
</div>
|
|
<div class="flex items-center gap-2 pl-8">
|
|
<div class="h-3 grow max-w-[200px] bg-sn-light-grey rounded shrink-0"></div>
|
|
</div>
|
|
</div>
|
|
<div v-if="!loading && results.length === 0" class="p-2 flex items-center gap-6">
|
|
<i class="sn-icon sn-icon-search text-sn-sleepy-grey" style="font-size: 64px !important;"></i>
|
|
<div>
|
|
<b>{{ i18n.t('search.quick_search.empty_title') }}</b>
|
|
<div class="text-xs text-sn-dark-grey">
|
|
{{ i18n.t('search.quick_search.empty_description', {query: searchQuery}) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<hr class="my-2">
|
|
<div class="btn btn-light" @click="searchValue">
|
|
{{ i18n.t('search.quick_search.all_results', {query: searchQuery}) }}
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</GeneralDropdown>
|
|
</template>
|
|
|
|
<script>
|
|
import GeneralDropdown from '../shared/general_dropdown.vue';
|
|
import StringWithEllipsis from '../shared/string_with_ellipsis.vue';
|
|
import axios from '../../packs/custom_axios.js';
|
|
|
|
export default {
|
|
name: 'QuickSearch',
|
|
props: {
|
|
quickSearchUrl: {
|
|
type: String,
|
|
required: true
|
|
},
|
|
currentTeam: {
|
|
type: Number
|
|
},
|
|
searchUrl: {
|
|
type: String,
|
|
required: true
|
|
}
|
|
},
|
|
components: {
|
|
GeneralDropdown,
|
|
StringWithEllipsis
|
|
},
|
|
computed: {
|
|
canOpen() {
|
|
return this.previousQueries.length > 0 || this.searchQuery.length > 1;
|
|
},
|
|
showHistory() {
|
|
return this.searchQuery.length < 2;
|
|
}
|
|
},
|
|
watch: {
|
|
searchQuery() {
|
|
this.$refs.container.isOpen = this.canOpen;
|
|
|
|
if (this.searchQuery.length > 1) {
|
|
this.fetchQuickSearchResults();
|
|
}
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
searchQuery: '',
|
|
previousQueries: [],
|
|
quickFilter: null,
|
|
results: [],
|
|
loading: false
|
|
};
|
|
},
|
|
mounted() {
|
|
this.previousQueries = JSON.parse(localStorage.getItem('quickSearchHistory') || '[]');
|
|
},
|
|
methods: {
|
|
getIcon(type) {
|
|
switch (type) {
|
|
case 'projects':
|
|
return 'sn-icon-projects';
|
|
case 'experiments':
|
|
return 'sn-icon-experiment';
|
|
case 'my_modules':
|
|
return 'sn-icon-task';
|
|
case 'project_folders':
|
|
return 'sn-icon-folder';
|
|
case 'protocols':
|
|
return 'sn-icon-protocols-templates';
|
|
case 'results':
|
|
return 'sn-icon-results';
|
|
case 'repository_rows':
|
|
return 'sn-icon-inventory';
|
|
case 'reports':
|
|
return 'sn-icon-reports';
|
|
case 'steps':
|
|
return 'sn-icon-steps';
|
|
case 'label-templates':
|
|
return 'sn-icon-label-templates';
|
|
default:
|
|
return null;
|
|
}
|
|
},
|
|
getName(attributes) {
|
|
return attributes.breadcrumbs[attributes.breadcrumbs.length - 1].name;
|
|
},
|
|
getUrl(attributes) {
|
|
return attributes.breadcrumbs[attributes.breadcrumbs.length - 1].url;
|
|
},
|
|
getBreadcrumb(attributes) {
|
|
const breadcrumbs = attributes.breadcrumbs.map((breadcrumb) => breadcrumb.name);
|
|
breadcrumbs.pop();
|
|
breadcrumbs.shift();
|
|
breadcrumbs.push(`ID: ${attributes.code}`);
|
|
return breadcrumbs;
|
|
},
|
|
setQuery(query) {
|
|
this.searchQuery = query;
|
|
this.$nextTick(() => {
|
|
this.$refs.searchField.focus();
|
|
});
|
|
},
|
|
saveQuery() {
|
|
if (this.searchQuery.length > 0) {
|
|
this.previousQueries.push(this.searchQuery);
|
|
|
|
if (this.previousQueries.length > 5) {
|
|
this.previousQueries.shift();
|
|
}
|
|
|
|
localStorage.setItem('quickSearchHistory', JSON.stringify(this.previousQueries));
|
|
|
|
this.searchValue();
|
|
}
|
|
},
|
|
setQuickFilter(filter) {
|
|
this.quickFilter = this.quickFilter === filter ? null : filter;
|
|
this.fetchQuickSearchResults();
|
|
},
|
|
fetchQuickSearchResults() {
|
|
if (this.loading) return;
|
|
|
|
this.loading = true;
|
|
|
|
const params = {
|
|
query: this.searchQuery,
|
|
filter: this.quickFilter
|
|
};
|
|
|
|
axios.get(this.quickSearchUrl, { params })
|
|
.then((response) => {
|
|
this.results = response.data.data;
|
|
this.loading = false;
|
|
if (params.query !== this.searchQuery) {
|
|
this.fetchQuickSearchResults();
|
|
}
|
|
})
|
|
.catch(() => {
|
|
this.results = [];
|
|
this.loading = false;
|
|
});
|
|
},
|
|
searchValue() {
|
|
window.open(`${this.searchUrl}?q=${this.searchQuery}`, '_self');
|
|
}
|
|
}
|
|
};
|
|
</script>
|