mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
* Add migration to remove default value from project_color * Upgrade the default theme * Do a pass over the header buttons * Do another pass over --warning uses * Little things * Tweak smoke * Use updated map * Use dark system elements in dark mode * Remove outdated files, update toasts * Use correct delete button style for role * Use primary for created point * Tweak spacing in revisions section * Use primary for sidebar sections * Various color tweaks and changes * Update base color palette * Update "css reset" code * Remove splashscreens, add default favicon * Add primary highlight to datamodel page * dark mode color update * fix sign out hover color * Does this help?! * This fixes some loading issues Fixes https://github.com/directus/directus/issues/10707 * Calculate default pretty background? * Fix public view with logo * Fix responsiveness of login page * adjust notification group width to be equal * Do an absolute pointless task that doesn't do anything It was suggested that it could fix the stylelint error in tests, but alas * Remove stylelint Doesn't seem to play nice with script setup and other changes Co-authored-by: Ben Haynes <ben@rngr.org>
190 lines
5.4 KiB
Vue
190 lines
5.4 KiB
Vue
<template>
|
|
<form id="search-form" class="algolia-search-wrapper search-box" role="search">
|
|
<input id="algolia-search-input" class="search-query" :placeholder="placeholder" />
|
|
</form>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'AlgoliaSearchBox',
|
|
|
|
props: ['options'],
|
|
|
|
data() {
|
|
return {
|
|
placeholder: undefined,
|
|
};
|
|
},
|
|
|
|
watch: {
|
|
$lang(newValue) {
|
|
this.update(this.options, newValue);
|
|
},
|
|
|
|
options(newValue) {
|
|
this.update(newValue, this.$lang);
|
|
},
|
|
},
|
|
|
|
mounted() {
|
|
this.initialize(this.options, this.$lang);
|
|
this.placeholder = this.$site.themeConfig.searchPlaceholder || '';
|
|
},
|
|
|
|
methods: {
|
|
initialize(userOptions, lang) {
|
|
Promise.all([
|
|
import(/* webpackChunkName: "docsearch" */ 'docsearch.js/dist/cdn/docsearch.min.js'),
|
|
import(/* webpackChunkName: "docsearch" */ 'docsearch.js/dist/cdn/docsearch.min.css'),
|
|
]).then(([docsearch]) => {
|
|
docsearch = docsearch.default;
|
|
const { algoliaOptions = {} } = userOptions;
|
|
docsearch(
|
|
Object.assign({}, userOptions, {
|
|
inputSelector: '#algolia-search-input',
|
|
// #697 Make docsearch work well at i18n mode.
|
|
algoliaOptions: Object.assign(
|
|
{
|
|
facetFilters: [`lang:${lang}`].concat(algoliaOptions.facetFilters || []),
|
|
},
|
|
algoliaOptions
|
|
),
|
|
handleSelected: (input, event, suggestion) => {
|
|
const { pathname, hash } = new URL(suggestion.url);
|
|
const routepath = pathname.replace(this.$site.base, '/');
|
|
const _hash = decodeURIComponent(hash);
|
|
this.$router.push(`${routepath}${_hash}`);
|
|
},
|
|
})
|
|
);
|
|
});
|
|
},
|
|
|
|
update(options, lang) {
|
|
this.$el.innerHTML = '<input id="algolia-search-input" class="search-query">';
|
|
this.initialize(options, lang);
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="stylus">
|
|
.algolia-search-wrapper
|
|
& > span
|
|
vertical-align middle
|
|
.algolia-autocomplete
|
|
line-height normal
|
|
.ds-dropdown-menu
|
|
background-color var(--background-page)
|
|
border 2px solid var(--border-normal)
|
|
border-radius 4px
|
|
font-size 16px
|
|
margin 6px 0 0
|
|
padding 4px
|
|
text-align left
|
|
&:before
|
|
border-color var(--border-normal)
|
|
[class^=ds-dataset-]
|
|
border none
|
|
background var(--background-page)
|
|
padding 0
|
|
.ds-suggestions
|
|
margin-top 0
|
|
.ds-suggestion
|
|
border-bottom 1px solid var(--border-normal)
|
|
.algolia-docsearch-suggestion--highlight
|
|
color var(--primary-dark) !important
|
|
box-shadow inset 0 -2px 0 0 var(--primary) !important
|
|
.algolia-docsearch-suggestion--text
|
|
color var(--foreground-normal)
|
|
.algolia-docsearch-suggestion
|
|
border-color var(--border-normal)
|
|
padding 0
|
|
background transparent
|
|
.algolia-docsearch-suggestion--category-header
|
|
padding 5px 10px
|
|
margin-top 0
|
|
background var(--primary)
|
|
border-bottom 1px solid var(--border-normal)
|
|
color #fff
|
|
font-weight 600
|
|
.algolia-docsearch-suggestion--highlight
|
|
background rgba(255, 255, 255, 0.6)
|
|
.algolia-docsearch-suggestion--wrapper
|
|
padding 0
|
|
.algolia-docsearch-suggestion--title
|
|
font-weight 600
|
|
margin-bottom 0
|
|
color var(--foreground-normal-alt)
|
|
.algolia-docsearch-suggestion--subcategory-column
|
|
vertical-align top
|
|
padding 5px 7px 5px 5px
|
|
border-color var(--border-normal)
|
|
background var(--background-normal)
|
|
&:after
|
|
display none
|
|
.algolia-docsearch-suggestion--subcategory-column-text
|
|
color var(--foreground-normal)
|
|
.algolia-docsearch-suggestion--content
|
|
background var(--background-page)
|
|
.algolia-docsearch-suggestion--content
|
|
&:before
|
|
background #d3dae4
|
|
.algolia-docsearch-footer
|
|
border-color var(--border-normal)
|
|
.ds-cursor .algolia-docsearch-suggestion--content
|
|
background-color var(--background-normal-alt) !important
|
|
color var(--foreground-normal-alt)
|
|
|
|
@media (min-width: $MQMobile)
|
|
.algolia-search-wrapper
|
|
.algolia-autocomplete
|
|
.algolia-docsearch-suggestion
|
|
.algolia-docsearch-suggestion--subcategory-column
|
|
float none
|
|
width 150px
|
|
min-width 150px
|
|
display table-cell
|
|
.algolia-docsearch-suggestion--content
|
|
float none
|
|
display table-cell
|
|
width 100%
|
|
vertical-align top
|
|
.ds-dropdown-menu
|
|
min-width 515px !important
|
|
|
|
@media (max-width: $MQMobile)
|
|
.algolia-search-wrapper
|
|
.ds-dropdown-menu
|
|
min-width calc(100vw - 4rem) !important
|
|
max-width calc(100vw - 4rem) !important
|
|
.algolia-docsearch-suggestion--wrapper
|
|
padding 5px 7px 5px 5px !important
|
|
.algolia-docsearch-suggestion--subcategory-column
|
|
padding 0 !important
|
|
background white !important
|
|
.algolia-docsearch-suggestion--subcategory-column-text:after
|
|
content " > "
|
|
font-size 10px
|
|
line-height 14.4px
|
|
display inline-block
|
|
width 5px
|
|
margin -3px 3px 0
|
|
vertical-align middle
|
|
|
|
@media (prefers-color-scheme: dark)
|
|
.algolia-search-wrapper
|
|
.algolia-autocomplete
|
|
.ds-dropdown-menu
|
|
&:before
|
|
border-color #455a64 !important
|
|
background #263238 !important
|
|
.algolia-docsearch-suggestion--category-header
|
|
.algolia-docsearch-suggestion--highlight
|
|
background rgba(255, 255, 255, 1)
|
|
color var(--primary) !important
|
|
.algolia-docsearch-suggestion--content
|
|
&:before
|
|
background #455a64
|
|
</style>
|