2.1.0 • Published 3 years ago

node-mtmr v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

Node MTMR

This is a Node library which wraps around MTMR. It is highly recommended to use this library with typescript. The main features are:

  1. TS/JS support for button handlers
  2. Typescript typings for the items

For further documentation have a look at the original repo.

Installation

Here you find the NPM Page.

npm i node-mtmr

Or

yarn add node-mtmr

Setup

A working example can be found here.

Initialize parse

Create an index file inside your "src" directory. In this file call the "createParse" function:

import { createParse } from "node-mtmr";

const parse = createParse({
  outDir: "./my-mtmr-config",
  loggingEnabled: true,
});
  1. "outDir" is the output path for the script and assets. It's either relative to the cwd or absolute
  2. "loggingEnabled" configures the logging output

Execute parse

Pass the items to the parse function. The result is a correct MTMR item array.

const result = await parse(items);

Save result

There is a utility function for saving the output into the MTMR directory. Pass an options object with the force set to true to overwrite an existing file.

import { saveItems } from "node-mtmr";

saveItems(result, { force: true });

Utilities

If you want to create a ScriptTitledButton with a jsSource you can use either the createSourceScriptSync or the createSourceScript function. These will handle your script result and hand them to MTMR.

createSourceScriptSync(() => {
  const buttonLabel = "Label";
  const imageIdentifier = "inactive";

  return {
    label: buttonLabel,
    imgKey: imageIdentifier,
  };
});

or async

createSourceScript(async () => {
  const label = await func();
  return label;
});

or pass the result to the sourceOutput util function

sourceOutput({
  label: "Label",
  imgKey: "key",
});

If you your button needs a state make use of the state functions. Internally the data is stored in your computers ''/tmp/'' folder (so it might be deleted at some point):

const stateId = "counter";

const count = stateValue<number>(stateId, 0);
const setCount = stateFunction<number>(stateId);
const [count, setCount] = state<number>(stateId);

JavaScriptTitledButton

This is the new item type which supports JavaScript.

{
  type: "scriptTitledButton",
  sourceType: "javaScript",
  jsSource: {
    inline: () => {
      // Your function logic
    },
  },
  actions: [
    {
      action: "javaScript",
      trigger: "singleTap",
      actionJavaScript: {
        filePath: "./path/to/js/file.js",
      },
    },
  ],
}
2.1.0

3 years ago

1.7.0

3 years ago

1.6.0

3 years ago

1.5.0

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

2.0.0

3 years ago