editor: add word-counter

This commit is contained in:
ammarahm-ed
2023-02-14 12:32:12 +05:00
committed by Abdullah Atta
parent bf589da7b8
commit 9e83e67a0b
2 changed files with 89 additions and 0 deletions

View File

@@ -76,6 +76,7 @@ import HorizontalRule from "@tiptap/extension-horizontal-rule";
import { KeyMap } from "./extensions/key-map";
import { WebClipNode, WebClipOptions } from "./extensions/web-clip";
import { DownloadOptions } from "./utils/downloader";
export { getTotalWords, countWords } from "./utils/word-counter";
const CoreExtensions = Object.entries(TiptapCoreExtensions)
// we will implement our own customized clipboard serializer

View File

@@ -0,0 +1,88 @@
/*
This file is part of the Notesnook project (https://notesnook.com/)
Copyright (C) 2023 Streetwriters (Private) Limited
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import { Editor } from "@tiptap/core";
export function getTotalWords(editor: Editor): number {
const documentText = editor.state.doc.textBetween(
0,
editor.state.doc.content.size,
"\n",
" "
);
return countWords(documentText);
}
export function countWords(str: string) {
let count = 0;
let shouldCount = false;
let isScript = false;
for (let i = 0; i < str.length; ++i) {
const s = str[i];
if (
s === " " ||
s === "\r" ||
s === "\n" ||
s === "*" ||
s === "/" ||
s === "&" ||
(isScript = isCJKChar(s))
) {
if (!shouldCount && !isScript) continue;
++count;
shouldCount = false;
} else {
shouldCount = true;
}
}
if (shouldCount) ++count;
return count;
}
// Taken from: https://en.wikipedia.org/wiki/CJK_Unified_Ideographs
const CJK_UNICODE_RANGES = [
[19968, 40959], // CJK Unified Ideographs 4E00-9FFF Common
[13312, 19903], // CJK Unified Ideographs Extension A 3400-4DBF Rare
[131072, 173791], // CJK Unified Ideographs Extension B 20000-2A6DF Rare, historic
[173824, 177983], // CJK Unified Ideographs Extension C 2A7002B73F Rare, historic
[177984, 178207], // CJK Unified Ideographs Extension D 2B7402B81F Uncommon, some in current use
[178208, 183983], // CJK Unified Ideographs Extension E 2B8202CEAF Rare, historic
[183984, 191471], // CJK Unified Ideographs Extension F 2CEB02EBEF Rare, historic
[196608, 201551], // CJK Unified Ideographs Extension G 300003134F Rare, historic
[201552, 205743], // CJK Unified Ideographs Extension H 31350323AF Rare, historic
[63744, 64255], // CJK Compatibility Ideographs F900-FAFF Duplicates, unifiable variants, corporate characters
[194560, 195103], // CJK Compatibility Ideographs Supplement 2F800-2FA1F Unifiable variants
[12032, 12255], // CJK Radicals / Kangxi Radicals 2F002FDF
[11904, 12031], // CJK Radicals Supplement 2E802EFF
[12288, 12351], // CJK Symbols and Punctuation 3000303F
[13056, 13311], // CJK Compatibility 3300-33FF
[65072, 65103] // CJK Compatibility Forms FE30-FE4F
];
function isCJKChar(char: string) {
const code = char.charCodeAt(0);
const isIn = CJK_UNICODE_RANGES.some(
(range) => code >= range[0] && code <= range[1]
);
return isIn;
}