mirror of
https://github.com/ueberdosis/tiptap.git
synced 2024-12-15 11:09:01 +08:00
added replace and replaceAll commands
This commit is contained in:
parent
525619ad26
commit
2544e40f99
@ -121,9 +121,16 @@
|
||||
placeholder="Search..."
|
||||
type="text"
|
||||
v-model="searchTerm"
|
||||
>
|
||||
><input
|
||||
@keydown.enter.prevent="editor.commands.replace(replaceWith)"
|
||||
placeholder="Replace..."
|
||||
type="text"
|
||||
v-model="replaceWith"
|
||||
>
|
||||
<button @click="editor.commands.find(searchTerm)">Find</button>
|
||||
<button @click="editor.commands.clearSearch()">Clear</button>
|
||||
<button @click="editor.commands.replace(replaceWith)">Replace</button>
|
||||
<button @click="editor.commands.replaceAll(replaceWith)">Replace All</button>
|
||||
</div>
|
||||
</span>
|
||||
|
||||
@ -168,6 +175,7 @@ export default {
|
||||
return {
|
||||
searching: false,
|
||||
searchTerm: null,
|
||||
replaceWith: null,
|
||||
editor: new Editor({
|
||||
extensions: [
|
||||
new Blockquote(),
|
||||
|
@ -47,6 +47,8 @@ export default class Search extends Extension {
|
||||
commands() {
|
||||
return {
|
||||
find: attrs => this.find(attrs),
|
||||
replace: attrs => this.replace(attrs),
|
||||
replaceAll: attrs => this.replaceAll(attrs),
|
||||
clearSearch: () => this.clear(),
|
||||
toggleSearch: () => this.toggleSearch(),
|
||||
}
|
||||
@ -104,6 +106,40 @@ export default class Search extends Extension {
|
||||
})
|
||||
}
|
||||
|
||||
replace(replace) {
|
||||
return (state, dispatch) => {
|
||||
const { from, to } = this.results[0]
|
||||
|
||||
dispatch(state.tr.insertText(replace, from, to))
|
||||
}
|
||||
}
|
||||
|
||||
rebaseNextResult(replace, index) {
|
||||
const nextIndex = index + 1
|
||||
if (!this.results[nextIndex]) return
|
||||
|
||||
const nextStep = this.results[nextIndex]
|
||||
const { from, to } = nextStep
|
||||
const offset = (to - from - replace.length) * nextIndex
|
||||
|
||||
this.results[nextIndex] = {
|
||||
to: to - offset,
|
||||
from: from - offset,
|
||||
}
|
||||
}
|
||||
|
||||
replaceAll(replace) {
|
||||
return ({ tr }, dispatch) => {
|
||||
this.results.forEach(({ from, to }, index) => {
|
||||
tr.insertText(replace, from, to)
|
||||
|
||||
this.rebaseNextResult(replace, index)
|
||||
})
|
||||
|
||||
dispatch(tr)
|
||||
}
|
||||
}
|
||||
|
||||
find(searchTerm) {
|
||||
return (state, dispatch) => {
|
||||
this.searchTerm = (this.options.disableRegex) ? searchTerm.replace(/[-/\\^$*+?.()|[\]{}]/g, '\\$&') : searchTerm
|
||||
|
Loading…
Reference in New Issue
Block a user