2022-07-20 04:32:51 -07:00
|
|
|
<template>
|
|
|
|
<div :class="$style.container">
|
2022-10-24 00:39:22 -07:00
|
|
|
<label
|
|
|
|
v-if="label || $slots.options"
|
|
|
|
:for="inputName"
|
|
|
|
:class="{
|
|
|
|
[$style.inputLabel]: true,
|
|
|
|
[$style.heading]: !!label,
|
|
|
|
[$style.underline]: underline,
|
|
|
|
[$style[size]]: true,
|
2022-08-02 08:21:21 -07:00
|
|
|
[$style.overflow]: !!$slots.options,
|
2022-10-24 00:39:22 -07:00
|
|
|
}"
|
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
<div :class="$style.title" v-if="label">
|
2022-09-21 01:20:29 -07:00
|
|
|
<n8n-text :bold="bold" :size="size" :compact="!underline && !$slots.options" :color="color">
|
2022-07-20 04:32:51 -07:00
|
|
|
{{ label }}
|
|
|
|
<n8n-text color="primary" :bold="bold" :size="size" v-if="required">*</n8n-text>
|
|
|
|
</n8n-text>
|
|
|
|
</div>
|
2022-11-15 09:20:54 -08:00
|
|
|
<span
|
|
|
|
:class="[$style.infoIcon, showTooltip ? $style.visible : $style.hidden]"
|
|
|
|
v-if="tooltipText && label"
|
|
|
|
>
|
2022-07-20 04:32:51 -07:00
|
|
|
<n8n-tooltip placement="top" :popper-class="$style.tooltipPopper">
|
|
|
|
<n8n-icon icon="question-circle" size="small" />
|
2022-10-24 00:39:22 -07:00
|
|
|
<div slot="content" v-html="addTargetBlank(tooltipText)" />
|
2022-07-20 04:32:51 -07:00
|
|
|
</n8n-tooltip>
|
2021-09-11 01:15:36 -07:00
|
|
|
</span>
|
2022-11-15 09:20:54 -08:00
|
|
|
<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 }">
|
|
|
|
<slot name="options" />
|
2022-07-20 04:32:51 -07:00
|
|
|
</div>
|
2022-10-24 00:39:22 -07:00
|
|
|
</label>
|
|
|
|
<slot />
|
2021-08-29 04:36:17 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2021-10-18 20:57:49 -07:00
|
|
|
import N8nText from '../N8nText';
|
2021-08-29 04:36:17 -07:00
|
|
|
import N8nTooltip from '../N8nTooltip';
|
|
|
|
import N8nIcon from '../N8nIcon';
|
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
import { addTargetBlank } from '../utils/helpers';
|
|
|
|
|
2022-08-05 06:03:24 -07:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2021-08-29 04:36:17 -07:00
|
|
|
name: 'n8n-input-label',
|
2021-10-18 20:57:49 -07:00
|
|
|
components: {
|
|
|
|
N8nText,
|
|
|
|
N8nIcon,
|
|
|
|
N8nTooltip,
|
|
|
|
},
|
2021-08-29 04:36:17 -07:00
|
|
|
props: {
|
2022-09-21 01:20:29 -07:00
|
|
|
color: {
|
|
|
|
type: String,
|
|
|
|
},
|
2021-08-29 04:36:17 -07:00
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
tooltipText: {
|
|
|
|
type: String,
|
|
|
|
},
|
2022-10-24 00:39:22 -07:00
|
|
|
inputName: {
|
|
|
|
type: String,
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
required: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
2021-10-27 12:55:37 -07:00
|
|
|
bold: {
|
|
|
|
type: Boolean,
|
|
|
|
default: true,
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: String,
|
|
|
|
default: 'medium',
|
2022-11-15 09:20:54 -08:00
|
|
|
validator: (value: string): boolean => ['small', 'medium'].includes(value),
|
2021-10-27 12:55:37 -07:00
|
|
|
},
|
|
|
|
underline: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
showTooltip: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
2022-07-20 04:32:51 -07:00
|
|
|
showOptions: {
|
2021-10-27 12:55:37 -07:00
|
|
|
type: Boolean,
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
addTargetBlank,
|
2021-08-29 04:36:17 -07:00
|
|
|
},
|
2022-08-05 06:03:24 -07:00
|
|
|
});
|
2021-08-29 04:36:17 -07:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
2022-07-20 04:32:51 -07:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2022-10-24 00:39:22 -07:00
|
|
|
.inputLabel {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-11-15 09:20:54 -08:00
|
|
|
.container:hover,
|
|
|
|
.inputLabel:hover {
|
2022-07-20 04:32:51 -07:00
|
|
|
.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
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
min-width: 0;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
white-space: nowrap;
|
2021-09-11 01:15:36 -07:00
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.infoIcon {
|
2022-07-20 04:32:51 -07:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2021-08-29 04:36:17 -07:00
|
|
|
color: var(--color-text-light);
|
2022-07-20 04:32:51 -07:00
|
|
|
padding-left: var(--spacing-4xs);
|
|
|
|
background-color: var(--color-background-xlight);
|
|
|
|
z-index: 1;
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.options {
|
|
|
|
opacity: 0;
|
|
|
|
background-color: var(--color-background-xlight);
|
2022-11-15 09:20:54 -08:00
|
|
|
transition: opacity 250ms cubic-bezier(0.98, -0.06, 0.49, -0.2); // transition on hover out
|
2021-10-27 12:55:37 -07:00
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
> * {
|
|
|
|
float: right;
|
|
|
|
}
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.overlay {
|
|
|
|
position: relative;
|
|
|
|
flex-grow: 1;
|
|
|
|
opacity: 0;
|
2022-11-15 09:20:54 -08:00
|
|
|
transition: opacity 250ms cubic-bezier(0.98, -0.06, 0.49, -0.2); // transition on hover out
|
2022-07-20 04:32:51 -07:00
|
|
|
|
|
|
|
> div {
|
|
|
|
position: absolute;
|
|
|
|
width: 60px;
|
|
|
|
height: 19px;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
z-index: 0;
|
|
|
|
|
2022-11-15 09:20:54 -08:00
|
|
|
background: linear-gradient(
|
|
|
|
270deg,
|
|
|
|
var(--color-foreground-xlight) 72.19%,
|
|
|
|
rgba(255, 255, 255, 0) 107.45%
|
|
|
|
);
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.hidden {
|
|
|
|
opacity: 0;
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.visible {
|
|
|
|
opacity: 1;
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-08-02 08:21:21 -07:00
|
|
|
.heading {
|
2022-07-20 04:32:51 -07:00
|
|
|
display: flex;
|
2022-08-02 08:21:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.overflow {
|
2022-07-20 04:32:51 -07:00
|
|
|
overflow-x: hidden;
|
|
|
|
overflow-y: clip;
|
|
|
|
}
|
|
|
|
|
|
|
|
.small {
|
|
|
|
margin-bottom: var(--spacing-5xs);
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.medium {
|
|
|
|
margin-bottom: var(--spacing-2xs);
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
2022-07-20 04:32:51 -07:00
|
|
|
.underline {
|
|
|
|
border-bottom: var(--border-base);
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
2021-09-11 01:15:36 -07:00
|
|
|
|
|
|
|
.tooltipPopper {
|
|
|
|
max-width: 400px;
|
2021-11-25 09:10:06 -08:00
|
|
|
|
|
|
|
li {
|
|
|
|
margin-left: var(--spacing-s);
|
|
|
|
}
|
2021-09-11 01:15:36 -07:00
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
</style>
|