mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-19 07:19:58 +00:00
feat: custom emoji font in editor
This commit is contained in:
parent
e97068f000
commit
8f68fa12e4
7 changed files with 153 additions and 86 deletions
|
@ -65,11 +65,11 @@ async function handlePaste(evt: ClipboardEvent) {
|
||||||
await uploadAttachments(Array.from(files))
|
await uploadAttachments(Array.from(files))
|
||||||
}
|
}
|
||||||
|
|
||||||
function insertText(text: string) {
|
function insertEmoji(name: string) {
|
||||||
editor.value?.chain().insertContent(text).focus().run()
|
editor.value?.chain().focus().insertEmoji(name).run()
|
||||||
}
|
}
|
||||||
function insertEmoji(image: any) {
|
function insertCustomEmoji(image: any) {
|
||||||
editor.value?.chain().focus().setEmoji(image).run()
|
editor.value?.chain().focus().insertCustomEmoji(image).run()
|
||||||
}
|
}
|
||||||
|
|
||||||
async function pickAttachments() {
|
async function pickAttachments() {
|
||||||
|
@ -196,7 +196,7 @@ defineExpose({
|
||||||
<div border="b dashed gray/40" />
|
<div border="b dashed gray/40" />
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<div flex gap-4 flex-1>
|
<div flex gap-3 flex-1>
|
||||||
<NuxtLink :to="getAccountRoute(currentUser.account)">
|
<NuxtLink :to="getAccountRoute(currentUser.account)">
|
||||||
<AccountAvatar :account="currentUser.account" account-avatar-normal />
|
<AccountAvatar :account="currentUser.account" account-avatar-normal />
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
|
@ -280,7 +280,10 @@ defineExpose({
|
||||||
v-if="shouldExpanded" flex="~ gap-2 1" m="l--1" pt-2 justify="between" max-full
|
v-if="shouldExpanded" flex="~ gap-2 1" m="l--1" pt-2 justify="between" max-full
|
||||||
border="t base"
|
border="t base"
|
||||||
>
|
>
|
||||||
<PublishEmojiPicker @select="insertText" @select-custom="insertEmoji" />
|
<PublishEmojiPicker
|
||||||
|
@select="insertEmoji"
|
||||||
|
@select-custom="insertCustomEmoji"
|
||||||
|
/>
|
||||||
|
|
||||||
<CommonTooltip placement="bottom" :content="$t('tooltip.add_media')">
|
<CommonTooltip placement="bottom" :content="$t('tooltip.add_media')">
|
||||||
<button btn-action-icon :aria-label="$t('tooltip.add_media')" @click="pickAttachments">
|
<button btn-action-icon :aria-label="$t('tooltip.add_media')" @click="pickAttachments">
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
|
// @unimport-disable
|
||||||
import type { Emoji } from 'masto'
|
import type { Emoji } from 'masto'
|
||||||
import type { Node } from 'ultrahtml'
|
import type { Node } from 'ultrahtml'
|
||||||
import { TEXT_NODE, parse, render, walkSync } from 'ultrahtml'
|
import { TEXT_NODE, parse, render, walkSync } from 'ultrahtml'
|
||||||
|
|
||||||
const EMOJI_REGEX = /(\p{Emoji_Presentation})/ug
|
export const EMOJI_REGEX = /(\p{Emoji_Presentation})/ug
|
||||||
|
|
||||||
const decoder = process.client ? document.createElement('textarea') : null as any as HTMLTextAreaElement
|
const decoder = process.client ? document.createElement('textarea') : null as any as HTMLTextAreaElement
|
||||||
export function decodeHtml(text: string) {
|
export function decodeHtml(text: string) {
|
||||||
|
@ -120,5 +121,8 @@ export function treeToText(input: Node): string {
|
||||||
if (input.name === 'img' && input.attributes.class?.includes('custom-emoji'))
|
if (input.name === 'img' && input.attributes.class?.includes('custom-emoji'))
|
||||||
return `:${input.attributes['data-emoji-id']}:`
|
return `:${input.attributes['data-emoji-id']}:`
|
||||||
|
|
||||||
|
if (input.name === 'em-emoji')
|
||||||
|
return `${input.attributes.native}`
|
||||||
|
|
||||||
return pre + body + post
|
return pre + body + post
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import type { Emoji } from 'masto'
|
import type { Emoji } from 'masto'
|
||||||
import type { CustomEmojisInfo } from './push-notifications/types'
|
import type { CustomEmojisInfo } from './push-notifications/types'
|
||||||
import { STORAGE_KEY_CUSTOM_EMOJIS } from '~/constants'
|
import { STORAGE_KEY_CUSTOM_EMOJIS } from '~/constants'
|
||||||
|
import { useUserLocalStorage } from '~/composables/users'
|
||||||
|
|
||||||
const TTL = 1000 * 60 * 60 * 24 // 1 day
|
const TTL = 1000 * 60 * 60 * 24 // 1 day
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,7 @@ import { Plugin } from 'prosemirror-state'
|
||||||
import type { Ref } from 'vue'
|
import type { Ref } from 'vue'
|
||||||
import { HashSuggestion, MentionSuggestion } from './tiptap/suggestion'
|
import { HashSuggestion, MentionSuggestion } from './tiptap/suggestion'
|
||||||
import { CodeBlockShiki } from './tiptap/shiki'
|
import { CodeBlockShiki } from './tiptap/shiki'
|
||||||
|
import { CustomEmoji } from './tiptap/custom-emoji'
|
||||||
import { Emoji } from './tiptap/emoji'
|
import { Emoji } from './tiptap/emoji'
|
||||||
|
|
||||||
export interface UseTiptapOptions {
|
export interface UseTiptapOptions {
|
||||||
|
@ -43,7 +44,7 @@ export function useTiptap(options: UseTiptapOptions) {
|
||||||
Code,
|
Code,
|
||||||
Text,
|
Text,
|
||||||
Emoji,
|
Emoji,
|
||||||
Emoji.configure({
|
CustomEmoji.configure({
|
||||||
inline: true,
|
inline: true,
|
||||||
HTMLAttributes: {
|
HTMLAttributes: {
|
||||||
class: 'custom-emoji',
|
class: 'custom-emoji',
|
||||||
|
|
112
composables/tiptap/custom-emoji.ts
Normal file
112
composables/tiptap/custom-emoji.ts
Normal file
|
@ -0,0 +1,112 @@
|
||||||
|
import {
|
||||||
|
Node,
|
||||||
|
mergeAttributes,
|
||||||
|
nodeInputRule,
|
||||||
|
} from '@tiptap/core'
|
||||||
|
|
||||||
|
export interface EmojiOptions {
|
||||||
|
inline: boolean
|
||||||
|
allowBase64: boolean
|
||||||
|
HTMLAttributes: Record<string, any>
|
||||||
|
}
|
||||||
|
|
||||||
|
declare module '@tiptap/core' {
|
||||||
|
interface Commands<ReturnType> {
|
||||||
|
emoji: {
|
||||||
|
/**
|
||||||
|
* Insert a custom emoji.
|
||||||
|
*/
|
||||||
|
insertCustomEmoji: (options: { src: string; alt?: string; title?: string }) => ReturnType
|
||||||
|
/**
|
||||||
|
* Insert a emoji.
|
||||||
|
*/
|
||||||
|
insertEmoji: (native: string) => ReturnType
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export const inputRegex = /(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/
|
||||||
|
|
||||||
|
export const CustomEmoji = Node.create<EmojiOptions>({
|
||||||
|
name: 'custom-emoji',
|
||||||
|
|
||||||
|
addOptions() {
|
||||||
|
return {
|
||||||
|
inline: false,
|
||||||
|
allowBase64: false,
|
||||||
|
HTMLAttributes: {},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
inline() {
|
||||||
|
return this.options.inline
|
||||||
|
},
|
||||||
|
|
||||||
|
group() {
|
||||||
|
return this.options.inline ? 'inline' : 'block'
|
||||||
|
},
|
||||||
|
|
||||||
|
draggable: false,
|
||||||
|
|
||||||
|
addAttributes() {
|
||||||
|
return {
|
||||||
|
'src': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
'alt': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
'title': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
'width': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
'height': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
'data-emoji-id': {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
parseHTML() {
|
||||||
|
return [
|
||||||
|
{
|
||||||
|
tag: this.options.allowBase64
|
||||||
|
? 'img[src]'
|
||||||
|
: 'img[src]:not([src^="data:"])',
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
|
||||||
|
renderHTML({ HTMLAttributes }) {
|
||||||
|
return ['img', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes)]
|
||||||
|
},
|
||||||
|
|
||||||
|
addCommands() {
|
||||||
|
return {
|
||||||
|
insertCustomEmoji: options => ({ commands }) => {
|
||||||
|
return commands.insertContent({
|
||||||
|
type: this.name,
|
||||||
|
attrs: options,
|
||||||
|
})
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
addInputRules() {
|
||||||
|
return [
|
||||||
|
nodeInputRule({
|
||||||
|
find: inputRegex,
|
||||||
|
type: this.type,
|
||||||
|
getAttributes: (match) => {
|
||||||
|
const [,, alt, src, title] = match
|
||||||
|
|
||||||
|
return { src, alt, title }
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
]
|
||||||
|
},
|
||||||
|
})
|
|
@ -4,89 +4,41 @@ import {
|
||||||
nodeInputRule,
|
nodeInputRule,
|
||||||
} from '@tiptap/core'
|
} from '@tiptap/core'
|
||||||
|
|
||||||
export interface EmojiOptions {
|
export const Emoji = Node.create({
|
||||||
inline: boolean
|
name: 'em-emoji',
|
||||||
allowBase64: boolean
|
|
||||||
HTMLAttributes: Record<string, any>
|
|
||||||
}
|
|
||||||
|
|
||||||
declare module '@tiptap/core' {
|
|
||||||
interface Commands<ReturnType> {
|
|
||||||
emoji: {
|
|
||||||
/**
|
|
||||||
* Add an emoji.
|
|
||||||
*/
|
|
||||||
setEmoji: (options: { src: string; alt?: string; title?: string }) => ReturnType
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export const inputRegex = /(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/
|
|
||||||
|
|
||||||
export const Emoji = Node.create<EmojiOptions>({
|
|
||||||
name: 'custom-emoji',
|
|
||||||
|
|
||||||
addOptions() {
|
|
||||||
return {
|
|
||||||
inline: false,
|
|
||||||
allowBase64: false,
|
|
||||||
HTMLAttributes: {},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
inline() {
|
|
||||||
return this.options.inline
|
|
||||||
},
|
|
||||||
|
|
||||||
group() {
|
|
||||||
return this.options.inline ? 'inline' : 'block'
|
|
||||||
},
|
|
||||||
|
|
||||||
|
inline: () => true,
|
||||||
|
group: () => 'inline',
|
||||||
draggable: false,
|
draggable: false,
|
||||||
|
|
||||||
addAttributes() {
|
|
||||||
return {
|
|
||||||
'src': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
'alt': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
'title': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
'width': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
'height': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
'data-emoji-id': {
|
|
||||||
default: null,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
parseHTML() {
|
parseHTML() {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
tag: this.options.allowBase64
|
tag: 'em-emoji[native]',
|
||||||
? 'img[src]'
|
|
||||||
: 'img[src]:not([src^="data:"])',
|
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
||||||
renderHTML({ HTMLAttributes }) {
|
addAttributes() {
|
||||||
return ['img', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes)]
|
return {
|
||||||
|
native: {
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
renderHTML(args) {
|
||||||
|
return ['em-emoji', mergeAttributes(this.options.HTMLAttributes, args.HTMLAttributes)]
|
||||||
},
|
},
|
||||||
|
|
||||||
addCommands() {
|
addCommands() {
|
||||||
return {
|
return {
|
||||||
setEmoji: options => ({ commands }) => {
|
insertEmoji: name => ({ commands }) => {
|
||||||
return commands.insertContent({
|
return commands.insertContent({
|
||||||
type: this.name,
|
type: this.name,
|
||||||
attrs: options,
|
attrs: {
|
||||||
|
native: name,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
@ -95,12 +47,11 @@ export const Emoji = Node.create<EmojiOptions>({
|
||||||
addInputRules() {
|
addInputRules() {
|
||||||
return [
|
return [
|
||||||
nodeInputRule({
|
nodeInputRule({
|
||||||
find: inputRegex,
|
find: EMOJI_REGEX,
|
||||||
type: this.type,
|
type: this.type,
|
||||||
getAttributes: (match) => {
|
getAttributes: (match) => {
|
||||||
const [,, alt, src, title] = match
|
const [native] = match
|
||||||
|
return { native }
|
||||||
return { src, alt, title }
|
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
]
|
]
|
||||||
|
|
|
@ -85,6 +85,7 @@ body {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
max-height: 1.3em;
|
max-height: 1.3em;
|
||||||
max-width: 1.3em;
|
max-width: 1.3em;
|
||||||
|
margin: 0 0.2em;
|
||||||
vertical-align: text-bottom;
|
vertical-align: text-bottom;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,12 +134,6 @@ body {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-editor.content-rich {
|
|
||||||
p {
|
|
||||||
--at-apply: my-0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.skeleton-loading-bg {
|
.skeleton-loading-bg {
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
90deg,
|
90deg,
|
||||||
|
|
Loading…
Reference in a new issue