File tree 1 file changed +16
-6
lines changed
addons/html_builder/static/src/core/building_blocks
1 file changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,13 @@ export class BuilderList extends Component {
92
92
}
93
93
94
94
formatRawValue ( rawValue ) {
95
- return rawValue ? JSON . parse ( rawValue ) : [ ] ;
95
+ const items = rawValue ? JSON . parse ( rawValue ) : [ ] ;
96
+ for ( const item of items ) {
97
+ if ( ! ( "_id" in item ) ) {
98
+ item . _id = this . getNextAvailableEntryId ( items ) ;
99
+ }
100
+ }
101
+ return items ;
96
102
}
97
103
98
104
addItem ( ) {
@@ -122,15 +128,19 @@ export class BuilderList extends Component {
122
128
}
123
129
124
130
makeDefaultItem ( ) {
125
- const items = this . formatRawValue ( this . state ?. value ) ;
131
+ return {
132
+ ...this . props . defaultValue ,
133
+ _id : this . getNextAvailableEntryId ( ) ,
134
+ } ;
135
+ }
136
+
137
+ getNextAvailableEntryId ( items ) {
138
+ items = items || this . formatRawValue ( this . state ?. value ) ;
126
139
const biggestId = items
127
140
. map ( ( item ) => parseInt ( item . _id ) )
128
141
. reduce ( ( acc , id ) => ( id > acc ? id : acc ) , - 1 ) ;
129
142
const nextAvailableId = biggestId + 1 ;
130
- return {
131
- ...this . props . defaultValue ,
132
- _id : nextAvailableId . toString ( ) ,
133
- } ;
143
+ return nextAvailableId . toString ( ) ;
134
144
}
135
145
136
146
onInput ( e ) {
You can’t perform that action at this time.
0 commit comments