diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue
index 01bf26b0a..13345e63c 100644
--- a/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue
+++ b/platypush/backend/http/webapp/src/components/panels/Entities/Index.vue
@@ -15,9 +15,12 @@
-
No entities found
@@ -240,6 +243,19 @@ export default {
}, {})
},
+ configValuesByParentId(parentId) {
+ return Object.values(this.entities).
+ filter(
+ (entity) => entity
+ && entity.parent_id === parentId
+ && entity.is_configuration
+ ).
+ reduce((obj, entity) => {
+ obj[entity.id] = entity
+ return obj
+ }, {})
+ },
+
clearEntityTimeouts(entityId) {
if (this.errorEntities[entityId])
delete this.errorEntities[entityId]
diff --git a/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue b/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue
index 71ae59bd3..9db443f1e 100644
--- a/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue
+++ b/platypush/backend/http/webapp/src/components/panels/Entities/Modal.vue
@@ -1,5 +1,5 @@
-
+
Are you sure that you want to delete this entity?
Note: you should only delete an entity if its plugin has been disabled
@@ -101,6 +101,30 @@
+
+
+
+
+
+ Configuration
+
+
+
+
+
+
+
+
+
+
+
@@ -111,11 +135,12 @@ import ConfirmDialog from "@/components/elements/ConfirmDialog";
import EditButton from "@/components/elements/EditButton";
import NameEditor from "@/components/elements/NameEditor";
import Utils from "@/Utils";
-import meta from './meta.json'
+import Entity from "./Entity";
+import meta from './meta.json';
export default {
- name: "Entity",
- components: {Modal, EditButton, NameEditor, Icon, ConfirmDialog},
+ name: "EntityModal",
+ components: {Entity, Modal, EditButton, NameEditor, Icon, ConfirmDialog},
mixins: [Utils],
emits: ['input', 'loading'],
props: {
@@ -128,6 +153,19 @@ export default {
type: Boolean,
default: false,
},
+
+ configValues: {
+ type: Object,
+ default: () => {},
+ },
+ },
+
+ computed: {
+ computedConfig() {
+ return Object.values(this.configValues).sort(
+ (a, b) => (a.name || '').localeCompare(b.name || '')
+ )
+ },
},
data() {
@@ -135,6 +173,7 @@ export default {
loading: false,
editName: false,
editIcon: false,
+ configCollapsed: true,
}
},
@@ -211,10 +250,11 @@ export default {