-
Notifications
You must be signed in to change notification settings - Fork 42
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
DataObject support for Scout JS #1311
Open
mvilliger
wants to merge
1
commit into
releases/25.1
Choose a base branch
from
features/mvi/25.1/dataObjectJs
base: releases/25.1
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.
Open
Conversation
This file contains 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
mvilliger
requested review from
cguglielmo,
bschwarzent,
paolobazzi and
fschinkel
December 19, 2024 08:18
fschinkel
reviewed
Dec 19, 2024
eclipse-scout-core/src/dataobject/serialize/ArrayDoNodeSerializer.ts
Outdated
Show resolved
Hide resolved
mvilliger
force-pushed
the
features/mvi/25.1/dataObjectJs
branch
from
December 20, 2024 12:34
17dee29
to
5c82fa9
Compare
cguglielmo
reviewed
Dec 23, 2024
mvilliger
force-pushed
the
features/mvi/25.1/dataObjectJs
branch
from
January 3, 2025 10:50
5c82fa9
to
ad10175
Compare
bschwarzent
reviewed
Jan 6, 2025
mvilliger
force-pushed
the
features/mvi/25.1/dataObjectJs
branch
8 times, most recently
from
January 13, 2025 07:54
3e57d12
to
3566805
Compare
mvilliger
force-pushed
the
features/mvi/25.1/dataObjectJs
branch
from
January 14, 2025 14:50
3566805
to
ed70a5e
Compare
- Introduce a DataObjectTransformer which adds annotations during TypeScript compile time to all attributes of DataObjects. These annotations contain the data type of the attribute to be retrieved at runtime. - Add a base class for DataObjects: BaseDoEntity - Add ID classes in TS (number, string uuid, composite) - Add a DoRegistry to retrieve all DataObjects known in TS - Migrate existing DOs to the new base class including decorators. - Add convenience methods to ajax utility to post and get DataObjects - Add a DataObject (De)Serializer for TS. It uses the data type annotations added by the compile time transformer and supports: - Arrays - Maps - Sets - Records - Dates - Ids - Enable experimental decorators for Scout JS - Allow the unqualified ID deserializer in Java to accept over-qualified instances (a typeName is available event not necessary because the ID is concrete). - Migrate from deprecated 'type' jQuery ajax property to the new 'method' property. - Add objects.equals2 and equalsRecursive2. Differences to original: - Dates are supported (compared by value) - Classes must be same for two objects to be equal - empty Sets/Maps are considered equal - Add objects.equalsSet & objects.equalsMap In a future release these new functions will replace the existing ones. 389583
mvilliger
force-pushed
the
features/mvi/25.1/dataObjectJs
branch
from
January 14, 2025 19:58
ed70a5e
to
15b7447
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
389583