mirror of
https://github.com/kunkunsh/kunkun-ext-serve.git
synced 2025-04-03 18:16:42 +00:00
feat: implemented file server command with Deno
This commit is contained in:
parent
6806151d0c
commit
d2a05753b3
23
.gitignore
vendored
Normal file
23
.gitignore
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
node_modules
|
||||
|
||||
# Output
|
||||
.output
|
||||
.vercel
|
||||
/.svelte-kit
|
||||
/build
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Env
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
!.env.test
|
||||
|
||||
# Vite
|
||||
vite.config.js.timestamp-*
|
||||
vite.config.ts.timestamp-*
|
||||
extensions_support/
|
||||
|
4
.prettierignore
Normal file
4
.prettierignore
Normal file
@ -0,0 +1,4 @@
|
||||
# Package Managers
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
||||
yarn.lock
|
15
.prettierrc
Normal file
15
.prettierrc
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"useTabs": true,
|
||||
"singleQuote": true,
|
||||
"trailingComma": "none",
|
||||
"printWidth": 100,
|
||||
"plugins": ["prettier-plugin-svelte", "prettier-plugin-tailwindcss"],
|
||||
"overrides": [
|
||||
{
|
||||
"files": "*.svelte",
|
||||
"options": {
|
||||
"parser": "svelte"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"deno.enable": false
|
||||
}
|
@ -1,2 +1,5 @@
|
||||
# Kunkun File Server Extension
|
||||
|
||||
Similar to `npx serve` CLI tool. This extension allows you to serve local files with http.
|
||||
|
||||

|
||||
|
14
components.json
Normal file
14
components.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"$schema": "https://shadcn-svelte.com/schema.json",
|
||||
"style": "new-york",
|
||||
"tailwind": {
|
||||
"config": "tailwind.config.ts",
|
||||
"css": "src/app.css",
|
||||
"baseColor": "neutral"
|
||||
},
|
||||
"aliases": {
|
||||
"components": "$lib/components",
|
||||
"utils": "$lib/utils"
|
||||
},
|
||||
"typescript": true
|
||||
}
|
9
deno-src/deno.json
Normal file
9
deno-src/deno.json
Normal file
@ -0,0 +1,9 @@
|
||||
{
|
||||
"tasks": {
|
||||
"dev": "deno run --watch main.ts"
|
||||
},
|
||||
"imports": {
|
||||
"@kunkun/api": "jsr:@kunkun/api@^0.0.52",
|
||||
"@std/assert": "jsr:@std/assert@1"
|
||||
}
|
||||
}
|
1463
deno-src/deno.lock
generated
Normal file
1463
deno-src/deno.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
8
deno-src/dev.ts
Normal file
8
deno-src/dev.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { serveDir } from 'jsr:@std/http/file-server';
|
||||
|
||||
const server = Deno.serve({ port: 0 }, (req: Request) => {
|
||||
return serveDir(req, {
|
||||
fsRoot: '/Users/hk/Dev/others/excalidraw/excalidraw-app/build'
|
||||
});
|
||||
});
|
||||
console.error('Server started at port', server.addr.port);
|
16
deno-src/index.ts
Normal file
16
deno-src/index.ts
Normal file
@ -0,0 +1,16 @@
|
||||
import { expose } from '@kunkun/api/runtime/deno';
|
||||
import { serveDir } from 'jsr:@std/http/file-server';
|
||||
import type { API } from '../src/api.types.ts';
|
||||
|
||||
expose({
|
||||
serve: (path: string, port: number): Promise<number> => {
|
||||
// const port2 = port ?? findFreePort();
|
||||
const server = Deno.serve({ port }, (req: Request) => {
|
||||
return serveDir(req, {
|
||||
fsRoot: path
|
||||
});
|
||||
});
|
||||
console.error('Server started at port', path, server.addr.port);
|
||||
return Promise.resolve(server.addr.port);
|
||||
}
|
||||
} satisfies API);
|
33
eslint.config.js
Normal file
33
eslint.config.js
Normal file
@ -0,0 +1,33 @@
|
||||
import js from '@eslint/js';
|
||||
import ts from 'typescript-eslint';
|
||||
import svelte from 'eslint-plugin-svelte';
|
||||
import prettier from 'eslint-config-prettier';
|
||||
import globals from 'globals';
|
||||
|
||||
/** @type {import('eslint').Linter.Config[]} */
|
||||
export default [
|
||||
js.configs.recommended,
|
||||
...ts.configs.recommended,
|
||||
...svelte.configs['flat/recommended'],
|
||||
prettier,
|
||||
...svelte.configs['flat/prettier'],
|
||||
{
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
files: ['**/*.svelte'],
|
||||
languageOptions: {
|
||||
parserOptions: {
|
||||
parser: ts.parser
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
ignores: ['build/', '.svelte-kit/', 'dist/']
|
||||
}
|
||||
];
|
124
package.json
Normal file
124
package.json
Normal file
@ -0,0 +1,124 @@
|
||||
{
|
||||
"$schema": "https://schema.kunkun.sh",
|
||||
"name": "kunkun-ext-serve",
|
||||
"version": "0.0.6",
|
||||
"license": "MIT",
|
||||
"kunkun": {
|
||||
"name": "Static File Server",
|
||||
"shortDescription": "Serve static files from local directory",
|
||||
"longDescription": "Serve static files from local directory",
|
||||
"identifier": "kunkun-ext-serve",
|
||||
"icon": {
|
||||
"type": "iconify",
|
||||
"value": "mdi:server"
|
||||
},
|
||||
"demoImages": [],
|
||||
"permissions": [
|
||||
"dialog:all",
|
||||
"event:drag-drop",
|
||||
"event:drag-enter",
|
||||
"event:drag-leave",
|
||||
"event:drag-over",
|
||||
{
|
||||
"permission": "fs:exists",
|
||||
"allow": [
|
||||
{
|
||||
"path": "**"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"permission": "fs:stat",
|
||||
"allow": [
|
||||
{
|
||||
"path": "**"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"permission": "shell:deno:spawn",
|
||||
"allow": [
|
||||
{
|
||||
"path": "$EXTENSION/deno-src/index.ts",
|
||||
"net": "*",
|
||||
"read": "*"
|
||||
}
|
||||
]
|
||||
},
|
||||
"shell:stdin-write",
|
||||
"shell:kill",
|
||||
{
|
||||
"permission": "open:folder",
|
||||
"allow": [
|
||||
{
|
||||
"path": "**"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"permission": "open:url",
|
||||
"allow": [
|
||||
{
|
||||
"url": "http://localhost:*"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"customUiCmds": [
|
||||
{
|
||||
"main": "/",
|
||||
"dist": "build",
|
||||
"devMain": "http://localhost:5173",
|
||||
"name": "Serve Static Files",
|
||||
"cmds": []
|
||||
}
|
||||
],
|
||||
"templateUiCmds": []
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite dev",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview",
|
||||
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
|
||||
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
|
||||
"lint": "prettier --check . && eslint .",
|
||||
"format": "prettier --write ."
|
||||
},
|
||||
"dependencies": {
|
||||
"@kksh/api": "0.0.55",
|
||||
"@kksh/svelte5": "0.1.14",
|
||||
"clsx": "^2.1.1",
|
||||
"lucide-svelte": "^0.469.0",
|
||||
"mode-watcher": "^0.5.0",
|
||||
"tailwind-merge": "^2.6.0",
|
||||
"tailwind-variants": "^0.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@sveltejs/adapter-auto": "^3.3.1",
|
||||
"@sveltejs/kit": "^2.15.2",
|
||||
"@sveltejs/vite-plugin-svelte": "^5.0.3",
|
||||
"svelte": "^5.16.6",
|
||||
"svelte-check": "^4.1.1",
|
||||
"typescript": "^5.7.2",
|
||||
"vite": "^6.0.7",
|
||||
"@sveltejs/adapter-static": "^3.0.8",
|
||||
"@tailwindcss/typography": "^0.5.16",
|
||||
"@types/eslint": "^9.6.1",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"eslint": "^9.17.0",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-svelte": "^2.46.1",
|
||||
"globals": "^15.14.0",
|
||||
"postcss": "^8.4.49",
|
||||
"prettier": "^3.4.2",
|
||||
"prettier-plugin-svelte": "^3.3.2",
|
||||
"prettier-plugin-tailwindcss": "^0.6.9",
|
||||
"tailwindcss": "^3.4.17",
|
||||
"typescript-eslint": "^8.19.1"
|
||||
},
|
||||
"type": "module",
|
||||
"files": [
|
||||
"build",
|
||||
".gitignore"
|
||||
]
|
||||
}
|
6
postcss.config.js
Normal file
6
postcss.config.js
Normal file
@ -0,0 +1,6 @@
|
||||
export default {
|
||||
plugins: {
|
||||
tailwindcss: {},
|
||||
autoprefixer: {}
|
||||
}
|
||||
};
|
3
src/api.types.ts
Normal file
3
src/api.types.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export interface API {
|
||||
serve: (path: string, port: number) => Promise<number>;
|
||||
}
|
80
src/app.css
Normal file
80
src/app.css
Normal file
@ -0,0 +1,80 @@
|
||||
@import url('@kksh/svelte5/themes');
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
@layer base {
|
||||
:root {
|
||||
--background: 0 0% 100%;
|
||||
--foreground: 0 0% 3.9%;
|
||||
|
||||
--muted: 0 0% 96.1%;
|
||||
--muted-foreground: 0 0% 45.1%;
|
||||
|
||||
--popover: 0 0% 100%;
|
||||
--popover-foreground: 0 0% 3.9%;
|
||||
|
||||
--card: 0 0% 100%;
|
||||
--card-foreground: 0 0% 3.9%;
|
||||
|
||||
--border: 0 0% 89.8%;
|
||||
--input: 0 0% 89.8%;
|
||||
|
||||
--primary: 0 0% 9%;
|
||||
--primary-foreground: 0 0% 98%;
|
||||
|
||||
--secondary: 0 0% 96.1%;
|
||||
--secondary-foreground: 0 0% 9%;
|
||||
|
||||
--accent: 0 0% 96.1%;
|
||||
--accent-foreground: 0 0% 9%;
|
||||
|
||||
--destructive: 0 72.2% 50.6%;
|
||||
--destructive-foreground: 0 0% 98%;
|
||||
|
||||
--ring: 0 0% 3.9%;
|
||||
|
||||
--radius: 0.5rem;
|
||||
}
|
||||
|
||||
.dark {
|
||||
--background: 0 0% 3.9%;
|
||||
--foreground: 0 0% 98%;
|
||||
|
||||
--muted: 0 0% 14.9%;
|
||||
--muted-foreground: 0 0% 63.9%;
|
||||
|
||||
--popover: 0 0% 3.9%;
|
||||
--popover-foreground: 0 0% 98%;
|
||||
|
||||
--card: 0 0% 3.9%;
|
||||
--card-foreground: 0 0% 98%;
|
||||
|
||||
--border: 0 0% 14.9%;
|
||||
--input: 0 0% 14.9%;
|
||||
|
||||
--primary: 0 0% 98%;
|
||||
--primary-foreground: 0 0% 9%;
|
||||
|
||||
--secondary: 0 0% 14.9%;
|
||||
--secondary-foreground: 0 0% 98%;
|
||||
|
||||
--accent: 0 0% 14.9%;
|
||||
--accent-foreground: 0 0% 98%;
|
||||
|
||||
--destructive: 0 62.8% 30.6%;
|
||||
--destructive-foreground: 0 0% 98%;
|
||||
|
||||
--ring: 0 0% 83.1%;
|
||||
}
|
||||
}
|
||||
|
||||
@layer base {
|
||||
* {
|
||||
@apply border-border;
|
||||
}
|
||||
|
||||
body {
|
||||
@apply bg-background text-foreground;
|
||||
}
|
||||
}
|
13
src/app.d.ts
vendored
Normal file
13
src/app.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
// See https://kit.svelte.dev/docs/types#app
|
||||
// for information about these interfaces
|
||||
declare global {
|
||||
namespace App {
|
||||
// interface Error {}
|
||||
// interface Locals {}
|
||||
// interface PageData {}
|
||||
// interface PageState {}
|
||||
// interface Platform {}
|
||||
}
|
||||
}
|
||||
|
||||
export {};
|
12
src/app.html
Normal file
12
src/app.html
Normal file
@ -0,0 +1,12 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
24
src/lib/api.ts
Normal file
24
src/lib/api.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import type { API } from '../api.types.ts';
|
||||
import { shell } from '@kksh/api/ui/iframe';
|
||||
|
||||
export async function getRpcAPI() {
|
||||
const { rpcChannel, process, command } = await shell.createDenoRpcChannel<object, API>(
|
||||
'$EXTENSION/deno-src/index.ts',
|
||||
[],
|
||||
{
|
||||
allowAllNet: true,
|
||||
allowAllRead: true
|
||||
},
|
||||
{}
|
||||
);
|
||||
command.stderr.on('data', (data: string) => {
|
||||
console.warn(data);
|
||||
});
|
||||
const api = rpcChannel.getAPI();
|
||||
return {
|
||||
api,
|
||||
rpcChannel,
|
||||
process,
|
||||
command
|
||||
};
|
||||
}
|
46
src/lib/components/JobCard.svelte
Normal file
46
src/lib/components/JobCard.svelte
Normal file
@ -0,0 +1,46 @@
|
||||
<script lang="ts">
|
||||
import { Button, Card } from '@kksh/svelte5';
|
||||
import type { ServeJob } from '@/models';
|
||||
import { open, toast } from '@kksh/api/ui/iframe';
|
||||
import { jobsStore } from '@/stores/jobs';
|
||||
|
||||
let { job }: { job: ServeJob } = $props();
|
||||
</script>
|
||||
|
||||
<Card.Root>
|
||||
<Card.Content>
|
||||
<p><strong>URL:</strong> <code>http://localhost:{job.port}</code></p>
|
||||
<p><strong>Path:</strong> <code>{job.path}</code></p>
|
||||
</Card.Content>
|
||||
<Card.Footer class="flex gap-2">
|
||||
<Button
|
||||
class="w-full"
|
||||
variant="destructive"
|
||||
onclick={() => {
|
||||
job.process
|
||||
.kill()
|
||||
.then(() => {
|
||||
toast.success('Killed');
|
||||
jobsStore.removeJob(job);
|
||||
})
|
||||
.catch((err) => {
|
||||
toast.error('Failed to kill', {
|
||||
description: 'Quiting this extension will automatically kill all servers'
|
||||
});
|
||||
});
|
||||
}}
|
||||
>
|
||||
Kill
|
||||
</Button>
|
||||
<Button
|
||||
class="w-full"
|
||||
variant="default"
|
||||
onclick={() => open.url(`http://localhost:${job.port}`)}
|
||||
>
|
||||
Open URL
|
||||
</Button>
|
||||
<Button class="w-full" variant="secondary" onclick={() => open.folder(job.path)}>
|
||||
Open Folder
|
||||
</Button>
|
||||
</Card.Footer>
|
||||
</Card.Root>
|
66
src/lib/components/SelectForm.svelte
Normal file
66
src/lib/components/SelectForm.svelte
Normal file
@ -0,0 +1,66 @@
|
||||
<script lang="ts">
|
||||
import { Input, Label, Button } from '@kksh/svelte5';
|
||||
import { onMount } from 'svelte';
|
||||
import { event, toast, fs, dialog } from '@kksh/api/ui/iframe';
|
||||
|
||||
// let isDragging = false;
|
||||
let { onSubmit }: { onSubmit: (path: string, port: number) => void } = $props();
|
||||
let path = $state('');
|
||||
let port = $state(0);
|
||||
|
||||
onMount(() => {
|
||||
// event.onDragEnter(() => {
|
||||
// isDragging = true;
|
||||
// });
|
||||
// event.onDragLeave(() => {
|
||||
// isDragging = false;
|
||||
// });
|
||||
event.onDragDrop(async (e) => {
|
||||
const paths = e.paths;
|
||||
if (paths.length > 1) {
|
||||
toast.error('Only one folder can be served at a time');
|
||||
return;
|
||||
}
|
||||
if (paths.length === 0) {
|
||||
toast.error('No folder selected');
|
||||
return;
|
||||
}
|
||||
path = paths[0];
|
||||
const stat = await fs.stat(path);
|
||||
if (!stat.isDirectory) {
|
||||
toast.error('Selected path is not a folder');
|
||||
return;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
async function selectDirectory() {
|
||||
const result: string = await dialog.open({
|
||||
directory: true,
|
||||
multiple: false
|
||||
});
|
||||
if (!result) {
|
||||
return toast.warning('No directory selected');
|
||||
}
|
||||
if (!(await fs.exists(result))) {
|
||||
return toast.error('Directory does not exist');
|
||||
}
|
||||
path = result;
|
||||
}
|
||||
</script>
|
||||
|
||||
<form
|
||||
onsubmit={(e) => {
|
||||
e.preventDefault();
|
||||
onSubmit(path, port);
|
||||
}}
|
||||
>
|
||||
<Label>Path to Serve <span class="text-red-500">(or drag and drop a folder)</span></Label>
|
||||
<div class="flex gap-2">
|
||||
<Input bind:value={path} placeholder="Enter path to serve" />
|
||||
<Button onclick={selectDirectory}>Select Folder</Button>
|
||||
</div>
|
||||
<Label>Port <span class="text-red-500">(use 0 to auto assign)</span></Label>
|
||||
<Input bind:value={port} placeholder="Enter port to serve" />
|
||||
<Button type="submit" class="w-full">Serve</Button>
|
||||
</form>
|
20
src/lib/components/ThemeCustomizer.svelte
Normal file
20
src/lib/components/ThemeCustomizer.svelte
Normal file
@ -0,0 +1,20 @@
|
||||
<script lang="ts">
|
||||
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte5';
|
||||
import { ui } from '@kksh/api/ui/iframe';
|
||||
import { onMount } from 'svelte';
|
||||
|
||||
let config: ThemeConfig = {
|
||||
radius: 0.5,
|
||||
theme: 'zinc',
|
||||
lightMode: 'auto'
|
||||
};
|
||||
onMount(() => {
|
||||
ui.getTheme().then((theme) => {
|
||||
config = theme;
|
||||
});
|
||||
});
|
||||
|
||||
$: updateTheme(config);
|
||||
</script>
|
||||
|
||||
<ThemeCustomizerButton bind:config />
|
1
src/lib/index.ts
Normal file
1
src/lib/index.ts
Normal file
@ -0,0 +1 @@
|
||||
// place files you want to import through the `$lib` alias in this folder.
|
12
src/lib/models.ts
Normal file
12
src/lib/models.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import type { Child } from '@kksh/api/ui/iframe';
|
||||
|
||||
export type Process = {
|
||||
kill: () => Promise<void>;
|
||||
};
|
||||
|
||||
export type ServeJob = {
|
||||
path: string;
|
||||
port: number;
|
||||
process: Child;
|
||||
// process: Process;
|
||||
};
|
33
src/lib/stores/jobs.ts
Normal file
33
src/lib/stores/jobs.ts
Normal file
@ -0,0 +1,33 @@
|
||||
import type { ServeJob } from '@/models';
|
||||
import { writable } from 'svelte/store';
|
||||
|
||||
export function createJobsStore() {
|
||||
const store = writable<ServeJob[]>([]);
|
||||
|
||||
function addJob(job: ServeJob) {
|
||||
store.update((jobs) => [...jobs, job]);
|
||||
}
|
||||
|
||||
function removeJob(job: ServeJob) {
|
||||
// there could be multiple jobs serving the same path, so we also need to compare port
|
||||
store.update((jobs) => jobs.filter((j) => j.path !== job.path || j.port !== job.port));
|
||||
}
|
||||
|
||||
return {
|
||||
...store,
|
||||
addJob,
|
||||
removeJob
|
||||
};
|
||||
}
|
||||
|
||||
export const jobsStore = createJobsStore();
|
||||
// jobsStore.addJob({
|
||||
// path: '/Users/hk/Dev/others/excalidraw/excalidraw-app/build',
|
||||
// port: 8080,
|
||||
// process: null
|
||||
// });
|
||||
|
||||
// jobsStore.addJob({
|
||||
// path: '/Users/hk/Dev/others/excalidraw/excalidraw-app/build',
|
||||
// port: 8081
|
||||
// });
|
56
src/lib/utils.ts
Normal file
56
src/lib/utils.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { type ClassValue, clsx } from 'clsx';
|
||||
import { twMerge } from 'tailwind-merge';
|
||||
import { cubicOut } from 'svelte/easing';
|
||||
import type { TransitionConfig } from 'svelte/transition';
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs));
|
||||
}
|
||||
|
||||
type FlyAndScaleParams = {
|
||||
y?: number;
|
||||
x?: number;
|
||||
start?: number;
|
||||
duration?: number;
|
||||
};
|
||||
|
||||
export const flyAndScale = (
|
||||
node: Element,
|
||||
params: FlyAndScaleParams = { y: -8, x: 0, start: 0.95, duration: 150 }
|
||||
): TransitionConfig => {
|
||||
const style = getComputedStyle(node);
|
||||
const transform = style.transform === 'none' ? '' : style.transform;
|
||||
|
||||
const scaleConversion = (valueA: number, scaleA: [number, number], scaleB: [number, number]) => {
|
||||
const [minA, maxA] = scaleA;
|
||||
const [minB, maxB] = scaleB;
|
||||
|
||||
const percentage = (valueA - minA) / (maxA - minA);
|
||||
const valueB = percentage * (maxB - minB) + minB;
|
||||
|
||||
return valueB;
|
||||
};
|
||||
|
||||
const styleToString = (style: Record<string, number | string | undefined>): string => {
|
||||
return Object.keys(style).reduce((str, key) => {
|
||||
if (style[key] === undefined) return str;
|
||||
return str + `${key}:${style[key]};`;
|
||||
}, '');
|
||||
};
|
||||
|
||||
return {
|
||||
duration: params.duration ?? 200,
|
||||
delay: 0,
|
||||
css: (t) => {
|
||||
const y = scaleConversion(t, [0, 1], [params.y ?? 5, 0]);
|
||||
const x = scaleConversion(t, [0, 1], [params.x ?? 0, 0]);
|
||||
const scale = scaleConversion(t, [0, 1], [params.start ?? 0.95, 1]);
|
||||
|
||||
return styleToString({
|
||||
transform: `${transform} translate3d(${x}px, ${y}px, 0) scale(${scale})`,
|
||||
opacity: t
|
||||
});
|
||||
},
|
||||
easing: cubicOut
|
||||
};
|
||||
};
|
19
src/routes/+layout.svelte
Normal file
19
src/routes/+layout.svelte
Normal file
@ -0,0 +1,19 @@
|
||||
<script>
|
||||
import '../app.css';
|
||||
import { ModeWatcher } from 'mode-watcher';
|
||||
import { ThemeWrapper, updateTheme } from '@kksh/svelte5';
|
||||
import { onMount } from 'svelte';
|
||||
import { ui } from '@kksh/api/ui/iframe';
|
||||
|
||||
onMount(() => {
|
||||
ui.registerDragRegion();
|
||||
ui.getTheme().then((theme) => {
|
||||
updateTheme(theme);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<ModeWatcher />
|
||||
<ThemeWrapper>
|
||||
<slot />
|
||||
</ThemeWrapper>
|
2
src/routes/+layout.ts
Normal file
2
src/routes/+layout.ts
Normal file
@ -0,0 +1,2 @@
|
||||
export const prerender = true;
|
||||
export const ssr = false;
|
59
src/routes/+page.svelte
Normal file
59
src/routes/+page.svelte
Normal file
@ -0,0 +1,59 @@
|
||||
<script lang="ts">
|
||||
import { Button, Card, Input, Label } from '@kksh/svelte5';
|
||||
import { ui, dialog, fs, toast, event } from '@kksh/api/ui/iframe';
|
||||
import { getRpcAPI } from '@/api';
|
||||
import { jobsStore } from '@/stores/jobs';
|
||||
import JobCard from '@/components/JobCard.svelte';
|
||||
import { onMount } from 'svelte';
|
||||
import SelectForm from '@/components/SelectForm.svelte';
|
||||
import type { Process } from '@/models';
|
||||
|
||||
async function serveDir(path: string, port: number) {
|
||||
console.log('serveDir', path, port);
|
||||
// check path existence
|
||||
if (!(await fs.exists(path))) {
|
||||
toast.error('Path does not exist');
|
||||
return;
|
||||
}
|
||||
// check path type
|
||||
const stat = await fs.stat(path);
|
||||
if (!stat.isDirectory) {
|
||||
toast.error('Path is not a directory');
|
||||
return;
|
||||
}
|
||||
|
||||
getRpcAPI()
|
||||
.then((rpc) => {
|
||||
rpc.api.serve(path, port).then((realPort) => {
|
||||
jobsStore.addJob({
|
||||
path,
|
||||
port: realPort,
|
||||
process: rpc.process
|
||||
});
|
||||
toast.success('Server started');
|
||||
});
|
||||
})
|
||||
.catch((err) => {
|
||||
toast.error('Failed to serve', {
|
||||
description: err.message
|
||||
});
|
||||
});
|
||||
}
|
||||
</script>
|
||||
|
||||
<svelte:window
|
||||
onkeydown={(e) => {
|
||||
if (document.activeElement?.nodeName === 'BODY' && e.key === 'Escape') {
|
||||
ui.goBack();
|
||||
}
|
||||
}}
|
||||
/>
|
||||
<div class="h-12" data-kunkun-drag-region></div>
|
||||
<main class="container space-y-2">
|
||||
<h1 class="text-2xl font-bold">Serve Static Files</h1>
|
||||
|
||||
<SelectForm onSubmit={serveDir} />
|
||||
{#each $jobsStore as job}
|
||||
<JobCard {job} />
|
||||
{/each}
|
||||
</main>
|
BIN
static/favicon.png
Normal file
BIN
static/favicon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.5 KiB |
21
svelte.config.js
Normal file
21
svelte.config.js
Normal file
@ -0,0 +1,21 @@
|
||||
import adapter from '@sveltejs/adapter-static';
|
||||
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
|
||||
// for more information about preprocessors
|
||||
preprocess: vitePreprocess(),
|
||||
|
||||
kit: {
|
||||
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
|
||||
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
|
||||
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
|
||||
adapter: adapter({}),
|
||||
alias: {
|
||||
'@/*': './src/lib/*'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
67
tailwind.config.ts
Normal file
67
tailwind.config.ts
Normal file
@ -0,0 +1,67 @@
|
||||
import { fontFamily } from 'tailwindcss/defaultTheme';
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
const config: Config = {
|
||||
darkMode: ['class'],
|
||||
content: [
|
||||
'./src/**/*.{html,js,svelte,ts}',
|
||||
'node_modules/@kksh/svelte5/dist/**/*.{html,js,svelte,ts}'
|
||||
],
|
||||
safelist: ['dark'],
|
||||
theme: {
|
||||
container: {
|
||||
center: true,
|
||||
padding: '2rem',
|
||||
screens: {
|
||||
'2xl': '1400px'
|
||||
}
|
||||
},
|
||||
extend: {
|
||||
colors: {
|
||||
border: 'hsl(var(--border) / <alpha-value>)',
|
||||
input: 'hsl(var(--input) / <alpha-value>)',
|
||||
ring: 'hsl(var(--ring) / <alpha-value>)',
|
||||
background: 'hsl(var(--background) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--foreground) / <alpha-value>)',
|
||||
primary: {
|
||||
DEFAULT: 'hsl(var(--primary) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--primary-foreground) / <alpha-value>)'
|
||||
},
|
||||
secondary: {
|
||||
DEFAULT: 'hsl(var(--secondary) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--secondary-foreground) / <alpha-value>)'
|
||||
},
|
||||
destructive: {
|
||||
DEFAULT: 'hsl(var(--destructive) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--destructive-foreground) / <alpha-value>)'
|
||||
},
|
||||
muted: {
|
||||
DEFAULT: 'hsl(var(--muted) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--muted-foreground) / <alpha-value>)'
|
||||
},
|
||||
accent: {
|
||||
DEFAULT: 'hsl(var(--accent) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--accent-foreground) / <alpha-value>)'
|
||||
},
|
||||
popover: {
|
||||
DEFAULT: 'hsl(var(--popover) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--popover-foreground) / <alpha-value>)'
|
||||
},
|
||||
card: {
|
||||
DEFAULT: 'hsl(var(--card) / <alpha-value>)',
|
||||
foreground: 'hsl(var(--card-foreground) / <alpha-value>)'
|
||||
}
|
||||
},
|
||||
borderRadius: {
|
||||
lg: 'var(--radius)',
|
||||
md: 'calc(var(--radius) - 2px)',
|
||||
sm: 'calc(var(--radius) - 4px)'
|
||||
},
|
||||
fontFamily: {
|
||||
sans: [...fontFamily.sans]
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default config;
|
19
tsconfig.json
Normal file
19
tsconfig.json
Normal file
@ -0,0 +1,19 @@
|
||||
{
|
||||
"extends": "./.svelte-kit/tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"allowJs": true,
|
||||
"checkJs": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"resolveJsonModule": true,
|
||||
"skipLibCheck": true,
|
||||
"sourceMap": true,
|
||||
"strict": true,
|
||||
"moduleResolution": "bundler"
|
||||
}
|
||||
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
|
||||
// except $lib which is handled by https://kit.svelte.dev/docs/configuration#files
|
||||
//
|
||||
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
||||
// from the referenced tsconfig.json - TypeScript does not merge them in
|
||||
}
|
6
vite.config.ts
Normal file
6
vite.config.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
import { defineConfig } from 'vite';
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [sveltekit()]
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user