mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
refactor(editor): Move editor-ui and design-system to frontend dir (no-changelog) (#13564)
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
<script setup lang="ts">
|
||||
import { sanitizeHtml } from '@/utils/htmlUtils';
|
||||
import { computed, onMounted, ref } from 'vue';
|
||||
|
||||
type Props = {
|
||||
hint: string;
|
||||
highlight?: boolean;
|
||||
singleLine?: boolean;
|
||||
renderHTML?: boolean;
|
||||
};
|
||||
|
||||
const hintTextRef = ref<HTMLDivElement>();
|
||||
|
||||
const props = withDefaults(defineProps<Props>(), {
|
||||
highlight: false,
|
||||
singleLine: false,
|
||||
renderHTML: false,
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
if (hintTextRef.value) {
|
||||
hintTextRef.value.querySelectorAll('a').forEach((a) => (a.target = '_blank'));
|
||||
}
|
||||
});
|
||||
|
||||
const simplyText = computed(() => {
|
||||
if (props.hint) {
|
||||
return String(props.hint)
|
||||
.replace(/&/g, '&') // allows us to keep spaces at the beginning of an expression
|
||||
.replace(/</g, '<') // prevent XSS exploits since we are rendering HTML
|
||||
.replace(/>/g, '>')
|
||||
.replace(/"/g, '"')
|
||||
.replace(/ /g, ' ');
|
||||
}
|
||||
|
||||
return '';
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<n8n-text v-if="hint" size="small" color="text-base" tag="div">
|
||||
<div
|
||||
v-if="!renderHTML"
|
||||
:class="{
|
||||
[$style.singleline]: singleLine,
|
||||
[$style.highlight]: highlight,
|
||||
}"
|
||||
>
|
||||
<span data-test-id="parameter-input-hint" v-n8n-html="simplyText"></span>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
ref="hintTextRef"
|
||||
:class="{ [$style.singleline]: singleLine, [$style.highlight]: highlight }"
|
||||
v-n8n-html="sanitizeHtml(hint)"
|
||||
></div>
|
||||
</n8n-text>
|
||||
</template>
|
||||
|
||||
<style lang="scss" module>
|
||||
.singleline {
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.highlight {
|
||||
color: var(--color-secondary);
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user