[PR #109] [MERGED] Tutorials and new user flow (rewrite) #573

Closed
opened 2026-03-03 00:22:13 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/109
Author: @Davy-c
Created: 12/9/2019
Status: Merged
Merged: 12/10/2019
Merged by: @Rokt33r

Base: masterHead: feat/new-user-flow-rewrite


📝 Commits (10+)

📊 Changes

38 files changed (+1369 additions, -74 deletions)

View changed files

.prettierignore (+1 -0)
📝 package-lock.json (+74 -64)
📝 package.json (+1 -0)
📝 src/components/NotePage/NoteDetail/NoteDetail.tsx (+1 -1)
📝 src/components/NotePage/NoteList/NoteItem.tsx (+1 -1)
📝 src/components/NotePage/NoteList/NoteList.tsx (+3 -3)
📝 src/components/PreferencesModal/GeneralTab.tsx (+23 -1)
📝 src/components/Router.tsx (+7 -0)
📝 src/components/SideNavigator/SideNavigator.tsx (+5 -1)
src/components/Tutorials/TutorialsNavigator.tsx (+134 -0)
src/components/Tutorials/TutorialsNoteDetail.tsx (+128 -0)
src/components/Tutorials/TutorialsNoteItem.tsx (+31 -0)
src/components/Tutorials/TutorialsNoteList.tsx (+74 -0)
src/components/Tutorials/TutorialsPage.tsx (+278 -0)
📝 src/components/atoms/CodeEditor.tsx (+3 -1)
📝 src/components/atoms/CustomizedCodeEditor.tsx (+4 -1)
📝 src/lib/db/store.ts (+1 -1)
📝 src/lib/i18n/enUS.ts (+1 -0)
📝 src/lib/i18n/ja.ts (+1 -0)
📝 src/lib/preferences/store.ts (+1 -0)

...and 18 more files

📄 Description

Rewriting of tutorials and new user flow.

Screen Shot 2019-12-09 at 19 11 11

Gif1 - SideNav, folding...
Gif2 - GoUp, GoDown, Router.push, Split View, Preview view


🔄 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/BoostIO/BoostNote-App/pull/109 **Author:** [@Davy-c](https://github.com/Davy-c) **Created:** 12/9/2019 **Status:** ✅ Merged **Merged:** 12/10/2019 **Merged by:** [@Rokt33r](https://github.com/Rokt33r) **Base:** `master` ← **Head:** `feat/new-user-flow-rewrite` --- ### 📝 Commits (10+) - [`4a009bd`](https://github.com/BoostIO/BoostNote-App/commit/4a009bd24c9c7e16c8311bf4f1ded1ab1cfd650e) updated preferences - [`9ab0391`](https://github.com/BoostIO/BoostNote-App/commit/9ab039199106dcfebde22138afdc15c3f60b8eb6) code editor props - [`cce99bd`](https://github.com/BoostIO/BoostNote-App/commit/cce99bd1549b76a0546c88e36a40cfb817496e99) customizedCodeEditor change - [`c5421e2`](https://github.com/BoostIO/BoostNote-App/commit/c5421e2b185d07a721075cb7260f3ac24c1d41a7) md files - [`f41f27d`](https://github.com/BoostIO/BoostNote-App/commit/f41f27d462bf9b951a7e688d2f12c0fa3dd29f0c) tutorials tree - [`474f633`](https://github.com/BoostIO/BoostNote-App/commit/474f633e1bb615b9082a2876bf7bd0abeb9669f4) markdown declaration - [`2e2c86e`](https://github.com/BoostIO/BoostNote-App/commit/2e2c86eca40711c9dfee4c971c9be151ceaae72a) tutorials note components - [`99a5667`](https://github.com/BoostIO/BoostNote-App/commit/99a5667d9a5b5cb959e993a3754115daf2e72c83) fix nav - [`bf03bb9`](https://github.com/BoostIO/BoostNote-App/commit/bf03bb917ab1ecc72310dad437348503b45dd725) change name of redirect - [`4718356`](https://github.com/BoostIO/BoostNote-App/commit/47183564d4149a4dba81132b40ed3a6c2cb9b39b) remove useless href check ### 📊 Changes **38 files changed** (+1369 additions, -74 deletions) <details> <summary>View changed files</summary> ➕ `.prettierignore` (+1 -0) 📝 `package-lock.json` (+74 -64) 📝 `package.json` (+1 -0) 📝 `src/components/NotePage/NoteDetail/NoteDetail.tsx` (+1 -1) 📝 `src/components/NotePage/NoteList/NoteItem.tsx` (+1 -1) 📝 `src/components/NotePage/NoteList/NoteList.tsx` (+3 -3) 📝 `src/components/PreferencesModal/GeneralTab.tsx` (+23 -1) 📝 `src/components/Router.tsx` (+7 -0) 📝 `src/components/SideNavigator/SideNavigator.tsx` (+5 -1) ➕ `src/components/Tutorials/TutorialsNavigator.tsx` (+134 -0) ➕ `src/components/Tutorials/TutorialsNoteDetail.tsx` (+128 -0) ➕ `src/components/Tutorials/TutorialsNoteItem.tsx` (+31 -0) ➕ `src/components/Tutorials/TutorialsNoteList.tsx` (+74 -0) ➕ `src/components/Tutorials/TutorialsPage.tsx` (+278 -0) 📝 `src/components/atoms/CodeEditor.tsx` (+3 -1) 📝 `src/components/atoms/CustomizedCodeEditor.tsx` (+4 -1) 📝 `src/lib/db/store.ts` (+1 -1) 📝 `src/lib/i18n/enUS.ts` (+1 -0) 📝 `src/lib/i18n/ja.ts` (+1 -0) 📝 `src/lib/preferences/store.ts` (+1 -0) _...and 18 more files_ </details> ### 📄 Description Rewriting of tutorials and new user flow. <img width="1669" alt="Screen Shot 2019-12-09 at 19 11 11" src="https://user-images.githubusercontent.com/45586198/70427705-9687ac80-1ab8-11ea-922b-cdc3814ec1aa.png"> [Gif1 - SideNav, folding...](https://gyazo.com/67eba8f3a55c52391008b855d1f952f8) [Gif2 - GoUp, GoDown, Router.push, Split View, Preview view](https://gyazo.com/bb5fb046d709c901c8a37bd3178946ae) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 00:22:13 +03: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
starred/BoostNote-App#573
No description provided.