Skip to content

Commit 27f2247

Browse files
committed
BuilderList: ensure items always have an _id
1 parent 24a24a5 commit 27f2247

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

addons/html_builder/static/src/core/building_blocks/builder_list.js

+16-6
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,13 @@ export class BuilderList extends Component {
9292
}
9393

9494
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;
96102
}
97103

98104
addItem() {
@@ -122,15 +128,19 @@ export class BuilderList extends Component {
122128
}
123129

124130
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);
126139
const biggestId = items
127140
.map((item) => parseInt(item._id))
128141
.reduce((acc, id) => (id > acc ? id : acc), -1);
129142
const nextAvailableId = biggestId + 1;
130-
return {
131-
...this.props.defaultValue,
132-
_id: nextAvailableId.toString(),
133-
};
143+
return nextAvailableId.toString();
134144
}
135145

136146
onInput(e) {

0 commit comments

Comments
 (0)