mirror of
https://github.com/NaN72dev/kunkun-ext-string-utils.git
synced 2025-04-03 17:56:45 +00:00
ref: add base ext & convert camel case
This commit is contained in:
parent
d948f42c49
commit
bc4e00f685
25
src/base.ts
Normal file
25
src/base.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import {clipboard, HeadlessCommand, toast} from "@kksh/api/headless";
|
||||
|
||||
export class BaseExt extends HeadlessCommand {
|
||||
_func: Function;
|
||||
|
||||
constructor(func: (text: string) => string) {
|
||||
super();
|
||||
|
||||
this._func = func;
|
||||
}
|
||||
|
||||
async load() {
|
||||
if (!await clipboard.hasText()) {
|
||||
await toast.error("Clipboard is empty");
|
||||
return;
|
||||
}
|
||||
|
||||
const clipboardText = await clipboard.readText();
|
||||
const convertedText = this._func(clipboardText);
|
||||
|
||||
await clipboard.writeText(convertedText);
|
||||
await toast.success(`Copied "${convertedText}"`);
|
||||
return;
|
||||
}
|
||||
}
|
@ -1,16 +1,10 @@
|
||||
import { clipboard, expose, HeadlessCommand, toast } from "@kksh/api/headless"
|
||||
import camelCase from "lodash/camelcase"
|
||||
import {expose} from "@kksh/api/headless";
|
||||
import camelCase from "lodash/camelcase";
|
||||
import {BaseExt} from "./base";
|
||||
|
||||
class CamelCaseExt extends HeadlessCommand {
|
||||
async load() {
|
||||
if (!await clipboard.hasText()) return;
|
||||
|
||||
const clipboardText = await clipboard.readText();
|
||||
const convertedText = camelCase(clipboardText);
|
||||
|
||||
await clipboard.writeText(convertedText);
|
||||
await toast.success(`Copied: "${convertedText}"`);
|
||||
return
|
||||
class CamelCaseExt extends BaseExt {
|
||||
constructor() {
|
||||
super(camelCase);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user