use rust tauri to be client

This commit is contained in:
zyxkad 2022-08-23 15:09:08 -06:00
parent 4e15525043
commit 3e12f9ec2e
No known key found for this signature in database
GPG Key ID: 75D46E883711CD87
27 changed files with 116 additions and 111 deletions

28
Cargo.toml Normal file
View File

@ -0,0 +1,28 @@
[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
default-run = "app"
edition = "2021"
rust-version = "1.57"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "1.0.4", features = [] }
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.0.5", features = ["api-all"] }
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = [ "custom-protocol" ]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = [ "tauri/custom-protocol" ]

View File

@ -1,3 +1,8 @@
# omm-client
Client of Oh My Mailbox
Client of Oh My Mailbox
### Compile application
```sh
bash build.sh
```

3
build.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
tauri_build::build()
}

5
build.sh Normal file → Executable file
View File

@ -3,8 +3,7 @@
cd $(dirname $0)
function _build(){
go generate || exit $?
go build -o "$1" . || exit $?
cargo tauri build || exit $?
}
_build ./target/output-self
_build

7
go.mod
View File

@ -1,7 +0,0 @@
module gitee.ghink.com/ghink/omm-client
go 1.18
require github.com/webview/webview v0.0.0-20220816141928-2ee04ccd0530
require github.com/go-chi/chi/v5 v5.0.7 // indirect

4
go.sum
View File

@ -1,4 +0,0 @@
github.com/go-chi/chi/v5 v5.0.7 h1:rDTPXLDHGATaeHvVlLcR4Qe0zftYethFucbjVQ1PxU8=
github.com/go-chi/chi/v5 v5.0.7/go.mod h1:DslCQbL2OYiznFReuXYUmQ2hGd1aDpCnlMNITLSKoi8=
github.com/webview/webview v0.0.0-20220816141928-2ee04ccd0530 h1:diPvLFzNaRG1c1Qh8s8jWQt/+l8HQs9iQgHvAV4N8q8=
github.com/webview/webview v0.0.0-20220816141928-2ee04ccd0530/go.mod h1:rpXAuuHgyEJb6kXcXldlkOjU6y4x+YcASKKXJNUhh0Y=

BIN
icons/128x128.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
icons/128x128@2x.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
icons/32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 974 B

BIN
icons/Square107x107Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
icons/Square142x142Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

BIN
icons/Square150x150Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
icons/Square284x284Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

BIN
icons/Square30x30Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 903 B

BIN
icons/Square310x310Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

BIN
icons/Square44x44Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
icons/Square71x71Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

BIN
icons/Square89x89Logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

BIN
icons/StoreLogo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
icons/icon.icns Normal file

Binary file not shown.

BIN
icons/icon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

BIN
icons/icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

79
main.go
View File

@ -1,79 +0,0 @@
package main
import (
"embed"
"flag"
"fmt"
"io/fs"
"net"
"net/http"
"time"
"github.com/go-chi/chi/v5"
"github.com/webview/webview"
)
//go:generate bash ./omm-front/build.sh
//go:embed all:omm-front/dist
var _dist embed.FS
var dist = func()(fs.FS){
f, err := fs.Sub(_dist, "omm-front/dist")
must(err)
return f
}()
var (
debug bool = false
hostIP string = "127.0.0.1"
)
func init(){
flag.BoolVar(&debug, "debug", debug, "Debug flag")
flag.StringVar(&hostIP, "host", hostIP, "Web app host IP")
flag.Parse()
}
func makeRouter()(r *chi.Mux){
r = chi.NewRouter()
r.Handle("/W/*", http.StripPrefix("/W", http.FileServer(http.FS(dist))))
return
}
func main(){
listener, err := net.ListenTCP("tcp4", &net.TCPAddr{IP: net.ParseIP(hostIP)})
must(err)
addr := listener.Addr().(*net.TCPAddr)
if debug {
fmt.Println("Server addr:", addr.String())
}
webRouter := makeRouter()
go func(){
svr := &http.Server{
Handler: webRouter,
ReadTimeout: 10 * time.Second,
WriteTimeout: 10 * time.Second,
}
if err := svr.Serve(listener); err != nil {
panic(err)
}
}()
win := webview.New(debug)
defer win.Destroy()
win.SetTitle(fmt.Sprintf("Oh my mailbox v%s", VERSION))
win.SetSize(950, 600, webview.HintNone)
navuri := "http://" + addr.String() + "/W/"
if debug {
fmt.Println("Navigate url:", navuri)
}
win.Navigate(navuri)
win.Run()
}
func must(err error){
if err != nil {
panic(err)
}
}

@ -1 +1 @@
Subproject commit e72b1540a5dc50f3a08d3b0abb2d580f371712ea
Subproject commit 87ac7062b83005c4dd3122f89f7597cd0fa22cfd

11
src/main.rs Normal file
View File

@ -0,0 +1,11 @@
#![cfg_attr(
all(not(debug_assertions), target_os = "windows"),
windows_subsystem = "windows"
)]
fn main() {
tauri::Builder::default()
.run(tauri::generate_context!())
.expect("error while running tauri application");
}

65
tauri.conf.json Normal file
View File

@ -0,0 +1,65 @@
{
"build": {
"distDir": "./omm-front/dist/",
"beforeBuildCommand": "npm run build",
"beforeDevCommand": "npm run dev -- --port 13280",
"devPath": "http://127.0.0.1:13280"
},
"package": {
"productName": "omm-client",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
"all": true
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "cc.ohmail",
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"width": 1150,
"height": 680,
"resizable": true,
"title": "Oh My MailBox"
}
]
}
}

View File

@ -1,16 +0,0 @@
package main
import (
"fmt"
)
const (
MAJOR_VERSION = 0
MINOR_VERSION = 1
PATCH_VERSION = 0
)
var (
VERSION = fmt.Sprintf("%d.%d.%d", MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
)