Skip to content

Commit

Permalink
Merge pull request #105 from crazyscientist/79_81_reference_attribute
Browse files Browse the repository at this point in the history
Bugfixes for attributes of type "reference"
  • Loading branch information
frozenIceage authored Nov 7, 2022
2 parents 1a31d96 + 55ab659 commit abd87ec
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 17 deletions.
21 changes: 13 additions & 8 deletions frontend/src/components/EntityList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,18 @@ export default {
if (oldPage !== newPage) {
this.getEntities({resetPage: false});
}
},
'schema': {
async handler(newValue, oldValue) {
try {
if (newValue !== oldValue) {
await this.onUpdate();
}
} catch (e) {
console.error(e)
}
},
immediate: true
}
},
methods: {
Expand All @@ -84,7 +96,7 @@ export default {
}
const response = await this.$api.getEntities({
schemaSlug: this.schema.slug,
size: this.$refs.paginator.pageSize,
size: this.$refs.paginator?.pageSize || 10,
page: this.currentPage,
filters: this.filters,
orderBy: this.orderBy,
Expand Down Expand Up @@ -120,12 +132,6 @@ export default {
Promise.all(promises).then(() => this.getEntities({resetPage: true}));
}
},
async activated() {
await this.getEntities({resetPage: true}).then(() => null);
},
created() {
this.$watch("schema", this.onUpdate);
},
data() {
return {
entities: [],
Expand All @@ -140,4 +146,3 @@ export default {
}
};
</script>
39 changes: 30 additions & 9 deletions frontend/src/components/RefEntity.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,35 @@ export default {
entity: null
}
},
async activated() {
if (this.entityId) {
this.loading = true;
const params = {schemaSlug: this.schemaSlug, entityIdOrSlug: this.entityId};
this.entity = await this.$api.getEntity(params);
this.loading = false;
} else {
this.loading = false;
computed: {
schemaAndEntity() {
if (this.schemaSlug && this.entityId) {
return {schema: this.schemaSlug, entity: this.entityId};
}
return null;
}
},
methods: {
async load() {
if (this.entityId) {
this.loading = true;
const params = {schemaSlug: this.schemaSlug, entityIdOrSlug: this.entityId};
this.entity = await this.$api.getEntity(params);
this.loading = false;
} else {
this.loading = false;
}
}
},
watch: {
"schemaAndEntity": {
async handler(oldValue, newValue) {
if (oldValue !== newValue) {
await this.load();
}
},
immediate: true,
deep: true
}
}
}
Expand All @@ -54,4 +75,4 @@ export default {
width: 12rem;
max-width: 25rem;
}
</style>
</style>

0 comments on commit abd87ec

Please sign in to comment.