2021-09-30 12:09:43 -04:00
|
|
|
<template>
|
2021-10-01 04:43:11 -04:00
|
|
|
<div class="input-group">
|
2021-09-30 12:09:43 -04:00
|
|
|
<input
|
|
|
|
:id="id"
|
|
|
|
ref="input"
|
|
|
|
v-model="model"
|
|
|
|
:type="type"
|
|
|
|
class="form-control"
|
|
|
|
:placeholder="placeholder"
|
|
|
|
:autocomplete="autocomplete"
|
|
|
|
:required="required"
|
|
|
|
:readonly="readonly"
|
|
|
|
:disabled="disabled"
|
|
|
|
>
|
|
|
|
|
|
|
|
<a class="btn btn-outline-primary" @click="copyToClipboard(model)">
|
|
|
|
<font-awesome-icon :icon="icon" />
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
let timeout;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
props: {
|
2022-06-01 19:32:05 -04:00
|
|
|
/** ID of this input */
|
2021-09-30 12:09:43 -04:00
|
|
|
id: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Type of input */
|
2021-09-30 12:09:43 -04:00
|
|
|
type: {
|
|
|
|
type: String,
|
|
|
|
default: "text"
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** The value of the input */
|
2021-09-30 12:09:43 -04:00
|
|
|
modelValue: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** A placeholder to use */
|
2021-09-30 12:09:43 -04:00
|
|
|
placeholder: {
|
|
|
|
type: String,
|
|
|
|
default: ""
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Should the field auto complete */
|
2021-09-30 12:09:43 -04:00
|
|
|
autocomplete: {
|
|
|
|
type: String,
|
|
|
|
default: undefined,
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Is the input required? */
|
2021-09-30 12:09:43 -04:00
|
|
|
required: {
|
|
|
|
type: Boolean
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Should the input be read only? */
|
2021-09-30 12:09:43 -04:00
|
|
|
readonly: {
|
|
|
|
type: String,
|
|
|
|
default: undefined,
|
|
|
|
},
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Is the input disabled? */
|
2021-09-30 12:09:43 -04:00
|
|
|
disabled: {
|
|
|
|
type: String,
|
|
|
|
default: undefined,
|
|
|
|
},
|
|
|
|
},
|
2022-04-17 03:27:35 -04:00
|
|
|
emits: [ "update:modelValue" ],
|
2021-09-30 12:09:43 -04:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
visibility: "password",
|
|
|
|
icon: "copy",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
model: {
|
|
|
|
get() {
|
|
|
|
return this.modelValue;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this.$emit("update:modelValue", value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created() {
|
|
|
|
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Show the input */
|
2021-09-30 12:09:43 -04:00
|
|
|
showInput() {
|
|
|
|
this.visibility = "text";
|
|
|
|
},
|
|
|
|
|
2022-06-01 19:32:05 -04:00
|
|
|
/** Hide the input */
|
2021-09-30 12:09:43 -04:00
|
|
|
hideInput() {
|
|
|
|
this.visibility = "password";
|
|
|
|
},
|
|
|
|
|
2022-06-01 19:32:05 -04:00
|
|
|
/**
|
|
|
|
* Copy the provided text to the users clipboard
|
|
|
|
* @param {string} textToCopy
|
|
|
|
* @returns {Promise<void>}
|
|
|
|
*/
|
2021-09-30 12:09:43 -04:00
|
|
|
copyToClipboard(textToCopy) {
|
|
|
|
this.icon = "check";
|
|
|
|
|
|
|
|
clearTimeout(timeout);
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
this.icon = "copy";
|
|
|
|
}, 3000);
|
|
|
|
|
|
|
|
// navigator clipboard api needs a secure context (https)
|
|
|
|
if (navigator.clipboard && window.isSecureContext) {
|
|
|
|
// navigator clipboard api method'
|
|
|
|
return navigator.clipboard.writeText(textToCopy);
|
|
|
|
} else {
|
|
|
|
// text area method
|
|
|
|
let textArea = document.createElement("textarea");
|
|
|
|
textArea.value = textToCopy;
|
|
|
|
// make the textarea out of viewport
|
|
|
|
textArea.style.position = "fixed";
|
|
|
|
textArea.style.left = "-999999px";
|
|
|
|
textArea.style.top = "-999999px";
|
|
|
|
document.body.appendChild(textArea);
|
|
|
|
textArea.focus();
|
|
|
|
textArea.select();
|
|
|
|
return new Promise((res, rej) => {
|
|
|
|
// here the magic happens
|
|
|
|
document.execCommand("copy") ? res() : rej();
|
|
|
|
textArea.remove();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|