feat(repeat): add command

This commit is contained in:
Nan72 2025-02-20 08:42:29 +07:00
parent 8391b264c8
commit d033deb3c3
No known key found for this signature in database
4 changed files with 49 additions and 2 deletions

View File

@ -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

View File

@ -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() {

View File

@ -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": []
}
]
},

42
src/preference/repeat.ts Normal file
View File

@ -0,0 +1,42 @@
import { expose, Form, TemplateUiCommand, ui, clipboard, toast } from "@kksh/api/ui/template";
class PaddingExt extends TemplateUiCommand {
async onFormSubmit(value: Record<string, any>): Promise<void> {
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())