mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
63 lines
1.6 KiB
Vue
63 lines
1.6 KiB
Vue
<script lang="ts" setup>
|
|
import type { GenericValue } from 'n8n-workflow';
|
|
import { computed } from 'vue';
|
|
|
|
const props = defineProps<{
|
|
content: GenericValue;
|
|
search?: string;
|
|
}>();
|
|
|
|
const splitTextBySearch = (
|
|
text = '',
|
|
search = '',
|
|
): Array<{ tag: 'span' | 'mark'; content: string }> => {
|
|
if (!search) {
|
|
return [
|
|
{
|
|
tag: 'span',
|
|
content: text,
|
|
},
|
|
];
|
|
}
|
|
|
|
const escapeRegExp = (s: string) => s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string
|
|
const pattern = new RegExp(`(${escapeRegExp(search)})`, 'i');
|
|
const splitText = text.split(pattern);
|
|
|
|
return splitText.map((t) => ({ tag: pattern.test(t) ? 'mark' : 'span', content: t }));
|
|
};
|
|
|
|
const parts = computed(() => {
|
|
return props.search && typeof props.content === 'string'
|
|
? splitTextBySearch(props.content, props.search)
|
|
: [];
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<span v-if="parts.length && typeof props.content === 'string'">
|
|
<template v-for="(part, index) in parts">
|
|
<mark v-if="part.tag === 'mark' && part.content" :key="`mark-${index}`">{{
|
|
part.content
|
|
}}</mark>
|
|
<span v-else-if="part.content" :key="`span-${index}`">{{ part.content }}</span>
|
|
</template>
|
|
</span>
|
|
<span v-else :class="$style.content">
|
|
<template v-if="typeof props.content === 'string'">
|
|
<span v-for="(line, index) in props.content.split('\n')" :key="`line-${index}`">
|
|
<span v-if="index > 0" :class="$style.newLine">\n</span>{{ line }}
|
|
</span>
|
|
</template>
|
|
<span v-else v-text="props.content" />
|
|
</span>
|
|
</template>
|
|
|
|
<style lang="scss" module>
|
|
:root .content .newLine {
|
|
font-family: var(--font-family-monospace);
|
|
color: var(--color-line-break);
|
|
padding-right: 2px;
|
|
}
|
|
</style>
|