UNPKG

scriptable-testlab

Version:

A lightweight, efficient tool designed to manage and update scripts for Scriptable.

64 lines 2 kB
var __defProp = Object.defineProperty; var __getOwnPropDesc = Object.getOwnPropertyDescriptor; var __getOwnPropNames = Object.getOwnPropertyNames; var __hasOwnProp = Object.prototype.hasOwnProperty; var __export = (target, all) => { for (var name in all) __defProp(target, name, { get: all[name], enumerable: true }); }; var __copyProps = (to, from, except, desc) => { if (from && typeof from === "object" || typeof from === "function") { for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable }); } return to; }; var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod); var quick_look_exports = {}; __export(quick_look_exports, { MockQuickLook: () => MockQuickLook }); module.exports = __toCommonJS(quick_look_exports); var import_scriptable_abstract = require("scriptable-abstract"); var import_data = require("../data"); var import_image = require("../media/image"); class MockQuickLook extends import_scriptable_abstract.AbsQuickLook { static get instance() { return super.instance; } constructor() { super({ lastPreviewedItem: null }); } /** * @inheritdoc */ async present(item) { if (item instanceof import_image.MockImage || item instanceof import_data.MockData || typeof item === "string") { this.setState({ lastPreviewedItem: item }); } else { throw new Error("Invalid item type for QuickLook preview"); } } /** * @additional * Get the last previewed item */ getLastPreviewedItem() { return this.state.lastPreviewedItem; } /** * @additional * Clear the preview history */ clear() { this.setState({ lastPreviewedItem: null }); } } // Annotate the CommonJS export names for ESM import in node: 0 && (module.exports = { MockQuickLook }); //# sourceMappingURL=quick-look.js.map