mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-01 01:25:45 -04:00
8a92054c2b
* Added JSDoc to eslint rules Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Fixed JSDoc eslint errors Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> * Update the check-linters workflow to Node.js 20 --------- Signed-off-by: Matthew Nickson <mnickson@sidingsmedia.com> Co-authored-by: Louis Lam <louislam@users.noreply.github.com>
143 lines
3.5 KiB
Vue
143 lines
3.5 KiB
Vue
<template>
|
|
<div class="input-group">
|
|
<input
|
|
:id="id"
|
|
ref="input"
|
|
v-model="model"
|
|
:type="type"
|
|
class="form-control"
|
|
:placeholder="placeholder"
|
|
:autocomplete="autocomplete"
|
|
:required="required"
|
|
:readonly="readonly"
|
|
:disabled="disabled"
|
|
>
|
|
|
|
<!-- A hidden textarea for copying text on non-https -->
|
|
<textarea ref="hiddenTextarea" style="position: fixed; left: -999999px; top: -999999px;"></textarea>
|
|
|
|
<a class="btn btn-outline-primary" @click="copyToClipboard(model)">
|
|
<font-awesome-icon :icon="icon" />
|
|
</a>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
let timeout;
|
|
|
|
export default {
|
|
props: {
|
|
/** ID of this input */
|
|
id: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
/** Type of input */
|
|
type: {
|
|
type: String,
|
|
default: "text"
|
|
},
|
|
/** The value of the input */
|
|
modelValue: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
/** A placeholder to use */
|
|
placeholder: {
|
|
type: String,
|
|
default: ""
|
|
},
|
|
/** Should the field auto complete */
|
|
autocomplete: {
|
|
type: String,
|
|
default: undefined,
|
|
},
|
|
/** Is the input required? */
|
|
required: {
|
|
type: Boolean
|
|
},
|
|
/** Should the input be read only? */
|
|
readonly: {
|
|
type: String,
|
|
default: undefined,
|
|
},
|
|
/** Is the input disabled? */
|
|
disabled: {
|
|
type: String,
|
|
default: undefined,
|
|
},
|
|
},
|
|
emits: [ "update:modelValue" ],
|
|
data() {
|
|
return {
|
|
visibility: "password",
|
|
icon: "copy",
|
|
};
|
|
},
|
|
computed: {
|
|
model: {
|
|
get() {
|
|
return this.modelValue;
|
|
},
|
|
set(value) {
|
|
this.$emit("update:modelValue", value);
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
/**
|
|
* Show the input
|
|
* @returns {void}
|
|
*/
|
|
showInput() {
|
|
this.visibility = "text";
|
|
},
|
|
|
|
/**
|
|
* Hide the input
|
|
* @returns {void}
|
|
*/
|
|
hideInput() {
|
|
this.visibility = "password";
|
|
},
|
|
|
|
/**
|
|
* Copy the provided text to the users clipboard
|
|
* @param {string} textToCopy Text to copy to clipboard
|
|
* @returns {Promise<void>}
|
|
*/
|
|
copyToClipboard(textToCopy) {
|
|
this.icon = "check";
|
|
|
|
clearTimeout(timeout);
|
|
timeout = setTimeout(() => {
|
|
this.icon = "copy";
|
|
}, 3000);
|
|
|
|
// navigator clipboard api needs a secure context (https)
|
|
// For http, use the text area method (else part)
|
|
if (navigator.clipboard && window.isSecureContext) {
|
|
// navigator clipboard api method'
|
|
return navigator.clipboard.writeText(textToCopy);
|
|
} else {
|
|
// text area method
|
|
let textArea = this.$refs.hiddenTextarea;
|
|
textArea.value = textToCopy;
|
|
textArea.focus();
|
|
textArea.select();
|
|
return new Promise((res, rej) => {
|
|
// here the magic happens
|
|
document.execCommand("copy") ? res() : rej();
|
|
});
|
|
}
|
|
}
|
|
|
|
}
|
|
};
|
|
</script>
|