This commit is contained in:
Huakun Shen 2025-01-18 03:48:17 -05:00
commit 5f6f3cd618
No known key found for this signature in database
28 changed files with 5946 additions and 0 deletions

48
.github/workflows/npm-publish.yml vendored Normal file
View File

@ -0,0 +1,48 @@
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages
name: NPM Package Publish
on:
push:
branches: [main]
release:
types: [created]
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
registry-url: https://registry.npmjs.org/
- uses: pnpm/action-setup@v2
with:
version: latest
- uses: oven-sh/setup-bun@v2
- run: pnpm install
- run: pnpm build
- run: |
PACKAGE_NAME=$(jq -r '.name' package.json)
PACKAGE_VERSION=$(jq -r '.version' package.json)
# Get the version from npm registry
REGISTRY_VERSION=$(npm show "$PACKAGE_NAME" version)
# Compare versions
if [ "$PACKAGE_VERSION" == "$REGISTRY_VERSION" ]; then
echo "Version $PACKAGE_VERSION already exists in the npm registry."
exit 0
else
echo "Version $PACKAGE_VERSION does not exist in the npm registry. Proceeding..."
npm publish --provenance --access public
fi
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

21
.gitignore vendored Normal file
View File

@ -0,0 +1,21 @@
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-*

2
.npmrc Normal file
View File

@ -0,0 +1,2 @@
engine-strict=true
@jsr:registry=https://npm.jsr.io

4
.prettierignore Normal file
View File

@ -0,0 +1,4 @@
# Package Managers
package-lock.json
pnpm-lock.yaml
yarn.lock

15
.prettierrc Normal file
View 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"
}
}
]
}

8
CHANGELOG.md Normal file
View File

@ -0,0 +1,8 @@
# template-ext-sveltekit
## 0.0.2
### Patch Changes
- Updated dependencies [fba6a49]
- @kksh/svelte@0.0.2

38
README.md Normal file
View File

@ -0,0 +1,38 @@
# create-svelte
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/main/packages/create-svelte).
## Creating a project
If you're seeing this, you've probably already done this step. Congrats!
```bash
# create a new project in the current directory
npm create svelte@latest
# create a new project in my-app
npm create svelte@latest my-app
```
## Developing
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.

14
components.json Normal file
View 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
}

33
eslint.config.js Normal file
View 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/']
}
];

101
package.json Normal file
View File

@ -0,0 +1,101 @@
{
"$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-qrcode",
"version": "0.0.9",
"description": "QRCode Extension",
"repository": "https://github.com/kunkunsh/kunkun-ext-qrcode",
"kunkun": {
"name": "QRCode",
"shortDescription": "Generate QRCode from text and Detect QRCode",
"longDescription": "Copy a url or any text and open the QRCode generation command, a QRCode will be displayed. Also supports detecting QRCode from screenshot.",
"identifier": "qrcode",
"icon": {
"type": "iconify",
"value": "mingcute:qrcode-line"
},
"demoImages": [],
"permissions": [
"clipboard:read-text",
"clipboard:read-image",
"clipboard:write-text",
"clipboard:write-image",
{
"permission": "open:url",
"allow": [
{
"url": "https://**"
},
{
"url": "http://**"
}
]
}
],
"customUiCmds": [
{
"main": "/",
"dist": "build",
"devMain": "http://localhost:5173/",
"name": "Generate QRCode",
"cmds": []
},
{
"main": "/detect",
"dist": "build",
"devMain": "http://localhost:5173/detect",
"name": "Detect QRCode",
"cmds": []
}
],
"templateUiCmds": []
},
"files": [
"build"
],
"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.52",
"@kksh/svelte": "0.1.4",
"clsx": "^2.1.1",
"easyqrcodejs": "^4.6.1",
"jsqr": "^1.4.0",
"lucide-svelte": "^0.416.0",
"mode-watcher": "^0.4.0",
"tailwind-merge": "^2.4.0",
"tailwind-variants": "^0.2.1",
"valibot": "^0.36.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"@tailwindcss/typography": "^0.5.13",
"@types/eslint": "^9.6.0",
"autoprefixer": "^10.4.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"postcss": "^8.4.38",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.6.4",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"tailwindcss": "^3.4.4",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0-alpha.20",
"vite": "^5.0.3"
},
"type": "module",
"packageManager": "pnpm@9.9.0"
}

5099
pnpm-lock.yaml generated Normal file

File diff suppressed because it is too large Load Diff

6
postcss.config.js Normal file
View File

@ -0,0 +1,6 @@
export default {
plugins: {
tailwindcss: {},
autoprefixer: {}
}
};

80
src/app.css Normal file
View File

@ -0,0 +1,80 @@
@import url("@kksh/svelte/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
View 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
View 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>

View File

@ -0,0 +1,40 @@
<script lang="ts">
import QRCode from 'easyqrcodejs';
export let url: string;
let node: HTMLDivElement;
export let qrcode: QRCode | undefined;
$: {
if (url) {
if (!qrcode) {
qrcode = new QRCode(node, {
text: url,
width: 200,
height: 200,
quietZone: 10
});
}
}
}
</script>
<div class={$$props.class} bind:this={node}></div>
<style scoped>
div {
/* make QR-wrapper squared */
width: 100%;
position: relative;
padding: 50%;
z-index: 1;
}
div :global(canvas) {
/* fit QR to wrapper */
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
</style>

View File

@ -0,0 +1,20 @@
<script lang="ts">
import { ThemeCustomizerButton, type ThemeConfig, updateTheme } from '@kksh/svelte';
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
View File

@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

56
src/lib/utils.ts Normal file
View 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
View File

@ -0,0 +1,19 @@
<script>
import '../app.css';
import { ModeWatcher } from 'mode-watcher';
import { ui } from '@kksh/api/ui/iframe';
import { ThemeWrapper, updateTheme } from '@kksh/svelte';
import { onMount } from 'svelte';
onMount(() => {
ui.registerDragRegion();
ui.getTheme().then((theme) => {
updateTheme(theme);
});
});
</script>
<ModeWatcher />
<ThemeWrapper>
<slot></slot>
</ThemeWrapper>

2
src/routes/+layout.ts Normal file
View File

@ -0,0 +1,2 @@
export const prerender = true;
export const ssr = false;

128
src/routes/+page.svelte Normal file
View File

@ -0,0 +1,128 @@
<script lang="ts">
import { base } from '$app/paths';
import { Button, Input } from '@kksh/svelte';
import QR from '$lib/components/QR.svelte';
import QRCode from 'easyqrcodejs';
import { onMount } from 'svelte';
import { clipboard, fs, dialog, open, event, ui } from '@kksh/api/ui/iframe';
import * as v from 'valibot';
import {
ClipboardCopyIcon,
LinkIcon,
DownloadIcon,
RefreshCcwIcon,
SearchIcon
} from 'lucide-svelte/icons';
import { ModeWatcher } from 'mode-watcher';
let url: string;
let qrcode: QRCode | undefined;
$: {
if (url && qrcode) {
qrcode.makeCode(url);
}
}
async function loadFromClipboard() {
const content = await clipboard.readText();
url = v.parse(v.string(), content);
}
onMount(async () => {
loadFromClipboard();
document.addEventListener('keydown', (e) => {
console.log(e);
if (e.key === 'Escape') {
ui.goBack();
}
});
});
function getQRCodePngBase64(): Promise<string> {
return new Promise((resolve, reject) => {
const cvs = document.querySelector('canvas');
if (cvs) {
// extract png base64 from cvs
const png = cvs.toDataURL('image/png');
const base64 = png.replace(/^data:image\/(png|jpg);base64,/, '');
resolve(base64);
} else {
reject('Canvas not found');
}
});
}
async function download() {
const cvs = document.querySelector('canvas');
if (cvs) {
cvs.toBlob(async (blob) => {
if (!blob) {
return;
}
const filePath = await dialog.save({
filters: [
{
name: 'Image',
extensions: ['png']
}
]
});
if (!filePath) {
return;
}
blob.arrayBuffer().then((buffer) => {
const uint8Array = new Uint8Array(buffer);
fs.writeFile(filePath, uint8Array);
});
});
}
}
async function saveToClipboard() {
const b64 = await getQRCodePngBase64();
clipboard.writeImageBase64(b64);
}
</script>
<ModeWatcher />
<div class="flex h-screen flex-col">
<div class="h-8" data-tauri-drag-region />
<div class="flex grow flex-col items-center justify-center space-y-4">
<Input bind:value={url} type="text" placeholder="URL" class="max-w-xl" />
<div class="flex w-96 justify-center space-x-2">
<Button size="sm" on:click={download}>
<DownloadIcon class="mr-1 h-4 w-4" />
Download
</Button>
<Button size="sm" on:click={loadFromClipboard}>
<RefreshCcwIcon class="mr-1 h-4 w-4" />
Read from Clipboard
</Button>
<Button size="sm" on:click={saveToClipboard}>
<ClipboardCopyIcon class="mr-1 h-4 w-4" />
Save To Clipboard</Button
>
</div>
<div class="w-60">
<QR bind:url bind:qrcode />
</div>
{#if url}
<div class="prose mt-3">
<pre
on:click={() => {
if (url.startsWith('http')) {
open.url(url);
}
}}
class="cursor-pointer text-wrap px-3">{url}</pre>
</div>
{/if}
<a href="{base}/detect">
<Button size="sm">
<SearchIcon class="mr-1 h-4 w-4" />
Detect QRCode From Screenshot <LinkIcon class="ml-2 w-4" /></Button
>
</a>
</div>
</div>

View File

@ -0,0 +1,72 @@
<script lang="ts">
import jsQR from 'jsqr';
import { base } from '$app/paths';
import { clipboard, open } from '@kksh/api/ui/iframe';
import { Button } from '@kksh/svelte';
import { ModeWatcher } from 'mode-watcher';
import { onMount } from 'svelte';
import { LinkIcon } from 'lucide-svelte/icons';
let imgSrc = '';
let detectedCode = '';
async function readScreenshot() {
try {
const blobImg: Blob = (await clipboard.readImageBinary('Blob')) as Blob;
imgSrc = URL.createObjectURL(blobImg);
// turn blob to Uint8ClampedArray
const img = new Image();
img.src = imgSrc;
img.onload = () => {
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
canvas.width = img.width;
canvas.height = img.height;
ctx?.drawImage(img, 0, 0);
const imageData = ctx?.getImageData(0, 0, img.width, img.height);
if (!imageData) {
throw new Error('Failed to get image data.');
}
const code = jsQR(imageData?.data, imageData?.width, imageData?.height);
if (code) {
detectedCode = code.data;
} else {
console.warn('No QR code found.');
}
canvas.remove();
img.remove();
};
} catch (error) {
console.error(error);
}
}
onMount(async () => {
readScreenshot();
});
</script>
<ModeWatcher />
<main class="flex h-screen flex-col">
<div class="h-8" data-tauri-drag-region />
<div class=" flex grow flex-col items-center justify-center space-y-5">
<div class="flex space-x-3">
<Button on:click={readScreenshot}>Read QRCode Screenshot From Clipboard</Button>
<a href={base}>
<Button>Generate QRCode <LinkIcon class="ml-2 w-4" /></Button>
</a>
</div>
<img width="300" src={imgSrc} alt="" />
<a
href={detectedCode}
on:click={(e) => {
e.preventDefault();
if (detectedCode.startsWith('http')) {
open.openUrl(detectedCode);
}
}}
>
{detectedCode}
</a>
</div>
</main>

BIN
static/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

22
svelte.config.js Normal file
View File

@ -0,0 +1,22 @@
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: {
// outDir: 'dist',
// 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
View 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/svelte/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
View 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
View File

@ -0,0 +1,6 @@
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});