fix: 🐛 修复富文本打字机

修复富文本打字机文本中存在标签字符时,字符截取失败的问题
This commit is contained in:
ifengzp 2020-06-02 23:23:09 +08:00
parent 6532ab39c9
commit 10816bca15

View File

@ -48,26 +48,64 @@ export default class Typer extends cc.Component {
} }
makeRichTextTyper(str: string) { makeRichTextTyper(str: string) {
let charArr = str.replace(/<.+?\/?>/g, '').split(''); let delimiterCharList: any = ['✁', '✂', '✃', '✄', '✺', '✻', '✼', '❄', '❅', '❆', '❇', '❈', '❉', '❊'];
let tempStrArr = [str]; let regexp = /<.+?\/?>/g;
let matchArr = str.match(regexp);
let delimiterChar = delimiterCharList.find((item) => str.indexOf(item) == -1);
let replaceStr = str.replace(regexp, delimiterChar);
let tagInfoArr = [];
let temp = [];
let tagInfo: { endStr?; endtIdx?; startIdx?; startStr? } = {};
let num = 0;
for (let i = 0; i < replaceStr.length; i++) {
if (replaceStr[i] == delimiterChar) {
temp.push(i);
if (temp.length >= 2) {
tagInfo.endStr = matchArr[tagInfoArr.length * 2 + 1];
tagInfo.endtIdx = i - num;
tagInfoArr.push(tagInfo);
temp = [];
tagInfo = {};
} else {
tagInfo.startIdx = i - num;
tagInfo.startStr = matchArr[tagInfoArr.length * 2];
}
num += 1;
}
}
for (let i = charArr.length; i > 1; i--) { let showCharArr = str.replace(regexp, '').split('');
let curStr = tempStrArr[charArr.length - i]; let typerArr = [];
let lastIdx = curStr.lastIndexOf(charArr[i - 1]); for (let i = 1; i <= showCharArr.length; i++) {
let prevStr = curStr.slice(0, lastIdx); let temp = showCharArr.join('').slice(0, i);
let nextStr = curStr.slice(lastIdx + 1, curStr.length); let addLen = 0;
for (let j = 0; j < tagInfoArr.length; j++) {
tempStrArr.push(prevStr + nextStr); let tagInfo = tagInfoArr[j];
let start = tagInfo.startIdx;
let end = tagInfo.endtIdx;
if (i > start && i <= end) {
temp = temp.slice(0, start + addLen) + tagInfo.startStr + temp.slice(start + addLen) + tagInfo.endStr;
addLen += tagInfo.startStr.length + tagInfo.endStr.length;
} else if (i > end) {
temp =
temp.slice(0, start + addLen) +
tagInfo.startStr +
temp.slice(start + addLen, end + addLen) +
tagInfo.endStr +
temp.slice(end + addLen);
addLen += tagInfo.startStr.length + tagInfo.endStr.length;
}
}
typerArr.unshift(temp);
} }
this.typerTimer && clearInterval(this.typerTimer); this.typerTimer && clearInterval(this.typerTimer);
this.typerTimer = setInterval(() => { this.typerTimer = setInterval(() => {
if (tempStrArr.length) { if (typerArr.length) {
this.richText.string = tempStrArr.pop(); this.richText.string = typerArr.pop();
} else { } else {
this.typerTimer && clearInterval(this.typerTimer); this.typerTimer && clearInterval(this.typerTimer);
} }
}, 50); }, 50);
} }
} }