47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
export default class Clipboard {
|
|
constructor(target) {
|
|
this._target = target;
|
|
|
|
this._eventHandlers = {
|
|
'copy': this._handleCopy.bind(this),
|
|
'paste': this._handlePaste.bind(this)
|
|
};
|
|
|
|
// ===== EVENT HANDLERS =====
|
|
|
|
this.onpaste = () => {};
|
|
}
|
|
|
|
// ===== PRIVATE METHODS =====
|
|
|
|
_handleCopy(e) {
|
|
if (navigator.clipboard.writeText) {
|
|
navigator.clipboard.writeText(e.clipboardData.getData('text/plain')).catch(() => {/* Do nothing */});
|
|
}
|
|
}
|
|
|
|
_handlePaste(e) {
|
|
if (navigator.clipboard.readText) {
|
|
navigator.clipboard.readText().then(this.onpaste).catch(() => {/* Do nothing */});
|
|
} else if (e.clipboardData) {
|
|
this.onpaste(e.clipboardData.getData('text/plain'));
|
|
}
|
|
}
|
|
|
|
// ===== PUBLIC METHODS =====
|
|
|
|
grab() {
|
|
if (!Clipboard.isSupported) return;
|
|
this._target.addEventListener('copy', this._eventHandlers.copy);
|
|
this._target.addEventListener('paste', this._eventHandlers.paste);
|
|
}
|
|
|
|
ungrab() {
|
|
if (!Clipboard.isSupported) return;
|
|
this._target.removeEventListener('copy', this._eventHandlers.copy);
|
|
this._target.removeEventListener('paste', this._eventHandlers.paste);
|
|
}
|
|
}
|
|
|
|
Clipboard.isSupported = (navigator && navigator.clipboard) ? true : false;
|