2021-08-29 04:36:17 -07:00
|
|
|
<template functional>
|
2021-10-27 12:55:37 -07:00
|
|
|
<div :class="{[$style.inputLabelContainer]: !props.labelHoverableOnly}">
|
|
|
|
<div :class="{[$style.inputLabel]: props.labelHoverableOnly, [$options.methods.getLabelClass(props, $style)]: true}">
|
|
|
|
<component v-if="props.label" :is="$options.components.N8nText" :bold="props.bold" :size="props.size" :compact="!props.underline">
|
2021-10-18 20:57:49 -07:00
|
|
|
{{ props.label }}
|
2021-10-27 12:55:37 -07:00
|
|
|
<component :is="$options.components.N8nText" color="primary" :bold="props.bold" :size="props.size" v-if="props.required">*</component>
|
2021-10-18 20:57:49 -07:00
|
|
|
</component>
|
2021-10-27 12:55:37 -07:00
|
|
|
<span :class="[$style.infoIcon, props.showTooltip ? $style.showIcon: $style.hiddenIcon]" v-if="props.tooltipText">
|
2021-10-18 20:57:49 -07:00
|
|
|
<component :is="$options.components.N8nTooltip" placement="top" :popper-class="$style.tooltipPopper">
|
2021-10-27 12:55:37 -07:00
|
|
|
<component :is="$options.components.N8nIcon" icon="question-circle" size="small" />
|
2021-10-18 20:57:49 -07:00
|
|
|
<div slot="content" v-html="$options.methods.addTargetBlank(props.tooltipText)"></div>
|
|
|
|
</component>
|
2021-09-11 01:15:36 -07:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<slot></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';
|
|
|
|
|
2021-08-29 04:36:17 -07:00
|
|
|
export default {
|
|
|
|
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: {
|
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
tooltipText: {
|
|
|
|
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',
|
|
|
|
validator: (value: string): boolean =>
|
|
|
|
['small', 'medium'].includes(value),
|
|
|
|
},
|
|
|
|
underline: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
showTooltip: {
|
|
|
|
type: Boolean,
|
|
|
|
},
|
|
|
|
labelHoverableOnly: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
addTargetBlank,
|
2021-10-27 12:55:37 -07:00
|
|
|
getLabelClass(props: {label: string, size: string, underline: boolean}, $style: any) {
|
|
|
|
if (!props.label) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (props.underline) {
|
|
|
|
return $style[`label-${props.size}-underline`];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $style[`label-${props.size}`];
|
|
|
|
},
|
2021-08-29 04:36:17 -07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
2021-10-27 12:55:37 -07:00
|
|
|
.inputLabelContainer:hover {
|
|
|
|
> div > .infoIcon {
|
|
|
|
display: inline-block;
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-27 12:55:37 -07:00
|
|
|
.inputLabel:hover {
|
|
|
|
> .infoIcon {
|
|
|
|
display: inline-block;
|
2021-09-11 01:15:36 -07:00
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.infoIcon {
|
|
|
|
color: var(--color-text-light);
|
2021-10-27 12:55:37 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
.showIcon {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hiddenIcon {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label {
|
|
|
|
* {
|
|
|
|
margin-right: var(--spacing-5xs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-small {
|
|
|
|
composes: label;
|
|
|
|
margin-bottom: var(--spacing-4xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-medium {
|
|
|
|
composes: label;
|
|
|
|
margin-bottom: var(--spacing-2xs);
|
|
|
|
}
|
|
|
|
|
|
|
|
.underline {
|
|
|
|
border-bottom: var(--border-base);
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-small-underline {
|
|
|
|
composes: label-small;
|
|
|
|
composes: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
.label-medium-underline {
|
|
|
|
composes: label-medium;
|
|
|
|
composes: underline;
|
2021-08-29 04:36:17 -07:00
|
|
|
}
|
2021-09-11 01:15:36 -07:00
|
|
|
|
|
|
|
.tooltipPopper {
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
2021-08-29 04:36:17 -07:00
|
|
|
</style>
|