tiptap/examples/Components/Routes/Suggestions/index.vue

312 lines
6.9 KiB
Vue
Raw Normal View History

2018-09-02 02:51:17 +08:00
<template>
<div>
2018-10-24 05:16:51 +08:00
<div class="editor">
<editor-content class="editor__content" :editor="editor" />
</div>
2018-09-25 13:43:21 +08:00
2018-09-29 15:28:46 +08:00
<div class="suggestion-list" v-show="showSuggestions" ref="suggestions">
<template v-if="hasResults">
<div
v-for="(user, index) in filteredUsers"
:key="user.id"
class="suggestion-list__item"
:class="{ 'is-selected': navigatedUserIndex === index }"
@click="selectUser(user)"
>
{{ user.name }}
</div>
</template>
2018-09-29 18:58:40 +08:00
<div v-else class="suggestion-list__item is-empty">
No users found
2018-09-25 14:37:39 +08:00
</div>
2018-09-25 13:43:21 +08:00
</div>
2018-09-29 18:33:18 +08:00
2018-09-02 02:51:17 +08:00
</div>
</template>
<script>
2018-09-25 14:37:39 +08:00
import Fuse from 'fuse.js'
2018-09-29 04:39:26 +08:00
import tippy from 'tippy.js'
2018-10-24 05:16:51 +08:00
import { Editor, EditorContent } from 'tiptap'
2018-09-02 02:51:17 +08:00
import {
2018-10-24 13:46:47 +08:00
HardBreak,
Heading,
Mention,
Code,
Bold,
Italic,
2018-09-02 02:51:17 +08:00
} from 'tiptap-extensions'
export default {
2018-09-29 18:33:18 +08:00
2018-09-02 02:51:17 +08:00
components: {
2018-10-24 05:16:51 +08:00
EditorContent,
2018-09-02 02:51:17 +08:00
},
2018-09-29 18:33:18 +08:00
2018-09-02 02:51:17 +08:00
data() {
return {
2018-10-24 05:16:51 +08:00
editor: new Editor({
extensions: [
2018-10-24 13:46:47 +08:00
new HardBreak(),
new Heading({ maxLevel: 3 }),
new Mention({
2018-10-24 05:16:51 +08:00
// a list of all suggested items
items: [
{ id: 1, name: 'Philipp Kühn' },
{ id: 2, name: 'Hans Pagel' },
{ id: 3, name: 'Kris Siepert' },
{ id: 4, name: 'Justin Schueler' },
],
// is called when a suggestion starts
onEnter: ({ items, query, range, command, virtualNode }) => {
this.query = query
this.filteredUsers = items
this.suggestionRange = range
this.renderPopup(virtualNode)
// we save the command for inserting a selected mention
// this allows us to call it inside of our custom popup
// via keyboard navigation and on click
this.insertMention = command
},
// is called when a suggestion has changed
onChange: ({ items, query, range, virtualNode }) => {
this.query = query
this.filteredUsers = items
this.suggestionRange = range
this.navigatedUserIndex = 0
this.renderPopup(virtualNode)
},
// is called when a suggestion is cancelled
onExit: () => {
// reset all saved values
this.query = null
this.filteredUsers = []
this.suggestionRange = null
this.navigatedUserIndex = 0
this.destroyPopup()
},
// is called on every keyDown event while a suggestion is active
onKeyDown: ({ event }) => {
// pressing up arrow
if (event.keyCode === 38) {
this.upHandler()
return true
}
// pressing down arrow
if (event.keyCode === 40) {
this.downHandler()
return true
}
// pressing enter
if (event.keyCode === 13) {
this.enterHandler()
return true
}
return false
},
// is called when a suggestion has changed
// this function is optional because there is basic filtering built-in
// you can overwrite it if you prefer your own filtering
// in this example we use fuse.js with support for fuzzy search
onFilter: (items, query) => {
if (!query) {
return items
}
const fuse = new Fuse(items, {
threshold: 0.2,
keys: ['name'],
})
return fuse.search(query)
},
}),
2018-10-24 13:46:47 +08:00
new Code(),
new Bold(),
new Italic(),
2018-10-24 05:16:51 +08:00
],
content: `
<h2>
Suggestions
</h2>
<p>
Sometimes it's useful to <strong>mention</strong> someone. That's a feature we're very used to. Under the hood this technique can also be used for other features likes <strong>hashtags</strong> and <strong>commands</strong> lets call it <em>suggestions</em>.
</p>
<p>
This is an example how to mention some users like <span data-mention-id="1">Philipp Kühn</span> or <span data-mention-id="2">Hans Pagel</span>. Try to type <code>@</code> and a popup (rendered with tippy.js) will appear. You can navigate with arrow keys through a list of suggestions.
</p>
`,
}),
2018-09-25 14:37:39 +08:00
query: null,
2018-09-29 18:33:18 +08:00
suggestionRange: null,
2018-09-27 17:35:32 +08:00
filteredUsers: [],
2018-09-27 19:06:24 +08:00
navigatedUserIndex: 0,
2018-09-28 19:31:01 +08:00
insertMention: () => {},
2018-09-02 02:51:17 +08:00
}
},
2018-09-29 18:33:18 +08:00
2018-09-29 15:28:46 +08:00
computed: {
2018-09-29 18:33:18 +08:00
2018-09-29 15:28:46 +08:00
hasResults() {
return this.filteredUsers.length
},
2018-09-29 18:33:18 +08:00
2018-09-29 15:28:46 +08:00
showSuggestions() {
return this.query || this.hasResults
},
2018-09-29 18:33:18 +08:00
2018-09-29 15:28:46 +08:00
},
2018-09-29 18:33:18 +08:00
2018-09-25 13:43:21 +08:00
methods: {
2018-09-29 18:33:18 +08:00
// navigate to the previous item
// if it's the first item, navigate to the last one
2018-09-27 19:06:24 +08:00
upHandler() {
this.navigatedUserIndex = ((this.navigatedUserIndex + this.filteredUsers.length) - 1) % this.filteredUsers.length
},
2018-09-29 18:33:18 +08:00
// navigate to the next item
// if it's the last item, navigate to the first one
2018-09-27 19:06:24 +08:00
downHandler() {
this.navigatedUserIndex = (this.navigatedUserIndex + 1) % this.filteredUsers.length
},
2018-09-29 18:33:18 +08:00
2018-09-27 19:06:24 +08:00
enterHandler() {
const user = this.filteredUsers[this.navigatedUserIndex]
2018-09-28 19:33:40 +08:00
2018-09-28 19:32:36 +08:00
if (user) {
this.selectUser(user)
}
2018-09-27 19:06:24 +08:00
},
2018-09-29 18:33:18 +08:00
// we have to replace our suggestion text with a mention
// so it's important to pass also the position of your suggestion text
2018-09-25 13:43:21 +08:00
selectUser(user) {
2018-09-28 19:31:01 +08:00
this.insertMention({
2018-09-29 18:34:11 +08:00
range: this.suggestionRange,
2018-09-28 19:31:01 +08:00
attrs: {
id: user.id,
label: user.name,
},
2018-09-25 13:43:21 +08:00
})
2018-10-24 05:16:51 +08:00
this.editor.focus()
2018-09-25 13:43:21 +08:00
},
2018-09-29 18:33:18 +08:00
// renders a popup with suggestions
// tiptap provides a virtualNode object for using popper.js (or tippy.js) for popups
2018-09-29 05:05:34 +08:00
renderPopup(node) {
if (this.popup) {
2018-09-29 04:39:26 +08:00
return
}
2018-09-29 05:05:34 +08:00
this.popup = tippy(node, {
2018-09-29 04:39:26 +08:00
content: this.$refs.suggestions,
trigger: 'mouseenter',
interactive: true,
theme: 'dark',
placement: 'top-start',
performance: true,
inertia: true,
duration: [400, 200],
showOnInit: true,
arrow: true,
arrowType: 'round',
})
},
2018-09-29 18:33:18 +08:00
2018-09-29 05:05:34 +08:00
destroyPopup() {
if (this.popup) {
this.popup.destroyAll()
this.popup = null
2018-09-29 04:39:26 +08:00
}
},
2018-09-29 18:33:18 +08:00
2018-09-25 13:43:21 +08:00
},
2018-09-02 02:51:17 +08:00
}
2018-09-06 04:09:18 +08:00
</script>
<style lang="scss">
@import "~variables";
2018-09-29 04:39:26 +08:00
@import '~modules/tippy.js/dist/tippy.css';
2018-09-06 04:09:18 +08:00
.mention {
background: rgba($color-black, 0.1);
color: rgba($color-black, 0.6);
font-size: 0.8rem;
font-weight: bold;
border-radius: 5px;
padding: 0.2rem 0.5rem;
2018-09-28 19:46:39 +08:00
white-space: nowrap;
2018-09-06 04:09:18 +08:00
}
2018-09-25 13:43:21 +08:00
2018-09-28 19:46:39 +08:00
.mention-suggestion {
color: rgba($color-black, 0.6);
}
.suggestion-list {
padding: 0.2rem;
border: 2px solid rgba($color-black, 0.1);
font-size: 0.8rem;
font-weight: bold;
&__no-results {
padding: 0.2rem 0.5rem;
}
2018-09-27 19:06:24 +08:00
&__item {
2018-09-28 19:46:39 +08:00
border-radius: 5px;
padding: 0.2rem 0.5rem;
2018-09-29 15:40:36 +08:00
margin-bottom: 0.2rem;
cursor: pointer;
2018-09-28 19:46:39 +08:00
2018-09-29 15:40:36 +08:00
&:last-child {
margin-bottom: 0;
}
&.is-selected,
&:hover {
2018-09-29 04:39:26 +08:00
background-color: rgba($color-white, 0.2);
2018-09-27 19:06:24 +08:00
}
2018-09-29 18:58:40 +08:00
&.is-empty {
opacity: 0.5;
}
2018-09-27 19:06:24 +08:00
}
2018-09-25 13:43:21 +08:00
}
2018-09-29 04:39:26 +08:00
.tippy-tooltip.dark-theme {
background-color: $color-black;
padding: 0;
font-size: 1rem;
text-align: inherit;
color: $color-white;
border-radius: 5px;
.tippy-backdrop {
display: none;
}
.tippy-roundarrow {
fill: $color-black;
}
.tippy-popper[x-placement^=top] & .tippy-arrow {
border-top-color: $color-black;
}
.tippy-popper[x-placement^=bottom] & .tippy-arrow {
border-bottom-color: $color-black;
}
.tippy-popper[x-placement^=left] & .tippy-arrow {
border-left-color: $color-black;
}
.tippy-popper[x-placement^=right] & .tippy-arrow {
border-right-color: $color-black;
}
}
2018-09-06 04:09:18 +08:00
</style>