-
Notifications
You must be signed in to change notification settings - Fork 615
PRO-6576 fix default values for object fields in widgets and generally unify newInstance implementations #4722
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
Conversation
…y unify newInstance implementations
| newWidget(type) { | ||
| const schema = apos.modules[apos.area.widgetManagers[type]].schema; | ||
| const widget = { | ||
| ...newInstance(schema), |
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.
Nice
| @@ -1,5 +1,6 @@ | |||
| import AposInputMixin from 'Modules/@apostrophecms/schema/mixins/AposInputMixin'; | |||
| import { klona } from 'klona'; | |||
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.
Do we still need klona?
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.
| } | ||
| }, | ||
| getDefault() { | ||
| const object = {}; |
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.
I totally thought I did this one, thank you
| ...this.getDefault(), | ||
| ...docData | ||
| }; | ||
| this.docFields.data = _.merge( |
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.
Wow yet another one!
CHANGELOG.md
Outdated
|
|
||
| ### Adds | ||
|
|
||
| * Apostrophe now automatically adds the appropriate default values for new properties in the schema, even for existing documents in the database. This is done automatically during the migration phase of startup. |
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.
| ### Adds | |
| * Apostrophe now automatically adds the appropriate default values for new properties in the schema, even for existing documents in the database. This is done automatically during the migration phase of startup. | |
| ### Adds |
changelog from #4721
CHANGELOG.md
Outdated
|
|
||
| ### Fixes | ||
|
|
||
| * Apostrophe's migration logic is no longer executed twice on every startup and three times in the migration task. It is executed exactly once, always at the same point in the startup process. This bug did not cause significant performance issues because migrations were only executed once, but there is a small performance improvement. | ||
| * Default properties of object fields present in a widget now populate correctly even if never focused in the editor. |
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.
| ### Fixes | |
| * Apostrophe's migration logic is no longer executed twice on every startup and three times in the migration task. It is executed exactly once, always at the same point in the startup process. This bug did not cause significant performance issues because migrations were only executed once, but there is a small performance improvement. | |
| * Default properties of object fields present in a widget now populate correctly even if never focused in the editor. |
changelog from #4721
|
waiting for the Cypress tests to finish. |
ETLaurent
left a comment
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.
* upstream/main: (77 commits) PRO-6578: auto import of inline images (apostrophecms#4723) Inline array improvements (apostrophecms#4671) take credit for the fix as well as the "change" (apostrophecms#4725) PRO-6576 fix default values for object fields in widgets and generally unify newInstance implementations (apostrophecms#4722) release 4.7.0 (apostrophecms#4717) allows to render widgets in published mode (for non localized with pu… (apostrophecms#4709) fix subfield imports (it was a bug in fetchRelationships: false) (apostrophecms#4715) Add replaces configuration for editor context menus (apostrophecms#4714) bump uploadfs dep (apostrophecms#4712) add batch operations to pages (apostrophecms#4684) PRO-6477 undhandled promise errors (apostrophecms#4700) fix slat order (apostrophecms#4710) make apostoggle accessible (apostrophecms#4708) Improve context menu positions (apostrophecms#4706) remove focus blockers in page relationship editor (apostrophecms#4702) Release 4.6.1 mergeback (apostrophecms#4703) remove z-index bump on area schema fields, boost menu index (apostrophecms#4699) Pro 6345 fix deprecated sass (apostrophecms#4640) Keep widget focused when menu is open (apostrophecms#4695) skipReplace for changeDocIds (apostrophecms#4694) ...


One implementation of
newInstanceto bring them all and in the darkness bind themThank you for grinding through this with me Etienne! We were basically done I just hadn't saved a file yet