1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- /**
- * @author Matt C [me@mitt.dev]
- * @copyright Crown Copyright 2020
- * @license Apache-2.0
- */
- import Operation from "../Operation.mjs";
- import Utils from "../Utils.mjs";
- /**
- * Unicode Text Format operation
- */
- class UnicodeTextFormat extends Operation {
- /**
- * UnicodeTextFormat constructor
- */
- constructor() {
- super();
- this.name = "Unicode Text Format";
- this.module = "Default";
- this.description = "Adds Unicode combining characters to change formatting of plaintext.";
- this.infoURL = "https://en.wikipedia.org/wiki/Combining_character";
- this.inputType = "byteArray";
- this.outputType = "byteArray";
- this.args = [
- {
- name: "Underline",
- type: "boolean",
- value: "false"
- },
- {
- name: "Strikethrough",
- type: "boolean",
- value: "false"
- }
- ];
- }
- /**
- * @param {byteArray} input
- * @param {Object[]} args
- * @returns {byteArray}
- */
- run(input, args) {
- const [underline, strikethrough] = args;
- let output = input.map(char => [char]);
- console.dir(output);
- if (strikethrough) {
- output = output.map(charFormat => {
- charFormat.push(...Utils.strToUtf8ByteArray("\u0336"));
- return charFormat;
- });
- }
- if (underline) {
- output = output.map(charFormat => {
- charFormat.push(...Utils.strToUtf8ByteArray("\u0332"));
- return charFormat;
- });
- }
- console.dir(output);
- return output.flat();
- }
- }
- export default UnicodeTextFormat;
|