mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
feat(pad): add padding command
This commit is contained in:
parent
d8c0bfdf3a
commit
d6d14d167e
2
build.ts
2
build.ts
@ -14,7 +14,9 @@ const entrypoints = [
|
||||
"./src/trim.ts",
|
||||
"./src/trim-end.ts",
|
||||
"./src/trim-start.ts",
|
||||
|
||||
"./src/uis/truncate.ts",
|
||||
"./src/uis/pad.ts",
|
||||
];
|
||||
|
||||
async function build() {
|
||||
|
@ -77,6 +77,11 @@
|
||||
"main": "dist/truncate.js",
|
||||
"name": "Truncate a string to a maximum length",
|
||||
"cmds": []
|
||||
},
|
||||
{
|
||||
"main": "dist/pad.js",
|
||||
"name": "Pad a string to a maximum length",
|
||||
"cmds": []
|
||||
}
|
||||
]
|
||||
},
|
||||
|
63
src/uis/pad.ts
Normal file
63
src/uis/pad.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { expose, Form, TemplateUiCommand, ui, clipboard, toast } from "@kksh/api/ui/template";
|
||||
import { isEmpty } from "lodash";
|
||||
import padStart from "lodash/padStart";
|
||||
import padEnd from "lodash/padEnd";
|
||||
|
||||
class PaddingExt extends TemplateUiCommand {
|
||||
async onFormSubmit(value: Record<string, any>): Promise<void> {
|
||||
const func = value.padStart ? padStart : padEnd;
|
||||
|
||||
if (value.length <= 0) {
|
||||
await toast.error("Length must be greater than 0");
|
||||
return;
|
||||
}
|
||||
|
||||
if (isEmpty(value.char)) {
|
||||
await toast.error("Padding character(s) must not be empty");
|
||||
return;
|
||||
}
|
||||
|
||||
const paddedText = func(value.string, value.length, value.char);
|
||||
await clipboard.writeText(paddedText);
|
||||
await toast.success(`Copied padded text "${paddedText}"`);
|
||||
return;
|
||||
}
|
||||
|
||||
async load() {
|
||||
const clipboardText = await clipboard.readText();
|
||||
|
||||
return ui.render(
|
||||
new Form.Form({
|
||||
key: "paddingForm",
|
||||
fields: [
|
||||
new Form.InputField({
|
||||
key: "string",
|
||||
label: "Text",
|
||||
placeholder: "The text to pad",
|
||||
default: clipboardText,
|
||||
component: "textarea",
|
||||
}),
|
||||
new Form.BooleanField({
|
||||
key: "padStart",
|
||||
label: "Pad start",
|
||||
default: true,
|
||||
}),
|
||||
new Form.NumberField({
|
||||
key: "length",
|
||||
label: "Length - pad if the string length is shorter, truncate if longer",
|
||||
placeholder: "The length to pad to",
|
||||
default: clipboardText.length,
|
||||
}),
|
||||
new Form.InputField({
|
||||
key: "char",
|
||||
label: "Padding characters - pad with these characters",
|
||||
placeholder: "The character to pad with",
|
||||
default: "0",
|
||||
}),
|
||||
],
|
||||
})
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
expose(new PaddingExt())
|
Loading…
x
Reference in New Issue
Block a user