feat: search
This commit is contained in:
229
components/app/Lunr.vue
Normal file
229
components/app/Lunr.vue
Normal file
@@ -0,0 +1,229 @@
|
||||
<template>
|
||||
<div key="outputHash">
|
||||
<div
|
||||
v-for="(shortcut, shortcutIndex) in theOutput"
|
||||
:key="`shortcut-${shortcutIndex}`"
|
||||
class="
|
||||
rounded
|
||||
cursor-pointer
|
||||
flex
|
||||
py-2
|
||||
px-4
|
||||
transition
|
||||
items-center
|
||||
group
|
||||
hover:bg-primaryLight
|
||||
"
|
||||
@click="$emit('action', shortcut.action)"
|
||||
>
|
||||
<i class="mr-4 opacity-75 material-icons group-hover:opacity-100">
|
||||
{{ shortcut.icon }}
|
||||
</i>
|
||||
<span class="flex flex-1 mr-4 group-hover:text-secondaryDark">
|
||||
{{ $t(shortcut.label) }}
|
||||
</span>
|
||||
<span
|
||||
v-for="(key, keyIndex) in shortcut.keys"
|
||||
:key="`shortcut-${shortcutIndex}-key-${keyIndex}`"
|
||||
class="shortcut-key"
|
||||
>
|
||||
{{ key }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import lunr from "lunr"
|
||||
|
||||
export default {
|
||||
props: {
|
||||
input: {
|
||||
type: Array,
|
||||
required: true,
|
||||
},
|
||||
search: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
limit: {
|
||||
type: Number,
|
||||
default: 1000,
|
||||
},
|
||||
stopWords: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
log: {
|
||||
type: Boolean,
|
||||
default: false,
|
||||
},
|
||||
fields: {
|
||||
type: Object,
|
||||
default() {
|
||||
if (typeof this.input[0] === "object") {
|
||||
return this.input[0]
|
||||
}
|
||||
return {}
|
||||
},
|
||||
},
|
||||
perpendKey: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
outputHash: "",
|
||||
theOutput: [],
|
||||
cache: {},
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
hashInput() {
|
||||
return this.hashThis(JSON.stringify(this.input))
|
||||
},
|
||||
idx() {
|
||||
if (!this.input[0]) return {}
|
||||
const loaded = this.cache[this.hashInput]
|
||||
return loaded ? lunr.Index.load(loaded) : this.makeIndex(this.hashInput)
|
||||
},
|
||||
},
|
||||
watch: {
|
||||
search: {
|
||||
handler(search = "") {
|
||||
if (
|
||||
(!search.trim() || search === "undefined") &&
|
||||
Array.isArray(this.input)
|
||||
) {
|
||||
this.$emit("results-length", this.input.length)
|
||||
this.$emit("results", this.input.slice(0, this.limit))
|
||||
this.theOutput = this.input.slice(0, this.limit)
|
||||
return
|
||||
}
|
||||
const update = (output) => {
|
||||
if (output.then) {
|
||||
const that = this
|
||||
return output.then((newOutput) => {
|
||||
const hash = that.hashThis(JSON.stringify(newOutput))
|
||||
if (that.outputHash === hash) return
|
||||
that.outputHash = hash
|
||||
that.$emit("results-length", newOutput.length)
|
||||
that.$emit("results", newOutput.slice(0, that.limit))
|
||||
that.theOutput = newOutput.slice(0, that.limit)
|
||||
})
|
||||
}
|
||||
const hash = this.hashThis(JSON.stringify(output))
|
||||
if (this.outputHash === hash) return
|
||||
this.outputHash = hash
|
||||
try {
|
||||
this.$emit("results-length", output.length)
|
||||
this.$emit("results", output.slice(0, this.limit))
|
||||
this.theOutput = output.slice(0, this.limit)
|
||||
} catch (e) {
|
||||
console.warn(e, "???", output)
|
||||
}
|
||||
}
|
||||
if (this.output.then) {
|
||||
return this.output(search).then(async (output) => {
|
||||
update(await output)
|
||||
})
|
||||
}
|
||||
update(this.output(search))
|
||||
},
|
||||
immediate: true,
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
async output(search) {
|
||||
const that = this
|
||||
if ((await this.idx) && (await this.idx.search)) {
|
||||
return this.idx.search(`${search}*`).map(function (valu) {
|
||||
return that.input[+valu.ref]
|
||||
}, that)
|
||||
}
|
||||
if (this.idx.then)
|
||||
return this.idx.then((index) => {
|
||||
return index.search(`${search}*`).map(function (valu) {
|
||||
return that.input[+valu.ref]
|
||||
}, that)
|
||||
})
|
||||
// no index
|
||||
return this.input
|
||||
},
|
||||
makeIndex(hashInput) {
|
||||
const that = this
|
||||
if (this.input[0] && this.search) {
|
||||
const first = this.fields
|
||||
// if (this.log) console.log("feilds from ", first)
|
||||
|
||||
const stopWords = this.stopWords
|
||||
const documents = this.input.map(function (val, i) {
|
||||
const doc = {}
|
||||
const seen = []
|
||||
function replacer(key, value) {
|
||||
if (key[0] === "_") {
|
||||
return
|
||||
} else if (typeof value === "object" && value !== null) {
|
||||
if (seen.includes(key)) return
|
||||
else seen.push(key)
|
||||
}
|
||||
return value
|
||||
}
|
||||
Object.keys(val).forEach(function (key) {
|
||||
doc[key] = JSON.stringify(val[key], replacer)
|
||||
})
|
||||
return { __id: i, ...val }
|
||||
})
|
||||
const idx = lunr(function () {
|
||||
this.ref("__id")
|
||||
if (!stopWords) {
|
||||
this.pipeline.remove(lunr.stopWordFilter)
|
||||
this.pipeline.remove(lunr.stemmer)
|
||||
}
|
||||
Object.keys(first).forEach(function (key) {
|
||||
if (key[0] !== "_") {
|
||||
this.field(key)
|
||||
}
|
||||
}, this)
|
||||
documents.forEach(function (doc) {
|
||||
this.add(doc)
|
||||
}, this)
|
||||
// if (that.log) console.log(this)
|
||||
})
|
||||
that.cache[hashInput] = idx.toJSON()
|
||||
return idx
|
||||
} else {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
hashThis(message, n = 8) {
|
||||
if (+n === 0) return message
|
||||
let hash = 0
|
||||
if (message.length === 0) return this.hashThis(this.hex32(hash), n - 1)
|
||||
for (let i = 0; i < message.length; i++) {
|
||||
const char = message.charCodeAt(i)
|
||||
hash = (hash << 5) - hash + char
|
||||
hash = hash & hash // Convert to 32bit integer
|
||||
}
|
||||
return this.hashThis(this.hex32(hash), n - 1)
|
||||
},
|
||||
hex32(val) {
|
||||
val &= 0xffffffff
|
||||
const hex = val.toString(16).toUpperCase()
|
||||
return ("00000000" + hex).slice(-8)
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.shortcut-key {
|
||||
@apply bg-dividerLight;
|
||||
@apply rounded;
|
||||
@apply ml-2;
|
||||
@apply py-1;
|
||||
@apply px-2;
|
||||
@apply inline-flex;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user