feat(cli): docsearch v3

This commit is contained in:
chenjiahan
2020-12-01 17:25:46 +08:00
parent 63b354e0f1
commit b33737ef77
6 changed files with 211 additions and 105 deletions

View File

@@ -1,8 +1,11 @@
<template>
<input class="van-doc-search" :placeholder="placeholder" />
<div id="docsearch" />
</template>
<script>
import '@docsearch/css';
import docsearch from '@docsearch/js';
export default {
name: 'van-doc-search',
@@ -11,41 +14,28 @@ export default {
searchConfig: Object,
},
computed: {
placeholder() {
return this.searchConfig.placeholder || 'Search...';
},
},
watch: {
lang(lang) {
if (this.docsearchInstance) {
this.docsearchInstance.algoliaOptions.facetFilters = [`lang:${lang}`];
}
lang() {
this.initDocsearch();
},
},
mounted() {
if (this.searchConfig) {
this.docsearchInstance = window.docsearch({
...this.searchConfig,
transformData: (hits) => {
hits.forEach((hit) => {
if (hit.anchor) {
hit.url = hit.url + '#' + hit.anchor;
hit.anchor = null;
}
});
if (this.searchConfig.transformData) {
this.searchConfig.transformData(hits);
}
},
inputSelector: '.van-doc-search',
algoliaOptions: {
facetFilters: [`lang:${this.lang}`],
},
});
}
this.initDocsearch();
},
methods: {
initDocsearch() {
if (this.searchConfig) {
docsearch({
...this.searchConfig,
container: '#docsearch',
searchParameters: {
facetFilters: [`lang:${this.lang}`],
},
});
}
},
},
};
</script>
@@ -53,60 +43,8 @@ export default {
<style lang="less">
@import '../../common/style/var';
.van-doc-search {
width: 400px;
height: @van-doc-header-top-height;
margin-left: 140px;
color: #fff;
font-size: 14px;
background-color: transparent;
border: none;
&:focus {
outline: none;
}
&::placeholder {
color: #fff;
opacity: 0.7;
}
}
.ds-dropdown-menu {
line-height: 1.8;
}
.algolia-autocomplete {
.algolia-docsearch-suggestion--highlight {
color: @van-doc-blue;
background-color: transparent;
}
.algolia-docsearch-suggestion--title {
font-weight: 600;
}
.algolia-docsearch-suggestion--text {
.algolia-docsearch-suggestion--highlight {
box-shadow: inset 0 -1px 0 0 @van-doc-blue;
}
}
.algolia-docsearch-suggestion--category-header {
border-bottom-color: #eee;
}
.ds-dropdown-menu [class^='ds-dataset-'] {
border: none;
}
.ds-dropdown-menu {
top: 80% !important;
box-shadow: 0 4px 12px #ebedf0;
&::before {
display: none;
}
}
#docsearch {
display: inline-block;
vertical-align: middle;
}
</style>