2021-09-11 01:15:36 -07:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<n8n-input-label :label="label">
|
2022-12-14 01:04:10 -08:00
|
|
|
<div
|
2023-07-19 07:51:49 -07:00
|
|
|
:class="{
|
|
|
|
[$style.copyText]: true,
|
|
|
|
[$style[size]]: true,
|
|
|
|
[$style.collapsed]: collapse,
|
|
|
|
'ph-no-capture': redactValue,
|
|
|
|
}"
|
2022-12-14 01:04:10 -08:00
|
|
|
@click="copy"
|
|
|
|
data-test-id="copy-input"
|
|
|
|
>
|
2022-08-19 06:35:39 -07:00
|
|
|
<span ref="copyInputValue">{{ value }}</span>
|
2022-12-14 01:04:10 -08:00
|
|
|
<div :class="$style.copyButton">
|
|
|
|
<span>{{ copyButtonText }}</span>
|
|
|
|
</div>
|
2021-09-11 01:15:36 -07:00
|
|
|
</div>
|
|
|
|
</n8n-input-label>
|
2022-06-08 11:53:12 -07:00
|
|
|
<div v-if="hint" :class="$style.hint">{{ hint }}</div>
|
2021-09-11 01:15:36 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-05-16 02:43:46 -07:00
|
|
|
import { defineComponent } from 'vue';
|
2022-11-23 04:41:53 -08:00
|
|
|
import { copyPaste } from '@/mixins/copyPaste';
|
2023-05-15 09:41:13 -07:00
|
|
|
import { useToast } from '@/composables';
|
2021-09-11 01:15:36 -07:00
|
|
|
|
2023-05-16 02:43:46 -07:00
|
|
|
export default defineComponent({
|
|
|
|
mixins: [copyPaste],
|
2021-09-11 01:15:36 -07:00
|
|
|
props: {
|
|
|
|
label: {
|
|
|
|
type: String,
|
|
|
|
},
|
2022-06-08 11:53:12 -07:00
|
|
|
hint: {
|
2021-09-11 01:15:36 -07:00
|
|
|
type: String,
|
|
|
|
},
|
2022-06-08 11:53:12 -07:00
|
|
|
value: {
|
2021-09-11 01:15:36 -07:00
|
|
|
type: String,
|
|
|
|
},
|
|
|
|
copyButtonText: {
|
|
|
|
type: String,
|
2022-06-08 11:53:12 -07:00
|
|
|
default(): string {
|
|
|
|
return this.$locale.baseText('generic.copy');
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
},
|
2022-06-08 11:53:12 -07:00
|
|
|
toastTitle: {
|
|
|
|
type: String,
|
|
|
|
default(): string {
|
|
|
|
return this.$locale.baseText('generic.copiedToClipboard');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
toastMessage: {
|
2021-09-11 01:15:36 -07:00
|
|
|
type: String,
|
|
|
|
},
|
2022-06-20 12:39:24 -07:00
|
|
|
collapse: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
size: {
|
|
|
|
type: String,
|
|
|
|
default: 'large',
|
|
|
|
},
|
2023-07-19 07:51:49 -07:00
|
|
|
redactValue: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
},
|
2023-05-15 09:41:13 -07:00
|
|
|
setup() {
|
|
|
|
return {
|
|
|
|
...useToast(),
|
|
|
|
};
|
|
|
|
},
|
2021-09-11 01:15:36 -07:00
|
|
|
methods: {
|
|
|
|
copy(): void {
|
2022-06-08 11:53:12 -07:00
|
|
|
this.$emit('copy');
|
|
|
|
this.copyToClipboard(this.value);
|
2021-09-11 01:15:36 -07:00
|
|
|
|
2023-05-15 09:41:13 -07:00
|
|
|
this.showMessage({
|
2022-06-08 11:53:12 -07:00
|
|
|
title: this.toastTitle,
|
|
|
|
message: this.toastMessage,
|
2021-09-11 01:15:36 -07:00
|
|
|
type: 'success',
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.copyText {
|
|
|
|
span {
|
|
|
|
font-family: Monaco, Consolas;
|
2022-06-08 11:53:12 -07:00
|
|
|
color: var(--color-text-base);
|
|
|
|
overflow-wrap: break-word;
|
2021-09-11 01:15:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
padding: var(--spacing-xs);
|
|
|
|
background-color: var(--color-background-light);
|
|
|
|
border: var(--border-base);
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
font-weight: var(--font-weight-regular);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
--display-copy-button: flex;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-20 12:39:24 -07:00
|
|
|
.large {
|
|
|
|
span {
|
|
|
|
font-size: var(--font-size-s);
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.medium {
|
|
|
|
span {
|
2023-05-31 06:01:57 -07:00
|
|
|
font-size: var(--font-size-xs);
|
2022-06-20 12:39:24 -07:00
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapsed {
|
|
|
|
white-space: nowrap;
|
2022-12-14 01:04:10 -08:00
|
|
|
overflow: hidden;
|
2022-06-20 12:39:24 -07:00
|
|
|
}
|
|
|
|
|
2021-09-11 01:15:36 -07:00
|
|
|
.copyButton {
|
|
|
|
display: var(--display-copy-button, none);
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
padding: var(--spacing-xs);
|
|
|
|
background-color: var(--color-background-light);
|
|
|
|
height: 100%;
|
|
|
|
align-items: center;
|
|
|
|
border-radius: var(--border-radius-base);
|
|
|
|
|
|
|
|
span {
|
|
|
|
font-family: unset;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 11:53:12 -07:00
|
|
|
.hint {
|
2021-09-11 01:15:36 -07:00
|
|
|
margin-top: var(--spacing-2xs);
|
|
|
|
font-size: var(--font-size-2xs);
|
|
|
|
line-height: var(--font-line-height-loose);
|
|
|
|
font-weight: var(--font-weight-regular);
|
|
|
|
word-break: normal;
|
|
|
|
}
|
|
|
|
</style>
|