-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to [email protected] * patch algolia search to handle internalDomain stuff part 1 * internal search test 2 * CL * CL2
- Loading branch information
Showing
6 changed files
with
250 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
## v1.0.0-beta.40 - [TBD](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.40) | ||
## v1.0.0-beta.40 - [March 5, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.40) | ||
|
||
## New Features | ||
|
||
* Added `mergeWith` for more explicit contrubutor merging | ||
* Updated to `[email protected]` | ||
|
||
## Fixes | ||
|
||
* Changed member data to only render if available [#27](https://github.com/lando/vitepress-theme-default-plus/pull/27) | ||
* Fixed Algolia search from displaying contrib information in source text, requires reindexing on Algolia end | ||
* Fixed Algolia search from attempting to route to internal pages that are actually external | ||
|
||
## Internal | ||
|
||
* Changed `VPLTeamMembersItem.vue` to wrap name in `div` instead of `h1` | ||
|
||
## v1.0.0-beta.39 - [February 17, 2024](https://github.com/lando/vitepress-theme-default-plus/releases/tag/v1.0.0-beta.39) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
<template> | ||
<div id="docsearch" /> | ||
</template> | ||
|
||
|
||
<script setup> | ||
import docsearch from '@docsearch/js'; | ||
import {useData, useRoute, useRouter} from 'vitepress'; | ||
import {nextTick, onMounted, watch} from 'vue'; | ||
const props = defineProps({ | ||
algolia: { | ||
type: Object, | ||
default: () => ({}), | ||
}, | ||
}); | ||
const router = useRouter(); | ||
const route = useRoute(); | ||
const {site, localeIndex, lang} = useData(); | ||
onMounted(update); | ||
watch(localeIndex, update); | ||
async function update() { | ||
await nextTick(); | ||
const options = { | ||
...props.algolia, | ||
...props.algolia.locales?.[localeIndex.value], | ||
}; | ||
const rawFacetFilters = options.searchParameters?.facetFilters ?? []; | ||
const facetFilters = [ | ||
...(Array.isArray(rawFacetFilters) | ||
? rawFacetFilters | ||
: [rawFacetFilters] | ||
).filter(f => !f.startsWith('lang:')), | ||
`lang:${lang.value}`, | ||
]; | ||
initialize({ | ||
...options, | ||
searchParameters: { | ||
...options.searchParameters, | ||
facetFilters, | ||
}, | ||
}); | ||
} | ||
function initialize(userOptions = {}) { | ||
const options = Object.assign({}, userOptions, { | ||
container: '#docsearch', | ||
navigator: { | ||
navigate({itemUrl}) { | ||
const {pathname: hitPathname} = new URL(window.location.origin + itemUrl); | ||
// router doesn't handle same-page navigation so we use the native | ||
// browser location API for anchor navigation | ||
if (route.path === hitPathname) window.location.assign(window.location.origin + itemUrl); | ||
else router.go(itemUrl); | ||
}, | ||
}, | ||
transformItems(items) { | ||
console.log(items); | ||
return items.map(item => Object.assign({}, item, {url: getRelativePath(item.url)})); | ||
}, | ||
hitComponent({hit, children}) { | ||
return { | ||
__v: null, | ||
type: 'a', | ||
ref: undefined, | ||
constructor: undefined, | ||
target: '_blank', | ||
key: undefined, | ||
props: {href: hit.url, children, target: '_self'}, | ||
}; | ||
}, | ||
}); | ||
docsearch(options); | ||
} | ||
function getRelativePath(url) { | ||
const {pathname, hash} = new URL(url, location.origin); | ||
return pathname.replace(/\.html$/, site.value.cleanUrls ? '' : '.html') + hash; | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.