is it possible to order the traitement of display components?
when i take a look at the response of update, got this:
{
"components": [
{
"snapshot": "{\"data\":{\"search\":\"Y\"},\"memo\":{\"id\":\"plPPSjuVWkw4roHuGfVz\",\"name\":\"client-list\",\"path\":\"\\\/\",\"method\":\"GET\",\"children\":{\"1\":[\"div\",\"o9X8KBp03wGDKAaJsv5y\"]},\"scripts\":[],\"assets\":[],\"errors\":[],\"locale\":\"en\"},\"checksum\":\"e1a089aba048831387821ec664f721d73b7d0e307e2c123ba5e5833195e31dde\"}",
"effects": {
"returns": [],
"html": "<div wire:id=\"plPPSjuVWkw4roHuGfVz\">\n <input type=\"text\" wire:model.live=\"search\" placeholder=\"Search clients...\">\n <table>\n <thead>\n <tr>\n <th>Name<\/th>\n <th>Orders<\/th>\n <\/tr>\n <\/thead>\n <tbody>\n <!--[if BLOCK]><![endif]--> <tr wire:key=\"1\">\n <td>Yannick<\/td>\n <td>\n <div>\n <div wire:id=\"o9X8KBp03wGDKAaJsv5y\"><\/div> <\/div>\n <\/td>\n <\/tr>\n <!--[if ENDBLOCK]><![endif]-->\n <\/tbody>\n <\/table>\n<\/div>"
}
},
{
"snapshot": "{\"data\":{\"clientId\":1},\"memo\":{\"id\":\"o9X8KBp03wGDKAaJsv5y\",\"name\":\"client-orders\",\"path\":\"\\\/\",\"method\":\"GET\",\"children\":[],\"scripts\":[],\"assets\":[],\"props\":[\"clientId\"],\"errors\":[],\"locale\":\"en\"},\"checksum\":\"c16aa4b4735e3325d5d21cd1f87b3adddc71b95bca91251222c780690b9bcf17\"}",
"effects": {
"returns": [],
"html": "<div wire:id=\"o9X8KBp03wGDKAaJsv5y\" wire:key=\"client-orders-1\">\n <ul>\n <!--[if BLOCK]><![endif]--> <li :key=\"order-1\">chaussures<\/li>\n <!--[if ENDBLOCK]><![endif]-->\n <\/ul>\n<\/div>"
}
},
{
"snapshot": "{\"data\":{\"clientId\":2},\"memo\":{\"id\":\"5A7ii32Kb8etW92fY7LJ\",\"name\":\"client-orders\",\"path\":\"\\\/\",\"method\":\"GET\",\"children\":[],\"scripts\":[],\"assets\":[],\"props\":[\"clientId\"],\"errors\":[],\"locale\":\"en\"},\"checksum\":\"7d16b2311aa68b57fc245e5a10b58e30366cd5f88ac2087fb8c9a5ef2be47203\"}",
"effects": {
"returns": []
}
},
{
"snapshot": "{\"data\":{\"clientId\":3},\"memo\":{\"id\":\"1BP5puGTVFdTyCS5XBLl\",\"name\":\"client-orders\",\"path\":\"\\\/\",\"method\":\"GET\",\"children\":[],\"scripts\":[],\"assets\":[],\"props\":[\"clientId\"],\"errors\":[],\"locale\":\"en\"},\"checksum\":\"164024506b68ee401529259dab04e7658e5d87293056022b6d6216ca816c535e\"}",
"effects": {
"returns": []
}
}
],
"assets": []
}
If component are manage in the order of the file, it's seems to be normal to have the error.
In first component(the parent) we can the the html that have only the first child component.
The second work because it's recreate by the first
The two others are not created by the first so it's normal to not found them
and when a component is not found, got the error and livewire not work after this
or can we say to livewire to continue even if there is this error ?