mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
193 lines
3.7 KiB
Vue
193 lines
3.7 KiB
Vue
<template>
|
|
<div :class="$style.container" v-bind="$attrs" data-test-id="input-label">
|
|
<label
|
|
v-if="label || $slots.options"
|
|
:for="inputName"
|
|
:class="{
|
|
'n8n-input-label': true,
|
|
[$style.inputLabel]: true,
|
|
[$style.heading]: !!label,
|
|
[$style.underline]: underline,
|
|
[$style[size]]: true,
|
|
[$style.overflow]: !!$slots.options,
|
|
}"
|
|
>
|
|
<div v-if="label" :class="$style.title">
|
|
<N8nText :bold="bold" :size="size" :compact="compact" :color="color">
|
|
{{ label }}
|
|
<N8nText v-if="required" color="primary" :bold="bold" :size="size">*</N8nText>
|
|
</N8nText>
|
|
</div>
|
|
<span
|
|
v-if="tooltipText && label"
|
|
:class="[$style.infoIcon, showTooltip ? $style.visible : $style.hidden]"
|
|
>
|
|
<N8nTooltip placement="top" :popper-class="$style.tooltipPopper">
|
|
<N8nIcon icon="question-circle" size="small" />
|
|
<template #content>
|
|
<div v-html="addTargetBlank(tooltipText)" />
|
|
</template>
|
|
</N8nTooltip>
|
|
</span>
|
|
<div
|
|
v-if="$slots.options && label"
|
|
:class="{ [$style.overlay]: true, [$style.visible]: showOptions }"
|
|
/>
|
|
<div
|
|
v-if="$slots.options"
|
|
:class="{ [$style.options]: true, [$style.visible]: showOptions }"
|
|
:data-test-id="`${inputName}-parameter-input-options-container`"
|
|
>
|
|
<slot name="options" />
|
|
</div>
|
|
</label>
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import N8nText from '../N8nText';
|
|
import N8nIcon from '../N8nIcon';
|
|
import N8nTooltip from '../N8nTooltip';
|
|
import type { TextColor } from '@/types/text';
|
|
|
|
const SIZE = ['small', 'medium'] as const;
|
|
|
|
interface InputLabelProps {
|
|
compact?: boolean;
|
|
color?: TextColor;
|
|
label?: string;
|
|
tooltipText?: string;
|
|
inputName?: string;
|
|
required?: boolean;
|
|
bold?: boolean;
|
|
size?: (typeof SIZE)[number];
|
|
underline?: boolean;
|
|
showTooltip?: boolean;
|
|
showOptions?: boolean;
|
|
}
|
|
|
|
defineOptions({ name: 'N8nInputLabel' });
|
|
withDefaults(defineProps<InputLabelProps>(), {
|
|
compact: false,
|
|
bold: true,
|
|
size: 'medium',
|
|
});
|
|
|
|
const addTargetBlank = (html: string) =>
|
|
html && html.includes('href=') ? html.replace(/href=/g, 'target="_blank" href=') : html;
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.inputLabel {
|
|
display: block;
|
|
}
|
|
.container:hover,
|
|
.inputLabel:hover {
|
|
.infoIcon {
|
|
opacity: 1;
|
|
}
|
|
|
|
.options {
|
|
opacity: 1;
|
|
transition: opacity 100ms ease-in; // transition on hover in
|
|
}
|
|
|
|
.overlay {
|
|
opacity: 1;
|
|
transition: opacity 100ms ease-in; // transition on hover in
|
|
}
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
align-items: center;
|
|
min-width: 0;
|
|
|
|
> * {
|
|
white-space: nowrap;
|
|
}
|
|
}
|
|
|
|
.infoIcon {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--color-text-light);
|
|
padding-left: var(--spacing-4xs);
|
|
background-color: var(--color-background-xlight);
|
|
z-index: 1;
|
|
}
|
|
|
|
.options {
|
|
opacity: 0;
|
|
background-color: var(--color-background-xlight);
|
|
transition: opacity 250ms cubic-bezier(0.98, -0.06, 0.49, -0.2); // transition on hover out
|
|
|
|
> * {
|
|
float: right;
|
|
}
|
|
}
|
|
|
|
.overlay {
|
|
position: relative;
|
|
flex-grow: 1;
|
|
opacity: 0;
|
|
transition: opacity 250ms cubic-bezier(0.98, -0.06, 0.49, -0.2); // transition on hover out
|
|
|
|
> div {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 19px;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 0;
|
|
|
|
background: linear-gradient(
|
|
270deg,
|
|
var(--color-foreground-xlight) 72.19%,
|
|
rgba(255, 255, 255, 0) 107.45%
|
|
);
|
|
}
|
|
}
|
|
|
|
.hidden {
|
|
opacity: 0;
|
|
}
|
|
|
|
.visible {
|
|
opacity: 1;
|
|
}
|
|
|
|
.overflow {
|
|
overflow-x: hidden;
|
|
overflow-y: clip;
|
|
}
|
|
|
|
.heading {
|
|
display: flex;
|
|
|
|
&.small {
|
|
margin-bottom: var(--spacing-5xs);
|
|
}
|
|
&.medium {
|
|
margin-bottom: var(--spacing-2xs);
|
|
}
|
|
}
|
|
|
|
.underline {
|
|
border-bottom: var(--border-base);
|
|
}
|
|
|
|
:root .tooltipPopper {
|
|
max-width: 400px;
|
|
|
|
li {
|
|
margin-left: var(--spacing-s);
|
|
}
|
|
}
|
|
</style>
|