-
-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(create): add support for tauri 2 (#2001)
* rebase: pick changes to main * chore: bump version
- Loading branch information
Showing
229 changed files
with
2,522 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"create-farm": patch | ||
--- | ||
|
||
Add support for tauri v2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
crates/create-farm-rs/templates/tauri2/preact/.vscode/extensions.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"recommendations": ["tauri-apps.tauri-vscode", "rust-lang.rust-analyzer"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Tauri + Preact + Typescript | ||
|
||
This template should help get you started developing with Tauri, Preact and Typescript in Vite. | ||
|
||
## Recommended IDE Setup | ||
|
||
- [VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) |
27 changes: 27 additions & 0 deletions
27
crates/create-farm-rs/templates/tauri2/preact/farm.config.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import { defineConfig } from "@farmfe/core"; | ||
import preact from '@preact/preset-vite'; | ||
|
||
// @ts-ignore process is a nodejs global | ||
const host = process.env.TAURI_DEV_HOST; | ||
|
||
// https://www.farmfe.org/docs/config/configuring-farm | ||
export default defineConfig({ | ||
plugins: [preact()], | ||
|
||
clearScreen: false, | ||
server: { | ||
port: 1420, | ||
strictPort: true, | ||
host: host || false, | ||
hmr: host | ||
? { | ||
protocol: "ws", | ||
host, | ||
port: 1421, | ||
watchOptions: { | ||
ignored: ["**/node_modules/**"], | ||
} | ||
} | ||
: undefined, | ||
}, | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
node_modules | ||
dist | ||
dist-ssr | ||
*.local | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/farm.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Tauri + Preact + Typescript</title> | ||
</head> | ||
|
||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
25 changes: 25 additions & 0 deletions
25
crates/create-farm-rs/templates/tauri2/preact/package.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"name": "<FARM-TEMPLATE-NAME>", | ||
"private": true, | ||
"version": "0.1.0", | ||
"type": "module", | ||
"scripts": { | ||
"dev": "farm", | ||
"build": "tsc && farm build", | ||
"preview": "farm preview", | ||
"tauri": "tauri" | ||
}, | ||
"dependencies": { | ||
"preact": "^10.25.1", | ||
"@tauri-apps/api": "^2", | ||
"@tauri-apps/plugin-opener": "^2" | ||
}, | ||
"devDependencies": { | ||
"@farmfe/cli": "^1.0.4", | ||
"@farmfe/core": "^1.6.3", | ||
"@preact/preset-vite": "^2.9.3", | ||
"core-js": "^3.39.0", | ||
"typescript": "^5.6.2", | ||
"@tauri-apps/cli": "^2" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
6 changes: 6 additions & 0 deletions
6
crates/create-farm-rs/templates/tauri2/preact/public/tauri.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions
25
crates/create-farm-rs/templates/tauri2/preact/src-tauri/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[package] | ||
name = "<FARM-TEMPLATE-NAME>" | ||
version = "0.1.0" | ||
description = "A Tauri App" | ||
authors = ["you"] | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[lib] | ||
# The `_lib` suffix may seem redundant but it is necessary | ||
# to make the lib name unique and wouldn't conflict with the bin name. | ||
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 | ||
name = "<FARM-TEMPLATE-NAME>_lib" | ||
crate-type = ["staticlib", "cdylib", "rlib"] | ||
|
||
[build-dependencies] | ||
tauri-build = { version = "2", features = [] } | ||
|
||
[dependencies] | ||
tauri = { version = "2", features = [] } | ||
tauri-plugin-opener = "2" | ||
serde = { version = "1", features = ["derive"] } | ||
serde_json = "1" | ||
|
3 changes: 3 additions & 0 deletions
3
crates/create-farm-rs/templates/tauri2/preact/src-tauri/build.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
fn main() { | ||
tauri_build::build() | ||
} |
10 changes: 10 additions & 0 deletions
10
crates/create-farm-rs/templates/tauri2/preact/src-tauri/capabilities/default.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"$schema": "../gen/schemas/desktop-schema.json", | ||
"identifier": "default", | ||
"description": "Capability for the main window", | ||
"windows": ["main"], | ||
"permissions": [ | ||
"core:default", | ||
"opener:default" | ||
] | ||
} |
7 changes: 7 additions & 0 deletions
7
crates/create-farm-rs/templates/tauri2/preact/src-tauri/gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
/target/ | ||
|
||
# Generated by Tauri | ||
# will have schema files for capabilities auto-completion | ||
/gen/schemas |
Binary file added
BIN
+3.43 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/128x128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.85 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/128x128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+974 Bytes
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.8 KB
...es/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square107x107Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.77 KB
...es/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square142x142Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.87 KB
...es/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square150x150Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+7.56 KB
...es/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square284x284Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+903 Bytes
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square30x30Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+8.39 KB
...es/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square310x310Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.27 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square44x44Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.96 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square71x71Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.41 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/Square89x89Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.49 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/StoreLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+96.1 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/icon.icns
Binary file not shown.
Binary file added
BIN
+84.6 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/icon.ico
Binary file not shown.
Binary file added
BIN
+13.9 KB
crates/create-farm-rs/templates/tauri2/preact/src-tauri/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions
14
crates/create-farm-rs/templates/tauri2/preact/src-tauri/src/lib.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/ | ||
#[tauri::command] | ||
fn greet(name: &str) -> String { | ||
format!("Hello, {}! You've been greeted from Rust!", name) | ||
} | ||
|
||
#[cfg_attr(mobile, tauri::mobile_entry_point)] | ||
pub fn run() { | ||
tauri::Builder::default() | ||
.plugin(tauri_plugin_opener::init()) | ||
.invoke_handler(tauri::generate_handler![greet]) | ||
.run(tauri::generate_context!()) | ||
.expect("error while running tauri application"); | ||
} |
6 changes: 6 additions & 0 deletions
6
crates/create-farm-rs/templates/tauri2/preact/src-tauri/src/main.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Prevents additional console window on Windows in release, DO NOT REMOVE!! | ||
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] | ||
|
||
fn main() { | ||
preact_lib::run() | ||
} |
35 changes: 35 additions & 0 deletions
35
crates/create-farm-rs/templates/tauri2/preact/src-tauri/tauri.conf.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"$schema": "https://schema.tauri.app/config/2", | ||
"productName": "<FARM-TEMPLATE-NAME>", | ||
"version": "0.1.0", | ||
"identifier": "com.tauri.dev", | ||
"build": { | ||
"beforeDevCommand": "pnpm dev", | ||
"devUrl": "http://localhost:1420", | ||
"beforeBuildCommand": "pnpm build", | ||
"frontendDist": "../dist" | ||
}, | ||
"app": { | ||
"windows": [ | ||
{ | ||
"title": "<FARM-TEMPLATE-NAME>", | ||
"width": 800, | ||
"height": 600 | ||
} | ||
], | ||
"security": { | ||
"csp": null | ||
} | ||
}, | ||
"bundle": { | ||
"active": true, | ||
"targets": "all", | ||
"icon": [ | ||
"icons/32x32.png", | ||
"icons/128x128.png", | ||
"icons/128x128@2x.png", | ||
"icons/icon.icns", | ||
"icons/icon.ico" | ||
] | ||
} | ||
} |
Oops, something went wrong.