Drafts Script Reference
    Preparing search index...

    Class App

    Drafts defines a single global app object which provides access to application level functions.

    Toggle light-dark mode

    // toggle dark-light mode
    if (app.currentThemeMode == 'dark') {
    app.themeMode = 'light';
    }
    else {
    app.themeMode = 'dark';
    }
    Index

    Clipboard

    • Get current contents of the system clipboard.

      Parameters

      • OptionalclipboardType: clipboardType

        Optionally specify a data type to fetch from the clipboard. Default: "string"

      Returns string

    • Takes HTML string and converts it to rich-text and places it in the system clipboard. Returns true if successful, false if an error occurred in conversion.

      Parameters

      • html: string

        a possibly-valid html string

      Returns boolean

    • Set the contents of the system clipboard.

      Parameters

      • contents: string | object

        the data to set in the clipboard. If a string is passed it is set in the clipboard. Optionally an object with clipboardType keys and string values can be passed to set multiple data types in the clipboard.

      Returns void

    Deprecated

    currentWorkspace: Workspace

    Use app.currentWindow.currentWorkspace

    isActionListVisible: boolean

    Use app.currentWindow.isActionListVisible

    isDraftListVisible: boolean

    Use app.currentWindow.isDraftListVisible

    • Parameters

      Returns boolean

      Use app.currentWindow.applyWorkspace

    • Returns void

      Use app.currentWindow.hideActionList

    • Returns void

      Use app.currentWindow.hideDraftList

    • Parameters

      Returns boolean

      Use app.currentWindow.loadActionBarGroup

    • Parameters

      Returns boolean

      Use app.currentWindow.loadActionGroup

    • Parameters

      Returns boolean

      Use app.currentWindow.loadActionBarGroup

    • Returns void

      Use app.currentWindow.showActionList

    • Parameters

      Returns void

      Use app.currentWindow.showDraftInfo

    • Returns void

      Use app.currentWindow.showDraftList

    • Parameters

      • OptionalinitialQuery: string

      Returns void

      Use app.currentWindow.showQuickSearch

    Interface

    currentWindow: Window

    Returns a window object configured representing the active window.

    • If able, open the requested draft in a new window. This method only functions on iPad and Mac. The ability to open new windows is not available on iPhone.

      Parameters

      Returns boolean

      true if successful. false if unable to open a new window (as on iPhone).

    • Open draft selection interface and wait for user to select a draft. Returns the select draft object, or undefined if user cancelled.

      Parameters

      • Optionalworkspace: Workspace

        If provided, the workspace will define the default filtering, display, and sort options for the selection window.

      Returns Draft

    Live Activities

    areLiveActivitiesSupported: boolean

    Check if Live Activities are supported on the current device/platform.

    • Start a Live Activity for the selected Draft. Returns true if Live Activity started successfully. Returns false if Live Activity could not be started, or Live Activities are not supported on the device.

      Parameters

      • draft: Draft

        The draft to use in the Live Activity

      Returns boolean

    • Stop a Live Activity for the selected Draft. Returns true if Live Activity stopped successfully.

      Parameters

      • draft: Draft

        The draft to use in the Live Activity

      Returns boolean

    Messages

    • Show error banner notification with the message passed.

      Parameters

      • message: string

      Returns void

    • Show info banner notification with the message passed.

      Parameters

      • message: string

      Returns void

    • Show success banner notification with the message passed.

      Parameters

      • message: string

      Returns void

    • Show warning banner notification with the message passed.

      Parameters

      • message: string

      Returns void

    System

    isIdleDisabled: boolean

    Is system sleep timer disabled preventing screen dimming/sleep.

    isPro: boolean

    Returns true if app has an active Drafts Pro subscription.

    version: string

    Version number of current installation of Drafts.

    Theme

    currentThemeMode: "light" | "dark"

    Returns the active theme mode, light or dark, taking into account automatic switching of themes if active. If writing scripts to branch logic based on the current mode, this is the best property to use.

    darkTheme: Theme

    The current dark mode theme.

    lightTheme: Theme

    The current light mode theme.

    themeMode: "light" | "dark" | "automatic"

    Get or set themeMode.

    Utility

    • Parameters

      • term: string

        term to open

      Returns boolean

    • Request system opens the URL passed. Returns true if URL was opened, false if the URL was invalid or no available app can open the URL on the device.

      Parameters

      • url: string

        url to open

      • OptionaluseSafari: boolean

        whether to use the Safari View Controller (true) or default browser (false).

      Returns boolean

    • Queues an action to run on a draft after the current action is complete.

      // lookup action and draft, and queue the action to run
      let a = Action.find("Copy");
      let d = Draft.find("UUID");
      app.queueAction(a, d);

      Parameters

      • action: Action

        Actions can be obtained using the Action.find(name) method.

      • draft: Draft

        A draft object.

      Returns boolean

    • Enable and disable the iOS system sleep timer to prevent screen dimming/sleep.

      Parameters

      • isDisabled: boolean

      Returns void

    Morty Proxy This is a proxified and sanitized view of the page, visit original site.