-
Notifications
You must be signed in to change notification settings - Fork 0
209 embedpdf viewer #210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
209 embedpdf viewer #210
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
51e703f
progress on embedpdf viewer
InfinityBowman b3380d8
we can now see the pdf in headless mode
InfinityBowman 01f39a5
Apply Prettier formatting
actions-user 6bc814a
add zoom functionality
InfinityBowman abc42dd
Merge branch '209-embedpdf-viewer' of https://github.com/InfinityBowm…
InfinityBowman 82aa529
Apply Prettier formatting
actions-user 4e4bce1
remove dist
InfinityBowman 9ada130
ignore dist
InfinityBowman fbac302
remove headless embedpdf, improve snippet version
InfinityBowman 487b020
improve menu positioning
InfinityBowman 2f9140a
Apply Prettier formatting
actions-user 1b00556
remove shapes
InfinityBowman e3c128c
Merge branch '209-embedpdf-viewer' of https://github.com/InfinityBowm…
InfinityBowman 5224706
reduce desktop mode threshold (mobile is only on very small)
InfinityBowman 07707b3
Merge https://github.com/InfinityBowman/corates into 209-embedpdf-viewer
InfinityBowman a6c49b1
update plans and docs
InfinityBowman 799a07a
Apply Prettier formatting
actions-user 5d7229b
remove deps
InfinityBowman 70b2e9b
Merge branch '209-embedpdf-viewer' of https://github.com/InfinityBowm…
InfinityBowman ad3c266
Apply Prettier formatting
actions-user 31edeb2
fix import path
InfinityBowman 2a3c5ec
Merge branch '209-embedpdf-viewer' of https://github.com/InfinityBowm…
InfinityBowman ffe4b93
fix resources link
InfinityBowman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ node_modules | |
| npm-debug.log* | ||
| .wrangler | ||
| .turbo | ||
| /reference | ||
| reference/ | ||
|
|
||
| # Vite cache | ||
| .vite/ | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/docs/plans/application-improvement-recommendations.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| # Application improvement recommendations | ||
|
|
||
| This plan collects broad recommendations for improving CoRATES across: | ||
|
|
||
| - TypeScript migration strategy | ||
| - code organization | ||
| - testing | ||
| - performance | ||
| - accessibility | ||
| - monitoring and logging | ||
| - UI/UX polish | ||
| - tooling | ||
|
|
||
| ## Canonical source | ||
|
|
||
| The full recommendations document currently lives at: | ||
|
|
||
| - `docs/plans/application_improvement_recommendations_285cfcae.plan.md` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Audit logs implementation plan | ||
|
|
||
| This is a plan for adding comprehensive audit logging across CoRATES (admin actions, auth events, billing events, project lifecycle events, and data events like PDF upload/delete). | ||
|
|
||
| ## Summary | ||
|
|
||
| - Add a new `audit_logs` table in D1 (via Drizzle) keyed by a generated ID and timestamp. | ||
| - Add an audit middleware in Workers that: | ||
| - generates a request ID | ||
| - captures IP and user agent | ||
| - exposes a `ctx.audit.log(...)` helper | ||
| - Write audit events asynchronously (use `waitUntil`) so logging does not block responses. | ||
| - Expose an admin API to query and export audit logs. | ||
| - Add retention cleanup via a cron trigger. | ||
|
|
||
| ## Canonical source | ||
|
|
||
| The full detailed plan (including schema, event catalog, and implementation phases) currently lives at: | ||
|
|
||
| - `docs/plans/audit-logs.plan.md` |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: InfinityBowman/corates
Length of output: 216
🏁 Script executed:
Repository: InfinityBowman/corates
Length of output: 297
Verify whether the reference directory ignore pattern change was intentional.
The pattern
reference/(matches any level) is technically broader than/reference(root-only), as noted. However, noreference/directories currently exist in the repository that would be newly ignored by this change. If this broadening was unintentional, it should be reverted to/reference; if intentional to catch futurereference/directories at any level, the broader pattern is acceptable.🤖 Prompt for AI Agents