Commit bdf574d
parent 6080afb
author Trang Doan <[email protected]> 1744314525 -0400
committer Michael Gartner <[email protected]> 1747354088 -0600
ENG-96 Create new relationship between nodes (#115)
* instantiate new relationship worked
* fix
* address PR comments
* fix bi-directional update issues
* show only compatible node type options
* small fix
* breakdown the components. use datacore
* working
* address PR comments
* improve search by only allowing compatible node results
* .
* rm dataview
---------
Co-authored-by: Michael Gartner <[email protected]>
Move llm-api endpoints to vercel serverless (#102)
* testing gemini
* move endgoint to website
* open ai endpoint
* added anthropic endpoint
* pass env vars
* add cors handdling and options
* .
* using centralised cors middleware
* only adding bypass cookie
* use right key
* remove the bypass token requirement
* sanitize, fix routes
* remove server action config
* DRY
* remove unused
* address review
* adress review
Roam: Add feedback toggle (#118)
* add settings to hide or show button, also works when disabled or enabled midway
* review
* .
---------
Co-authored-by: Michael Gartner <[email protected]>
[ENG-197] Fix creating link with invalid chars (#121)
* fix creating link with invalid chars
* placeholder update
---------
Co-authored-by: Michael Gartner <[email protected]>
Roam: Add feedback button to settings menu - ENG-147 (#122)
* add button to bottom right, don't hide sdk css, tested
* remove intent not working
git
* remove ts-ignore and use a better type def
* remove styling
Update NodeConfig to use new UIDs for DiscourseNodeIndex and DiscourseNodeSpecification components (#126)
Roam: Add PostHog user identification for enhanced analytics tracking using user's roam UID as the unique identifier - ENG-177 (#123)
* add posthog identify
* remove username and email to keep it anonymus
* double userUid and best practice for js
Roam: Discourse Context Overlay - remove queue and arbitrary delay (#127)
* Refactor getOverlayInfo to use async/await and improve error handling. Update cache key from title to tag and remove overlayQueue logic for cleaner implementation.
* Remove experimental getOverlayInfo function
* Remove unused refreshUi logic
[ENG-44] Display relations (#116)
* instantiate new relationship worked
* add display relations
* remove dv
* sm fix
[ENG-198] Filtered out related file in search (#125)
* filtered out related file
* fix some naming
[ENG-97] Use TailwindCSS in obsidian app (#128)
* Update Obsidian app to integrate Tailwind CSS with PostCSS and Autoprefixer support
- Added Tailwind CSS, PostCSS, and Autoprefixer to package dependencies
- Configured styles.css to include Tailwind directives
- Enhanced compile script to process styles using PostCSS with Tailwind and Autoprefixer
* delete irrelevant package
[ENG-192] Change all existing styles to using tw (#129)
* Update Obsidian app to integrate Tailwind CSS with PostCSS and Autoprefixer support
- Added Tailwind CSS, PostCSS, and Autoprefixer to package dependencies
- Configured styles.css to include Tailwind directives
- Enhanced compile script to process styles using PostCSS with Tailwind and Autoprefixer
* delete irrelevant package
* changing all styles to tailwindcss
* Update Obsidian app to integrate Tailwind CSS with PostCSS and Autoprefixer support
- Added Tailwind CSS, PostCSS, and Autoprefixer to package dependencies
- Configured styles.css to include Tailwind directives
- Enhanced compile script to process styles using PostCSS with Tailwind and Autoprefixer
* delete irrelevant package
* changing all styles to tailwindcss
---------
Co-authored-by: Michael Gartner <[email protected]>
Roam: Bug-fix: Don't let user create discourse nodes with empty text using node context menu - ENG-171 (#130)
* functional covering all three cases tested locally
* apply coderabbit review suggestion
* better approach one that I understand and can reason about
* accidental removal of onClose
Update Roam app version to 0.13.0 in package.json and package-lock.json (#134)
[ENG-204] Move from localStorage to extensionAPI.settings (#133)
* cur progress
* address PR comments
* kinda works. need to test more
* small fix
* address PR comments
.
Create publish-obsidian.yml
Update publish-obsidian.yml
Update publish-obsidian.yml
Update publish-obsidian.yml
Enhance DiscourseContextOverlay: Update button styles to include loading state and improve score/ref display during loading. Use placeholders for score and refs when loading. (#136)
.
Update publish-obsidian.yml
Update publish-obsidian.yml
Update publish-obsidian.yml
Update publish-obsidian.yml
Refactor ExportDialog: Remove discourseGraphEnabled state and simplify FormGroup visibility logic. Set includeDiscourseContext to false by default. (#139)
Enhance LabelDialog: Add confirmText to return object for improved button text handling based on action type. (#141)
Additional styles / cursor rules (#142)
* Update STYLE_GUIDE.md and main.mdc: Add guideline for utilizing utility functions for reusable logic and common operations.
* Update STYLE_GUIDE.md and main.mdc: Add guideline to prefer arrow functions over regular function declarations.
* Update main.mdc: Add guideline to prefer Tailwind classes when refactoring inline styles.
* Update STYLE_GUIDE.md and main.mdc: Add guideline to prefer early returns over nested conditionals for improved readability.
Roam: When a user deletes a node also delete all the corresponding relations to the node - ENG-26 (#149)
* ask user for confirmation, delete corresponding relations
* address review
* address review
* address comments
[ENG-301] Create node in right-click menu (#152)
* create node in right-click menu
* small fix
* address PR comments
* address PR comments
add readme and remove sample commands
remove sample editor command
rm space
minor fixes
Roam: Bug fix - Insert Discourse Node after creation (#154)
* remove focus after menu select to allow updateBlock to work
* add clarifying comment
[ENG-308] Add command to open DG settings (#158)
* add command to open DG settings
* edit comment
ENG-322 - Switch from MIT to Apache 2.0 license (#156)
* Switch from MIT to Apache 2.0 license
* copyright discourse graphs
* rm liscense from apps/roam
---------
Co-authored-by: Michael Gartner <[email protected]>
initial port
[ENG-207] Move Github sync setting to individual nodes (#124)
* current progress
* improve in UI: if sync is turned off then also turn off the comments configuration
* address PR comments
* revert graphOverviewUid bug
* revert graphOverviewUid bug - getDiscourseNodes
* avoid racing conditions for github sync
* nested settings
* temp fix to race condition
* remove unecessary DOM and match existing styles
---------
Co-authored-by: Michael Gartner <[email protected]>
Eng 286 show when GitHub sync is disabled globally (#143)
* Refactor GitHub Sync settings in NodeConfig and GeneralSettings components
- Updated the onChange handler for GitHub Sync to use async/await and added a timeout for refreshing the config tree.
- Introduced a global settings check in NodeConfig to conditionally render the GitHub Sync checkbox and comments configuration.
- Passed setMainTab prop to NodeConfig for better navigation control.
This improves the user experience by ensuring that settings are updated correctly and provides clear feedback when global settings are disabled.
* matchingNode fix
.
Refactor Export components to use getSetting for consistent settings retrieval
- Updated ExportDialog and ExportGithub components to replace localStorageGet with getSetting for fetching GitHub OAuth and repository settings.
- Modified extensionSettings utility functions to use arrow functions and provide a default value for getSetting.
- Improved code readability and maintainability by standardizing the method of accessing settings.
Eng 286 show when GitHub sync is disabled globally (#143)
* Refactor GitHub Sync settings in NodeConfig and GeneralSettings components
- Updated the onChange handler for GitHub Sync to use async/await and added a timeout for refreshing the config tree.
- Introduced a global settings check in NodeConfig to conditionally render the GitHub Sync checkbox and comments configuration.
- Passed setMainTab prop to NodeConfig for better navigation control.
This improves the user experience by ensuring that settings are updated correctly and provides clear feedback when global settings are disabled.
* matchingNode fix
.1 parent 6080afb commit bdf574d
File tree
79 files changed
+2643
-679
lines changed- .cursor/rules
- .github/workflows
- apps
- obsidian
- docs/media
- scripts
- src
- components
- services
- utils
- roam
- src
- components
- canvas
- settings
- utils
- website
- app
- api/llm
- anthropic/chat
- gemini/chat
- openai/chat
- types
- utils/llm
- packages
- eslint-config
- tailwind-config
- typescript-config
- types
- ui
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
79 files changed
+2643
-679
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | 6 | | |
8 | 7 | | |
9 | 8 | | |
| |||
28 | 27 | | |
29 | 28 | | |
30 | 29 | | |
| 30 | + | |
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
| 40 | + | |
40 | 41 | | |
41 | 42 | | |
42 | 43 | | |
| |||
50 | 51 | | |
51 | 52 | | |
52 | 53 | | |
53 | | - | |
54 | | - | |
55 | | - | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
| 53 | + | |
| 54 | + | |
| 55 | + | |
| 56 | + | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
| 64 | + | |
| 65 | + | |
| 66 | + | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
| 89 | + | |
| 90 | + | |
| 91 | + | |
| 92 | + | |
| 93 | + | |
| 94 | + | |
| 95 | + | |
| 96 | + | |
| 97 | + | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
| 102 | + | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
| 110 | + | |
| 111 | + | |
| 112 | + | |
| 113 | + | |
| 114 | + | |
| 115 | + | |
| 116 | + | |
| 117 | + | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
| 122 | + | |
| 123 | + | |
| 124 | + | |
| 125 | + | |
| 126 | + | |
| 127 | + | |
| 128 | + | |
| 129 | + | |
| 130 | + | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
| 135 | + | |
| 136 | + | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
| 146 | + | |
| 147 | + | |
| 148 | + | |
| 149 | + | |
| 150 | + | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
| 159 | + | |
| 160 | + | |
| 161 | + | |
| 162 | + | |
| 163 | + | |
| 164 | + | |
| 165 | + | |
| 166 | + | |
| 167 | + | |
| 168 | + | |
| 169 | + | |
0 commit comments