fix(Highlight): render correctly when keywords is empty (#12829)

This commit is contained in:
Jungzl 2024-04-30 21:22:04 +08:00 committed by GitHub
parent 1781c80a56
commit ff08e3c04a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 23 additions and 0 deletions

View File

@ -100,6 +100,14 @@ export default defineComponent({
const lastChunk = chunks[chunks.length - 1];
if (!lastChunk) {
chunks.push({
start: 0,
end: sourceString.length,
highlight: false,
});
}
if (lastChunk && lastChunk.end < sourceString.length) {
chunks.push({
start: lastChunk.end,

View File

@ -95,3 +95,18 @@ test('empty text should not be matched', () => {
expect(tags[0].text()).toEqual('bc');
});
test('empty keywords should correctly rendered', () => {
const wrapper = mount(Highlight, {
props: {
keywords: '',
sourceString: 'abcd',
},
});
const highlight = wrapper.find('.van-highlight');
const tags = highlight.findAll('.van-highlight__tag');
expect(highlight.text()).toEqual('abcd');
expect(tags.length).toEqual(0);
});