[PR #4535] [MERGED] feat: calling user event from web #6294

Closed
opened 2026-03-23 22:22:34 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/4535
Author: @appflowy
Created: 1/29/2024
Status: Merged
Merged: 1/29/2024
Merged by: @appflowy

Base: mainHead: user_manager_wasm


📝 Commits (10+)

📊 Changes

164 files changed (+9334 additions, -2885 deletions)

View changed files

📝 .github/workflows/rust_ci.yaml (+1 -1)
📝 .github/workflows/web_ci.yaml (+1 -1)
📝 frontend/Makefile.toml (+1 -0)
📝 frontend/appflowy_tauri/package.json (+3 -3)
📝 frontend/appflowy_tauri/pnpm-lock.yaml (+10 -15)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+139 -60)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+14 -10)
📝 frontend/appflowy_tauri/src-tauri/src/request.rs (+1 -1)
frontend/appflowy_web/.eslintignore (+7 -0)
📝 frontend/appflowy_web/.gitignore (+4 -1)
frontend/appflowy_web/.prettierignore (+19 -0)
frontend/appflowy_web/.prettierrc.cjs (+20 -0)
📝 frontend/appflowy_web/README.md (+22 -0)
frontend/appflowy_web/appflowy-wasm/Cargo.lock (+0 -2042)
frontend/appflowy_web/appflowy-wasm/Cargo.toml (+0 -26)
frontend/appflowy_web/appflowy-wasm/src/lib.rs (+0 -60)
frontend/appflowy_web/appflowy-wasm/src/request.rs (+0 -64)
📝 frontend/appflowy_web/package.json (+8 -3)
📝 frontend/appflowy_web/pnpm-lock.yaml (+23 -0)
📝 frontend/appflowy_web/src/App.tsx (+15 -13)

...and 80 more files

📄 Description

  1. calling rust event by using invoke request
  2. login using web
  3. compile rust event and protoc files to appflowy_web project

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/4535 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 1/29/2024 **Status:** ✅ Merged **Merged:** 1/29/2024 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `user_manager_wasm` --- ### 📝 Commits (10+) - [`f866dac`](https://github.com/AppFlowy-IO/AppFlowy/commit/f866dacd1bdaaf0fe7299ad6ccd84be7d6b37f9b) refactor: user manager - [`4c1e1d6`](https://github.com/AppFlowy-IO/AppFlowy/commit/4c1e1d66c98e23180a8d1abc771a3552ae88af4c) refactor: user manager - [`16008ff`](https://github.com/AppFlowy-IO/AppFlowy/commit/16008ff647ca620acbe27a2d890b98faca07c5af) refactor: session location - [`c230bc6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c230bc6438837813f12291ea6b2942c57537edd9) refactor: user manager - [`2a630c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/2a630c2dd49cf0d516873273a27bf492c2b4ea8c) chore: gen ts files - [`200ca3a`](https://github.com/AppFlowy-IO/AppFlowy/commit/200ca3aa4562427acd56fbab30ac54e4f6f608b3) feat: implement indexeddb persistence - [`452e4dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/452e4dc6c70215f52d5c8a4104d22a4015e73afc) chore: integrate user manager - [`f0c018a`](https://github.com/AppFlowy-IO/AppFlowy/commit/f0c018aaee2188197816a6802bfe0760e430f8ee) chore: update - [`500af87`](https://github.com/AppFlowy-IO/AppFlowy/commit/500af87cfbe281b5dba314c66636b95d5cf31c7c) chore: run on web thread - [`4fce2cc`](https://github.com/AppFlowy-IO/AppFlowy/commit/4fce2ccb72901cd22aca1eac9f577c0bc8f38606) chore: run on web thread ### 📊 Changes **164 files changed** (+9334 additions, -2885 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/rust_ci.yaml` (+1 -1) 📝 `.github/workflows/web_ci.yaml` (+1 -1) 📝 `frontend/Makefile.toml` (+1 -0) 📝 `frontend/appflowy_tauri/package.json` (+3 -3) 📝 `frontend/appflowy_tauri/pnpm-lock.yaml` (+10 -15) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+139 -60) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+14 -10) 📝 `frontend/appflowy_tauri/src-tauri/src/request.rs` (+1 -1) ➕ `frontend/appflowy_web/.eslintignore` (+7 -0) 📝 `frontend/appflowy_web/.gitignore` (+4 -1) ➕ `frontend/appflowy_web/.prettierignore` (+19 -0) ➕ `frontend/appflowy_web/.prettierrc.cjs` (+20 -0) 📝 `frontend/appflowy_web/README.md` (+22 -0) ➖ `frontend/appflowy_web/appflowy-wasm/Cargo.lock` (+0 -2042) ➖ `frontend/appflowy_web/appflowy-wasm/Cargo.toml` (+0 -26) ➖ `frontend/appflowy_web/appflowy-wasm/src/lib.rs` (+0 -60) ➖ `frontend/appflowy_web/appflowy-wasm/src/request.rs` (+0 -64) 📝 `frontend/appflowy_web/package.json` (+8 -3) 📝 `frontend/appflowy_web/pnpm-lock.yaml` (+23 -0) 📝 `frontend/appflowy_web/src/App.tsx` (+15 -13) _...and 80 more files_ </details> ### 📄 Description 1. calling rust event by using `invoke` request 2. login using web 3. compile rust event and protoc files to appflowy_web project --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:22:34 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6294
No description provided.