moving to SolidJS

This commit is contained in:
okhsunrog 2025-01-13 06:49:55 +03:00
parent 2c88e055ee
commit 23ef90c14f
15 changed files with 103 additions and 155 deletions

View file

@ -1,8 +1,9 @@
{
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"EditorConfig.EditorConfig",
"esbenp.prettier-vscode"
"esbenp.prettier-vscode",
"tauri-apps.tauri-vscode",
"rust-lang.rust-analyzer"
]
}

View file

@ -1,40 +0,0 @@
# Tauri Template
This template should help get you started developing with Vue 3 in Tauri.
## Recommended IDE Setup
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur).
## Type Support for `.vue` Imports in TS
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types.
## Project Setup
```sh
bun install
```
### Compile and Hot-Reload for Development
```sh
bun tauri dev
```
### Type-Check, Compile and Minify for Production
```sh
bun tauri build
```
### Lint with [ESLint](https://eslint.org/)
```sh
bun lint
```
### Format
```sh
bun format
```

BIN
bun.lockb

Binary file not shown.

View file

@ -1,19 +1,11 @@
import pluginVue from 'eslint-plugin-vue'
import vueTsEslintConfig from '@vue/eslint-config-typescript'
import skipFormatting from '@vue/eslint-config-prettier/skip-formatting'
export default [
{
name: 'app/files-to-lint',
files: ['**/*.{ts,mts,tsx,vue}'],
files: ['**/*.{ts,mts,tsx}'],
},
{
name: 'app/files-to-ignore',
ignores: ['**/dist/**', '**/dist-ssr/**', '**/coverage/**', '**/src-tauri/**'],
},
...pluginVue.configs['flat/essential'],
...vueTsEslintConfig(),
skipFormatting,
]

View file

@ -1,14 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tauri Template App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
<title>Tauri + Solid + Typescript App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>

View file

@ -5,32 +5,27 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"type-check": "vue-tsc --build --force",
"build": "vite build",
"lint": "eslint . --fix",
"format": "prettier --write src/"
},
"dependencies": {
"vue": "^3.5.13",
"@tauri-apps/api": "^2.2.0"
"@tauri-apps/api": "^2.2.0",
"solid-js": "^1.9.4"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0-beta.9",
"@tauri-apps/cli": "^2.2.4",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^10.1.0",
"@vue/eslint-config-typescript": "^14.2.0",
"@vue/tsconfig": "^0.7.0",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"daisyui": "^5.0.0-beta.1",
"eslint": "^9.18.0",
"eslint-plugin-vue": "^9.32.0",
"prettier": "^3.4.2",
"tailwindcss": "^4.0.0-beta.9",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vue-tsc": "^2.2.0"
"vite-plugin-solid": "^2.11.0"
}
}

45
src/App.tsx Normal file
View file

@ -0,0 +1,45 @@
import { createSignal } from 'solid-js'
import { invoke } from '@tauri-apps/api/core'
export default function App() {
const [name, setName] = createSignal('')
const [greetMsg, setGreetMsg] = createSignal('')
async function greet(e: Event) {
e.preventDefault()
const message = await invoke('greet', { name: name() })
setGreetMsg(message as string)
}
return (
<main class="min-h-screen bg-base-200 p-8">
<div class="container mx-auto max-w-5xl">
<h1 class="text-3xl font-bold mb-8">Welcome to Tauri + SolidJS</h1>
<div class="card bg-base-100 shadow-xl">
<div class="card-body">
<form onSubmit={greet} class="flex flex-col gap-4">
<div class="form-control">
<input
type="text"
value={name()}
onInput={(e) => setName(e.currentTarget.value)}
placeholder="Enter a name..."
class="input input-bordered"
/>
</div>
<button type="submit" class="btn btn-primary">
Greet
</button>
</form>
{greetMsg() && (
<div class="mt-4 alert alert-success">{greetMsg()}</div>
)}
</div>
</div>
</div>
</main>
)
}

View file

@ -1,39 +0,0 @@
<script setup lang="ts">
import { ref } from 'vue'
import { invoke } from '@tauri-apps/api/core'
const greetMsg = ref('')
const name = ref('')
async function greet() {
greetMsg.value = await invoke('greet', { name: name.value })
}
</script>
<template>
<main class="min-h-screen bg-base-200 p-8">
<div class="container mx-auto max-w-5xl">
<h1 class="text-3xl font-bold mb-8">Welcome to Tauri + Vue</h1>
<div class="card bg-base-100 shadow-xl">
<div class="card-body">
<form @submit.prevent="greet" class="flex flex-col gap-4">
<div class="form-control">
<input
type="text"
v-model="name"
placeholder="Enter a name..."
class="input input-bordered"
/>
</div>
<button type="submit" class="btn btn-primary">Greet</button>
</form>
<div v-if="greetMsg" class="mt-4 alert alert-success">
{{ greetMsg }}
</div>
</div>
</div>
</div>
</main>
</template>

1
src/assets/logo.svg Normal file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 166 155.3"><path d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z" fill="#76b3e1"/><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="27.5" y1="3" x2="152" y2="63.5"><stop offset=".1" stop-color="#76b3e1"/><stop offset=".3" stop-color="#dcf2fd"/><stop offset="1" stop-color="#76b3e1"/></linearGradient><path d="M163 35S110-4 69 5l-3 1c-6 2-11 5-14 9l-2 3-15 26 26 5c11 7 25 10 38 7l46 9 18-30z" opacity=".3" fill="url(#a)"/><path d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z" fill="#518ac8"/><linearGradient id="b" gradientUnits="userSpaceOnUse" x1="95.8" y1="32.6" x2="74" y2="105.2"><stop offset="0" stop-color="#76b3e1"/><stop offset=".5" stop-color="#4377bb"/><stop offset="1" stop-color="#1f3b77"/></linearGradient><path d="M52 35l-4 1c-17 5-22 21-13 35 10 13 31 20 48 15l62-21S92 26 52 35z" opacity=".3" fill="url(#b)"/><linearGradient id="c" gradientUnits="userSpaceOnUse" x1="18.4" y1="64.2" x2="144.3" y2="149.8"><stop offset="0" stop-color="#315aa9"/><stop offset=".5" stop-color="#518ac8"/><stop offset="1" stop-color="#315aa9"/></linearGradient><path d="M134 80a45 45 0 00-48-15L24 85 4 120l112 19 20-36c4-7 3-15-2-23z" fill="url(#c)"/><linearGradient id="d" gradientUnits="userSpaceOnUse" x1="75.2" y1="74.5" x2="24.4" y2="260.8"><stop offset="0" stop-color="#4377bb"/><stop offset=".5" stop-color="#1a336b"/><stop offset="1" stop-color="#1a336b"/></linearGradient><path d="M114 115a45 45 0 00-48-15L4 120s53 40 94 30l3-1c17-5 23-21 13-34z" fill="url(#d)"/></svg>

After

Width:  |  Height:  |  Size: 1.6 KiB

6
src/index.tsx Normal file
View file

@ -0,0 +1,6 @@
/* @refresh reload */
import { render } from 'solid-js/web'
import './assets/main.css'
import App from './App'
render(() => <App />, document.getElementById("root") as HTMLElement);

View file

@ -1,6 +0,0 @@
import './assets/main.css'
import { createApp } from 'vue'
import App from './App.vue'
createApp(App).mount('#app')

View file

@ -1,14 +0,0 @@
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "tailwind.config.ts"],
"exclude": ["src/**/__tests__/*"],
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
}
}

View file

@ -1,11 +1,26 @@
{
"files": [],
"references": [
{
"path": "./tsconfig.node.json"
},
{
"path": "./tsconfig.app.json"
}
]
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}

View file

@ -1,19 +1,10 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"include": [
"vite.config.*",
"vitest.config.*",
"cypress.config.*",
"nightwatch.conf.*",
"playwright.config.*"
],
"compilerOptions": {
"composite": true,
"noEmit": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["node"]
}
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
},
"include": ["vite.config.ts"]
}

View file

@ -1,18 +1,16 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import solid from "vite-plugin-solid";
import tailwindcss from '@tailwindcss/vite';
//import vueDevTools from 'vite-plugin-vue-devtools'
const host = process.env.TAURI_DEV_HOST
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
solid(),
tailwindcss(),
// vueDevTools(),
],
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`