diff options
Diffstat (limited to 'web/pw-server/src/lib')
-rw-r--r-- | web/pw-server/src/lib/bot_code.ts | 15 | ||||
-rw-r--r-- | web/pw-server/src/lib/utils.ts | 9 |
2 files changed, 24 insertions, 0 deletions
diff --git a/web/pw-server/src/lib/bot_code.ts b/web/pw-server/src/lib/bot_code.ts new file mode 100644 index 0000000..088db72 --- /dev/null +++ b/web/pw-server/src/lib/bot_code.ts @@ -0,0 +1,15 @@ +import defaultBotCode from "../assets/bot_template.txt?raw"; + +const BOT_CODE_KEY = "bot_code"; + +export function getBotCode() { + let botCode = localStorage.getItem(BOT_CODE_KEY); + if (!botCode) { + botCode = defaultBotCode; + } + return botCode; +} + +export function saveBotCode(botCode: string) { + localStorage.setItem(BOT_CODE_KEY, botCode); +} diff --git a/web/pw-server/src/lib/utils.ts b/web/pw-server/src/lib/utils.ts new file mode 100644 index 0000000..aab9734 --- /dev/null +++ b/web/pw-server/src/lib/utils.ts @@ -0,0 +1,9 @@ +export function debounce(func: Function, timeout: number = 300) { + let timer: ReturnType<typeof setTimeout>; + return (...args: any[]) => { + clearTimeout(timer); + timer = setTimeout(() => { + func.apply(this, args); + }, timeout); + }; +} |