@tiptap/extension-code-block-lowlight 3.0.0-next.3 → 3.0.0-next.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +21 -0
- package/README.md +5 -1
- package/dist/index.cjs +17 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1211 -1
- package/dist/index.d.ts +1211 -1
- package/dist/index.js +14 -8
- package/dist/index.js.map +1 -1
- package/package.json +12 -8
- package/src/code-block-lowlight.ts +2 -2
- package/src/lowlight-plugin.ts +23 -22
package/dist/index.js
CHANGED
|
@@ -59,9 +59,7 @@ function LowlightPlugin({
|
|
|
59
59
|
defaultLanguage
|
|
60
60
|
}) {
|
|
61
61
|
if (!["highlight", "highlightAuto", "listLanguages"].every((api) => isFunction(lowlight[api]))) {
|
|
62
|
-
throw Error(
|
|
63
|
-
"You should provide an instance of lowlight to use the code-block-lowlight extension"
|
|
64
|
-
);
|
|
62
|
+
throw Error("You should provide an instance of lowlight to use the code-block-lowlight extension");
|
|
65
63
|
}
|
|
66
64
|
const lowlightPlugin = new Plugin({
|
|
67
65
|
key: new PluginKey("lowlight"),
|
|
@@ -77,13 +75,21 @@ function LowlightPlugin({
|
|
|
77
75
|
const newNodeName = newState.selection.$head.parent.type.name;
|
|
78
76
|
const oldNodes = findChildren(oldState.doc, (node) => node.type.name === name);
|
|
79
77
|
const newNodes = findChildren(newState.doc, (node) => node.type.name === name);
|
|
80
|
-
if (transaction.docChanged &&
|
|
78
|
+
if (transaction.docChanged && // Apply decorations if:
|
|
79
|
+
// selection includes named node,
|
|
80
|
+
([oldNodeName, newNodeName].includes(name) || // OR transaction adds/removes named node,
|
|
81
|
+
newNodes.length !== oldNodes.length || // OR transaction has changes that completely encapsulte a node
|
|
82
|
+
// (for example, a transaction that affects the entire document).
|
|
83
|
+
// Such transactions can happen during collab syncing via y-prosemirror, for example.
|
|
84
|
+
transaction.steps.some((step) => {
|
|
81
85
|
return (
|
|
82
86
|
// @ts-ignore
|
|
83
|
-
step.from !== void 0 &&
|
|
87
|
+
step.from !== void 0 && // @ts-ignore
|
|
88
|
+
step.to !== void 0 && oldNodes.some((node) => {
|
|
84
89
|
return (
|
|
85
90
|
// @ts-ignore
|
|
86
|
-
node.pos >= step.from &&
|
|
91
|
+
node.pos >= step.from && // @ts-ignore
|
|
92
|
+
node.pos + node.node.nodeSize <= step.to
|
|
87
93
|
);
|
|
88
94
|
})
|
|
89
95
|
);
|
|
@@ -135,9 +141,9 @@ var CodeBlockLowlight = CodeBlock.extend({
|
|
|
135
141
|
});
|
|
136
142
|
|
|
137
143
|
// src/index.ts
|
|
138
|
-
var
|
|
144
|
+
var index_default = CodeBlockLowlight;
|
|
139
145
|
export {
|
|
140
146
|
CodeBlockLowlight,
|
|
141
|
-
|
|
147
|
+
index_default as default
|
|
142
148
|
};
|
|
143
149
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/code-block-lowlight.ts","../src/lowlight-plugin.ts","../src/index.ts"],"sourcesContent":["import CodeBlock, { CodeBlockOptions } from '@tiptap/extension-code-block'\n\nimport { LowlightPlugin } from './lowlight-plugin.js'\n\nexport interface CodeBlockLowlightOptions extends CodeBlockOptions {\n /**\n * The lowlight instance.\n */\n lowlight: any
|
|
1
|
+
{"version":3,"sources":["../src/code-block-lowlight.ts","../src/lowlight-plugin.ts","../src/index.ts"],"sourcesContent":["import CodeBlock, { CodeBlockOptions } from '@tiptap/extension-code-block'\n\nimport { LowlightPlugin } from './lowlight-plugin.js'\n\nexport interface CodeBlockLowlightOptions extends CodeBlockOptions {\n /**\n * The lowlight instance.\n */\n lowlight: any\n}\n\n/**\n * This extension allows you to highlight code blocks with lowlight.\n * @see https://tiptap.dev/api/nodes/code-block-lowlight\n */\nexport const CodeBlockLowlight = CodeBlock.extend<CodeBlockLowlightOptions>({\n addOptions() {\n return {\n ...this.parent?.(),\n lowlight: {},\n languageClassPrefix: 'language-',\n exitOnTripleEnter: true,\n exitOnArrowDown: true,\n defaultLanguage: null,\n HTMLAttributes: {},\n }\n },\n\n addProseMirrorPlugins() {\n return [\n ...(this.parent?.() || []),\n LowlightPlugin({\n name: this.name,\n lowlight: this.options.lowlight,\n defaultLanguage: this.options.defaultLanguage,\n }),\n ]\n },\n})\n","import { findChildren } from '@tiptap/core'\nimport { Node as ProsemirrorNode } from '@tiptap/pm/model'\nimport { Plugin, PluginKey } from '@tiptap/pm/state'\nimport { Decoration, DecorationSet } from '@tiptap/pm/view'\n// @ts-ignore\nimport highlight from 'highlight.js/lib/core'\n\nfunction parseNodes(nodes: any[], className: string[] = []): { text: string; classes: string[] }[] {\n return nodes\n .map(node => {\n const classes = [...className, ...(node.properties ? node.properties.className : [])]\n\n if (node.children) {\n return parseNodes(node.children, classes)\n }\n\n return {\n text: node.value,\n classes,\n }\n })\n .flat()\n}\n\nfunction getHighlightNodes(result: any) {\n // `.value` for lowlight v1, `.children` for lowlight v2\n return result.value || result.children || []\n}\n\nfunction registered(aliasOrLanguage: string) {\n return Boolean(highlight.getLanguage(aliasOrLanguage))\n}\n\nfunction getDecorations({\n doc,\n name,\n lowlight,\n defaultLanguage,\n}: {\n doc: ProsemirrorNode\n name: string\n lowlight: any\n defaultLanguage: string | null | undefined\n}) {\n const decorations: Decoration[] = []\n\n findChildren(doc, node => node.type.name === name).forEach(block => {\n let from = block.pos + 1\n const language = block.node.attrs.language || defaultLanguage\n const languages = lowlight.listLanguages()\n\n const nodes =\n language && (languages.includes(language) || registered(language) || lowlight.registered?.(language))\n ? getHighlightNodes(lowlight.highlight(language, block.node.textContent))\n : getHighlightNodes(lowlight.highlightAuto(block.node.textContent))\n\n parseNodes(nodes).forEach(node => {\n const to = from + node.text.length\n\n if (node.classes.length) {\n const decoration = Decoration.inline(from, to, {\n class: node.classes.join(' '),\n })\n\n decorations.push(decoration)\n }\n\n from = to\n })\n })\n\n return DecorationSet.create(doc, decorations)\n}\n\n// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type\nfunction isFunction(param: any): param is Function {\n return typeof param === 'function'\n}\n\nexport function LowlightPlugin({\n name,\n lowlight,\n defaultLanguage,\n}: {\n name: string\n lowlight: any\n defaultLanguage: string | null | undefined\n}) {\n if (!['highlight', 'highlightAuto', 'listLanguages'].every(api => isFunction(lowlight[api]))) {\n throw Error('You should provide an instance of lowlight to use the code-block-lowlight extension')\n }\n\n const lowlightPlugin: Plugin<any> = new Plugin({\n key: new PluginKey('lowlight'),\n\n state: {\n init: (_, { doc }) =>\n getDecorations({\n doc,\n name,\n lowlight,\n defaultLanguage,\n }),\n apply: (transaction, decorationSet, oldState, newState) => {\n const oldNodeName = oldState.selection.$head.parent.type.name\n const newNodeName = newState.selection.$head.parent.type.name\n const oldNodes = findChildren(oldState.doc, node => node.type.name === name)\n const newNodes = findChildren(newState.doc, node => node.type.name === name)\n\n if (\n transaction.docChanged &&\n // Apply decorations if:\n // selection includes named node,\n ([oldNodeName, newNodeName].includes(name) ||\n // OR transaction adds/removes named node,\n newNodes.length !== oldNodes.length ||\n // OR transaction has changes that completely encapsulte a node\n // (for example, a transaction that affects the entire document).\n // Such transactions can happen during collab syncing via y-prosemirror, for example.\n transaction.steps.some(step => {\n // @ts-ignore\n return (\n // @ts-ignore\n step.from !== undefined &&\n // @ts-ignore\n step.to !== undefined &&\n oldNodes.some(node => {\n // @ts-ignore\n return (\n // @ts-ignore\n node.pos >= step.from &&\n // @ts-ignore\n node.pos + node.node.nodeSize <= step.to\n )\n })\n )\n }))\n ) {\n return getDecorations({\n doc: transaction.doc,\n name,\n lowlight,\n defaultLanguage,\n })\n }\n\n return decorationSet.map(transaction.mapping, transaction.doc)\n },\n },\n\n props: {\n decorations(state) {\n return lowlightPlugin.getState(state)\n },\n },\n })\n\n return lowlightPlugin\n}\n","import { CodeBlockLowlight } from './code-block-lowlight.js'\n\nexport * from './code-block-lowlight.js'\n\nexport default CodeBlockLowlight\n"],"mappings":"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","names":[]}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tiptap/extension-code-block-lowlight",
|
|
3
3
|
"description": "code block extension for tiptap",
|
|
4
|
-
"version": "3.0.0-next.
|
|
4
|
+
"version": "3.0.0-next.5",
|
|
5
5
|
"homepage": "https://tiptap.dev",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"tiptap",
|
|
@@ -15,7 +15,10 @@
|
|
|
15
15
|
"type": "module",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": {
|
|
18
|
-
"types":
|
|
18
|
+
"types": {
|
|
19
|
+
"import": "./dist/index.d.ts",
|
|
20
|
+
"require": "./dist/index.d.cts"
|
|
21
|
+
},
|
|
19
22
|
"import": "./dist/index.js",
|
|
20
23
|
"require": "./dist/index.cjs"
|
|
21
24
|
}
|
|
@@ -28,10 +31,10 @@
|
|
|
28
31
|
"dist"
|
|
29
32
|
],
|
|
30
33
|
"devDependencies": {
|
|
31
|
-
"@tiptap/core": "^3.0.0-next.
|
|
32
|
-
"@tiptap/extension-code-block": "^3.0.0-next.
|
|
33
|
-
"@tiptap/pm": "^3.0.0-next.
|
|
34
|
-
"lowlight": "^
|
|
34
|
+
"@tiptap/core": "^3.0.0-next.5",
|
|
35
|
+
"@tiptap/extension-code-block": "^3.0.0-next.5",
|
|
36
|
+
"@tiptap/pm": "^3.0.0-next.5",
|
|
37
|
+
"lowlight": "^3.3.0"
|
|
35
38
|
},
|
|
36
39
|
"peerDependencies": {
|
|
37
40
|
"@tiptap/core": "^3.0.0-next.1",
|
|
@@ -46,6 +49,7 @@
|
|
|
46
49
|
"directory": "packages/extension-code-block-lowlight"
|
|
47
50
|
},
|
|
48
51
|
"scripts": {
|
|
49
|
-
"build": "tsup"
|
|
52
|
+
"build": "tsup",
|
|
53
|
+
"lint": "prettier ./src/ --check && eslint --cache --quiet --no-error-on-unmatched-pattern ./src/"
|
|
50
54
|
}
|
|
51
|
-
}
|
|
55
|
+
}
|
|
@@ -6,7 +6,7 @@ export interface CodeBlockLowlightOptions extends CodeBlockOptions {
|
|
|
6
6
|
/**
|
|
7
7
|
* The lowlight instance.
|
|
8
8
|
*/
|
|
9
|
-
lowlight: any
|
|
9
|
+
lowlight: any
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -28,7 +28,7 @@ export const CodeBlockLowlight = CodeBlock.extend<CodeBlockLowlightOptions>({
|
|
|
28
28
|
|
|
29
29
|
addProseMirrorPlugins() {
|
|
30
30
|
return [
|
|
31
|
-
...this.parent?.() || [],
|
|
31
|
+
...(this.parent?.() || []),
|
|
32
32
|
LowlightPlugin({
|
|
33
33
|
name: this.name,
|
|
34
34
|
lowlight: this.options.lowlight,
|
package/src/lowlight-plugin.ts
CHANGED
|
@@ -49,9 +49,10 @@ function getDecorations({
|
|
|
49
49
|
const language = block.node.attrs.language || defaultLanguage
|
|
50
50
|
const languages = lowlight.listLanguages()
|
|
51
51
|
|
|
52
|
-
const nodes =
|
|
53
|
-
|
|
54
|
-
|
|
52
|
+
const nodes =
|
|
53
|
+
language && (languages.includes(language) || registered(language) || lowlight.registered?.(language))
|
|
54
|
+
? getHighlightNodes(lowlight.highlight(language, block.node.textContent))
|
|
55
|
+
: getHighlightNodes(lowlight.highlightAuto(block.node.textContent))
|
|
55
56
|
|
|
56
57
|
parseNodes(nodes).forEach(node => {
|
|
57
58
|
const to = from + node.text.length
|
|
@@ -71,7 +72,8 @@ function getDecorations({
|
|
|
71
72
|
return DecorationSet.create(doc, decorations)
|
|
72
73
|
}
|
|
73
74
|
|
|
74
|
-
|
|
75
|
+
// eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
|
|
76
|
+
function isFunction(param: any): param is Function {
|
|
75
77
|
return typeof param === 'function'
|
|
76
78
|
}
|
|
77
79
|
|
|
@@ -85,21 +87,20 @@ export function LowlightPlugin({
|
|
|
85
87
|
defaultLanguage: string | null | undefined
|
|
86
88
|
}) {
|
|
87
89
|
if (!['highlight', 'highlightAuto', 'listLanguages'].every(api => isFunction(lowlight[api]))) {
|
|
88
|
-
throw Error(
|
|
89
|
-
'You should provide an instance of lowlight to use the code-block-lowlight extension',
|
|
90
|
-
)
|
|
90
|
+
throw Error('You should provide an instance of lowlight to use the code-block-lowlight extension')
|
|
91
91
|
}
|
|
92
92
|
|
|
93
93
|
const lowlightPlugin: Plugin<any> = new Plugin({
|
|
94
94
|
key: new PluginKey('lowlight'),
|
|
95
95
|
|
|
96
96
|
state: {
|
|
97
|
-
init: (_, { doc }) =>
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
97
|
+
init: (_, { doc }) =>
|
|
98
|
+
getDecorations({
|
|
99
|
+
doc,
|
|
100
|
+
name,
|
|
101
|
+
lowlight,
|
|
102
|
+
defaultLanguage,
|
|
103
|
+
}),
|
|
103
104
|
apply: (transaction, decorationSet, oldState, newState) => {
|
|
104
105
|
const oldNodeName = oldState.selection.$head.parent.type.name
|
|
105
106
|
const newNodeName = newState.selection.$head.parent.type.name
|
|
@@ -107,29 +108,29 @@ export function LowlightPlugin({
|
|
|
107
108
|
const newNodes = findChildren(newState.doc, node => node.type.name === name)
|
|
108
109
|
|
|
109
110
|
if (
|
|
110
|
-
transaction.docChanged
|
|
111
|
+
transaction.docChanged &&
|
|
111
112
|
// Apply decorations if:
|
|
112
113
|
// selection includes named node,
|
|
113
|
-
|
|
114
|
+
([oldNodeName, newNodeName].includes(name) ||
|
|
114
115
|
// OR transaction adds/removes named node,
|
|
115
|
-
|
|
116
|
+
newNodes.length !== oldNodes.length ||
|
|
116
117
|
// OR transaction has changes that completely encapsulte a node
|
|
117
118
|
// (for example, a transaction that affects the entire document).
|
|
118
119
|
// Such transactions can happen during collab syncing via y-prosemirror, for example.
|
|
119
|
-
|
|
120
|
+
transaction.steps.some(step => {
|
|
120
121
|
// @ts-ignore
|
|
121
122
|
return (
|
|
122
123
|
// @ts-ignore
|
|
123
|
-
step.from !== undefined
|
|
124
|
+
step.from !== undefined &&
|
|
124
125
|
// @ts-ignore
|
|
125
|
-
|
|
126
|
-
|
|
126
|
+
step.to !== undefined &&
|
|
127
|
+
oldNodes.some(node => {
|
|
127
128
|
// @ts-ignore
|
|
128
129
|
return (
|
|
129
130
|
// @ts-ignore
|
|
130
|
-
node.pos >= step.from
|
|
131
|
+
node.pos >= step.from &&
|
|
131
132
|
// @ts-ignore
|
|
132
|
-
|
|
133
|
+
node.pos + node.node.nodeSize <= step.to
|
|
133
134
|
)
|
|
134
135
|
})
|
|
135
136
|
)
|