From bc4e00f685042d7a61657944a342aeb957c901af Mon Sep 17 00:00:00 2001 From: Nan72 Date: Fri, 14 Feb 2025 12:25:24 +0700 Subject: [PATCH] ref: add base ext & convert camel case --- src/base.ts | 25 +++++++++++++++++++++++++ src/camel-case.ts | 18 ++++++------------ 2 files changed, 31 insertions(+), 12 deletions(-) create mode 100644 src/base.ts diff --git a/src/base.ts b/src/base.ts new file mode 100644 index 0000000..c61d4fa --- /dev/null +++ b/src/base.ts @@ -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; + } +} diff --git a/src/camel-case.ts b/src/camel-case.ts index c0286e7..7cb39e7 100644 --- a/src/camel-case.ts +++ b/src/camel-case.ts @@ -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); } }