diff --git a/README.md b/README.md index 262b0d9..4e70d15 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,7 @@ See [Documentation](https://docs.kunkun.sh/guides/extensions/publish/design/) fo # TODO - [x] RaNdOm CaSE - [x] Lorem ipsum -- [ ] Lorem ipsum (Preferences) -- [ ] Repeat +- [x] Repeat - [ ] Replace - [ ] Escape HTML - [ ] Unescape HTML diff --git a/build.ts b/build.ts index a6e71c3..7436267 100644 --- a/build.ts +++ b/build.ts @@ -18,6 +18,7 @@ const entrypoints = [ "./src/headless/lorem.ts", "./src/preference/truncate.ts", "./src/preference/pad.ts", + "./src/preference/repeat.ts", ]; async function build() { diff --git a/package.json b/package.json index a3080fb..3860b06 100644 --- a/package.json +++ b/package.json @@ -92,6 +92,11 @@ "main": "dist/pad.js", "name": "Pad a string to a maximum length", "cmds": [] + }, + { + "main": "dist/repeat.js", + "name": "Repeat a string a given number of times", + "cmds": [] } ] }, diff --git a/src/preference/repeat.ts b/src/preference/repeat.ts new file mode 100644 index 0000000..53b053f --- /dev/null +++ b/src/preference/repeat.ts @@ -0,0 +1,42 @@ +import { expose, Form, TemplateUiCommand, ui, clipboard, toast } from "@kksh/api/ui/template"; + +class PaddingExt extends TemplateUiCommand { + async onFormSubmit(value: Record): Promise { + value.separator = value.separator || ""; + const repeatedText = new Array(value.count).fill(value.input).join(value.separator); + await clipboard.writeText(repeatedText); + await toast.success(`Copied repeated text "${repeatedText}"`); + } + + async load() { + const clipboardText = await clipboard.readText(); + + return ui.render( + new Form.Form({ + key: "loremForm", + fields: [ + new Form.InputField({ + key: "input", + label: "Input", + placeholder: "The text to repeat", + default: clipboardText, + }), + new Form.NumberField({ + key: "count", + label: "Count", + placeholder: "The number of times to repeat the text", + default: 1, + }), + new Form.InputField({ + key: "separator", + label: "Separator (default space)", + placeholder: "The separator between the repeated text", + default: " ", + }), + ] + }) + ); + } +} + +expose(new PaddingExt())