fix(web): 字数计算考虑换行符

This commit is contained in:
Xwite 2023-05-09 18:19:18 +08:00
parent 8c730266a7
commit 596ea46916
2 changed files with 6 additions and 6 deletions

View File

@ -41,9 +41,8 @@ const calculateWordCount = (paragraph) => {
const imgPattern = /<img[^>]*src="[^"]*(?:"[^>]+\})?"[^>]*>/g;
//1
const imagePlaceHolder = " ";
return paragraph.trim().replaceAll(imgPattern, imagePlaceHolder).length;
return paragraph.replaceAll(imgPattern, imagePlaceHolder).length;
};
</script>
<style lang="scss" scoped>

View File

@ -292,8 +292,9 @@ const toChapterPos = (pos) => {
nextTick(() => {
let wordCount = 0;
for (let element of chapter.value[0].children) {
wordCount += parseInt(element.getAttribute("wordCount"));
if (wordCount >= pos) {
wordCount += parseInt(element.getAttribute("wordCount")) + 1;//
if (wordCount - 1 >= pos) {
//
jump(element, {
duration: 0,
});
@ -313,9 +314,9 @@ const computeChapterPos = () => {
//
let mChapterPos = 0;
for (let paragraph of chapterElement.children) {
mChapterPos += parseInt(paragraph.getAttribute("wordCount"));
mChapterPos += parseInt(paragraph.getAttribute("wordCount")) + 1; //
if (paragraph.getBoundingClientRect().top >= 0) {
chapterPos.value = mChapterPos;
chapterPos.value = mChapterPos - 1; //
break;
}
}