123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246 |
- <template lang="pug">
- .search-results(v-if='searchIsFocused || (search && search.length > 1)')
- .search-results-container
- .search-results-help(v-if='!search || (search && search.length < 2)')
- img(src='/_assets/svg/icon-search-alt.svg')
- .mt-4 {{$t('common:header.searchHint')}}
- .search-results-loader(v-else-if='searchIsLoading && (!results || results.length < 1)')
- orbit-spinner(
- :animation-duration='1000'
- :size='100'
- color='#FFF'
- )
- .headline.mt-5 {{$t('common:header.searchLoading')}}
- .search-results-none(v-else-if='!searchIsLoading && (!results || results.length < 1)')
- img(src='/_assets/svg/icon-no-results.svg', alt='No Results')
- .subheading {{$t('common:header.searchNoResult')}}
- template(v-if='search && search.length >= 2 && results && results.length > 0')
- v-subheader.white--text {{$t('common:header.searchResultsCount', { total: response.totalHits })}}
- v-list.search-results-items.radius-7.py-0(two-line, dense)
- template(v-for='(item, idx) of results')
- v-list-item(@click='goToPage(item)', @click.middle="goToPageInNewTab(item)", :key='item.id', :class='idx === cursor ? `highlighted` : ``')
- v-list-item-avatar(tile)
- img(src='/_assets/svg/icon-selective-highlighting.svg')
- v-list-item-content
- v-list-item-title(v-text='item.title')
- v-list-item-subtitle.caption(v-text='item.description')
- .caption.grey--text(v-text='item.path')
- v-list-item-action
- v-chip(label, outlined) {{item.locale.toUpperCase()}}
- v-divider(v-if='idx < results.length - 1')
- v-pagination.mt-3(
- v-if='paginationLength > 1'
- dark
- v-model='pagination'
- :length='paginationLength'
- circle
- )
- template(v-if='suggestions && suggestions.length > 0')
- v-subheader.white--text.mt-3 {{$t('common:header.searchDidYouMean')}}
- v-list.search-results-suggestions.radius-7(dense, dark)
- template(v-for='(term, idx) of suggestions')
- v-list-item(:key='term', @click='setSearchTerm(term)', :class='idx + results.length === cursor ? `highlighted` : ``')
- v-list-item-avatar
- v-icon mdi-magnify
- v-list-item-content
- v-list-item-title(v-text='term')
- v-divider(v-if='idx < suggestions.length - 1')
- .text-xs-center.pt-5(v-if='search && search.length > 1')
- //- v-btn.mx-2(outlined, color='orange', @click='search = ``', v-if='results.length > 0')
- //- v-icon(left) mdi-content-save
- //- span {{$t('common:header.searchCopyLink')}}
- v-btn.mx-2(outlined, color='pink', @click='search = ``')
- v-icon(left) mdi-close
- span {{$t('common:header.searchClose')}}
- </template>
- <script>
- import _ from 'lodash'
- import { sync } from 'vuex-pathify'
- import { OrbitSpinner } from 'epic-spinners'
- import searchPagesQuery from 'gql/common/common-pages-query-search.gql'
- export default {
- components: {
- OrbitSpinner
- },
- data() {
- return {
- cursor: 0,
- pagination: 1,
- perPage: 10,
- response: {
- results: [],
- suggestions: [],
- totalHits: 0
- }
- }
- },
- computed: {
- search: sync('site/search'),
- searchIsFocused: sync('site/searchIsFocused'),
- searchIsLoading: sync('site/searchIsLoading'),
- searchRestrictLocale: sync('site/searchRestrictLocale'),
- searchRestrictPath: sync('site/searchRestrictPath'),
- results() {
- const currentIndex = (this.pagination - 1) * this.perPage
- return this.response.results ? _.slice(this.response.results, currentIndex, currentIndex + this.perPage) : []
- },
- hits() {
- return this.response.totalHits ? this.response.totalHits : 0
- },
- suggestions() {
- return this.response.suggestions ? this.response.suggestions : []
- },
- paginationLength() {
- return (this.response.totalHits > 0) ? Math.ceil(this.response.totalHits / this.perPage) : 0
- }
- },
- watch: {
- search(newValue, oldValue) {
- this.cursor = 0
- if (!newValue || (newValue && newValue.length < 2)) {
- this.searchIsLoading = false
- } else {
- this.searchIsLoading = true
- }
- }
- },
- mounted() {
- this.$root.$on('searchMove', (dir) => {
- this.cursor += ((dir === 'up') ? -1 : 1)
- if (this.cursor < -1) {
- this.cursor = -1
- } else if (this.cursor > this.results.length + this.suggestions.length - 1) {
- this.cursor = this.results.length + this.suggestions.length - 1
- }
- })
- this.$root.$on('searchEnter', () => {
- if (!this.results) {
- return
- }
- if (this.cursor >= 0 && this.cursor < this.results.length) {
- this.goToPage(_.nth(this.results, this.cursor))
- } else if (this.cursor >= 0) {
- this.setSearchTerm(_.nth(this.suggestions, this.cursor - this.results.length))
- }
- })
- },
- methods: {
- setSearchTerm(term) {
- this.search = term
- },
- goToPage(item) {
- window.location.assign(`/${item.locale}/${item.path}`)
- },
- goToPageInNewTab(item) {
- window.open(`/${item.locale}/${item.path}`, '_blank')
- }
- },
- apollo: {
- response: {
- query: searchPagesQuery,
- variables() {
- return {
- query: this.search
- }
- },
- fetchPolicy: 'network-only',
- debounce: 300,
- throttle: 1000,
- skip() {
- return !this.search || this.search.length < 2
- },
- update: (data) => _.get(data, 'pages.search', {}),
- watchLoading (isLoading) {
- this.searchIsLoading = isLoading
- }
- }
- }
- }
- </script>
- <style lang="scss">
- .search-results {
- position: fixed;
- top: 64px;
- left: 0;
- overflow-y: auto;
- width: 100%;
- height: calc(100% - 64px);
- background-color: rgba(0,0,0,.9);
- z-index: 100;
- text-align: center;
- animation: searchResultsReveal .6s ease;
- @media #{map-get($display-breakpoints, 'sm-and-down')} {
- top: 112px;
- }
- &-container {
- margin: 12px auto;
- width: 90vw;
- max-width: 1024px;
- }
- &-help {
- text-align: center;
- padding: 32px 0;
- font-size: 18px;
- font-weight: 300;
- color: #FFF;
- img {
- width: 104px;
- }
- }
- &-loader {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- padding: 32px 0;
- color: #FFF;
- }
- &-none {
- color: #FFF;
- img {
- width: 200px;
- }
- }
- &-items {
- text-align: left;
- .highlighted {
- background: #FFF linear-gradient(to bottom, #FFF, mc('orange', '100'));
- @at-root .theme--dark & {
- background: mc('grey', '900') linear-gradient(to bottom, mc('orange', '900'), darken(mc('orange', '900'), 15%));
- }
- }
- }
- &-suggestions {
- .highlighted {
- background: transparent linear-gradient(to bottom, mc('blue', '500'), mc('blue', '700'));
- }
- }
- }
- @keyframes searchResultsReveal {
- 0% {
- background-color: rgba(0,0,0,0);
- padding-top: 32px;
- }
- 100% {
- background-color: rgba(0,0,0,.9);
- padding-top: 0;
- }
- }
- </style>
|