feat: directly open affine page on production

This commit is contained in:
Lin Onetwo
2023-01-04 21:04:06 +08:00
parent cf56292484
commit c732520182
6 changed files with 24 additions and 6 deletions
+2 -1
View File
@@ -6,7 +6,7 @@
"license": "MPL-2.0",
"module": "true",
"scripts": {
"dev:app": "tauri dev",
"dev:app": "cross-env NODE_ENV=development tauri dev",
"build:prerequisite": "pnpm build:submodules && pnpm build:affine && pnpm build:preload",
"dev:web": "vite",
"build:rs-types": "zx scripts/generateTsTypingsFromJsonSchema.mjs",
@@ -18,6 +18,7 @@
"preview": "vite preview"
},
"dependencies": {
"@blocksuite/store": "^0.3.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@tauri-apps/api": "^1.2.0",
+1
View File
@@ -7,6 +7,7 @@ name = "AFFiNE"
version = "0.0.0"
dependencies = [
"bytes",
"dotenvy",
"futures",
"ipc_types",
"js-sys",
+1
View File
@@ -25,6 +25,7 @@ project-root = "0.2.2"
schemars = "0.8.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dotenvy = "0.15.6"
tauri = {version = "1.2", features = ["api-all", "devtools"] }
tokio = { version = "1.23.0", features = ["rt", "macros"] }
+11 -2
View File
@@ -5,14 +5,23 @@
mod commands;
mod state;
use dotenvy::dotenv;
use state::AppState;
use tokio::sync::Mutex;
use std::env;
use tauri::TitleBarStyle;
use tokio::sync::Mutex;
#[tokio::main]
async fn main() {
tauri::async_runtime::set(tokio::runtime::Handle::current());
dotenv().ok();
let preload = include_str!("../../public/preload/index.js");
let is_dev = env::var("NODE_ENV").unwrap_or_default() == "development";
let initial_path = if is_dev {
"index.html"
} else {
"affine-out/index.html"
};
tauri::Builder::default()
.manage(AppState(Mutex::new(
state::AppStateRaw::new().await.unwrap(),
@@ -20,7 +29,7 @@ async fn main() {
// manually create window here, instead of in the tauri.conf.json, to add `initialization_script` here
.setup(move |app| {
let _window =
tauri::WindowBuilder::new(app, "label", tauri::WindowUrl::App("index.html".into()))
tauri::WindowBuilder::new(app, "label", tauri::WindowUrl::App(initial_path.into()))
.title("AFFiNE")
.inner_size(1000.0, 800.0)
.title_bar_style(TitleBarStyle::Overlay)