mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
feat(repeat): add command
This commit is contained in:
parent
8391b264c8
commit
d033deb3c3
@ -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
|
||||
|
1
build.ts
1
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() {
|
||||
|
@ -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
42
src/preference/repeat.ts
Normal 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())
|
Loading…
x
Reference in New Issue
Block a user