-
Notifications
You must be signed in to change notification settings - Fork 11
making calendar tutorial #1902
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
Draft
ellyxir
wants to merge
20
commits into
main
Choose a base branch
from
ellyse/tutorials-calendar-basics
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
making calendar tutorial #1902
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
98b3c31
feat: add HTML dataset attribute support to JSX renderer
c963046
rough calendar data structure, for view list of dates to be shown, fo…
ellyxir 47bd43e
handle click on UI item and show the date in different UI element
ellyxir c037817
cross reference and show the list of todos for the clicked date
ellyxir 1d4e212
moved showing a date and its todo to a subrecipe
ellyxir ee2dde1
fix: improve dataset attribute handling and type safety
seefeldb be13d58
test: add comprehensive tests for dataset attribute handling
seefeldb f442651
add item operator, except i think the handler is overly cautious
ellyxir 69c9bd4
Merge remote-tracking branch 'origin/feat/dataset-support' into ellys…
ellyxir 21ee717
can remove items but adding new one first time after breaks
ellyxir 7b360f3
removed prefilled values for arrays, they are empty now
ellyxir 5875004
removed trying to use String()
ellyxir 29a796b
fix(runner): ensure IDs are added to array elements and default values
seefeldb fcdbddc
make adding IDs recursive, since the calendar use-case sets objects w…
seefeldb ff1955a
make toCell non-enumerable so that {...obj} doesn't copy them and acc…
seefeldb 6333dd7
Merge remote-tracking branch 'origin/berni/ct-982-fix-defaults-and-cr…
ellyxir e6b2b5a
fix(runner): inline data URIs before handling write redirects
seefeldb 1f261c7
added test
seefeldb bc00f23
Merge remote-tracking branch 'origin/fix/inline-data-uri-on-write' in…
ellyxir 2093025
use spread operators
ellyxir 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
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
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.
Uh oh!
There was an error while loading. Please reload this page.
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.
Calling
recursivelyAddIDIfNeededhere convertsCellarguments into plain objects beforediffAndUpdateruns, so flows likecell.set(otherCell)orpush(cell)stop emitting links and instead serialize the cell’s internal fields, breaking link-based updates.Prompt for AI agents