var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) { if (kind === "m") throw new TypeError("Private method is not writable"); if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; }; var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) { if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); }; var _Clipboard_ownerWindow, _Clipboard_data; import DOMException from '../exception/DOMException.js'; import ClipboardItem from './ClipboardItem.js'; import Blob from '../file/Blob.js'; /** * Clipboard API. * * Reference: * https://developer.mozilla.org/en-US/docs/Web/API/Clipboard. */ class Clipboard { /** * Constructor. * * @param ownerWindow Owner window. */ constructor(ownerWindow) { _Clipboard_ownerWindow.set(this, void 0); _Clipboard_data.set(this, []); __classPrivateFieldSet(this, _Clipboard_ownerWindow, ownerWindow, "f"); } /** * Returns data. * * @returns Data. */ async read() { const permissionStatus = await __classPrivateFieldGet(this, _Clipboard_ownerWindow, "f").navigator.permissions.query({ name: 'clipboard-read' }); if (permissionStatus.state === 'denied') { throw new DOMException(`Failed to execute 'read' on 'Clipboard': The request is not allowed`); } return __classPrivateFieldGet(this, _Clipboard_data, "f"); } /** * Returns text. * * @returns Text. */ async readText() { const permissionStatus = await __classPrivateFieldGet(this, _Clipboard_ownerWindow, "f").navigator.permissions.query({ name: 'clipboard-read' }); if (permissionStatus.state === 'denied') { throw new DOMException(`Failed to execute 'readText' on 'Clipboard': The request is not allowed`); } let text = ''; for (const item of __classPrivateFieldGet(this, _Clipboard_data, "f")) { if (item.types.includes('text/plain')) { text += await (await item.getType('text/plain')).text(); } } return text; } /** * Writes data. * * @param data Data. */ async write(data) { const permissionStatus = await __classPrivateFieldGet(this, _Clipboard_ownerWindow, "f").navigator.permissions.query({ name: 'clipboard-write' }); if (permissionStatus.state === 'denied') { throw new DOMException(`Failed to execute 'write' on 'Clipboard': The request is not allowed`); } __classPrivateFieldSet(this, _Clipboard_data, data, "f"); } /** * Writes text. * * @param text Text. */ async writeText(text) { const permissionStatus = await __classPrivateFieldGet(this, _Clipboard_ownerWindow, "f").navigator.permissions.query({ name: 'clipboard-write' }); if (permissionStatus.state === 'denied') { throw new DOMException(`Failed to execute 'writeText' on 'Clipboard': The request is not allowed`); } __classPrivateFieldSet(this, _Clipboard_data, [new ClipboardItem({ 'text/plain': new Blob([text], { type: 'text/plain' }) })], "f"); } } _Clipboard_ownerWindow = new WeakMap(), _Clipboard_data = new WeakMap(); export default Clipboard; //# sourceMappingURL=Clipboard.js.map