Skip to content

Commit

Permalink
add functionality to edit button, sort products by last modified
Browse files Browse the repository at this point in the history
  • Loading branch information
IshavSohal committed Dec 6, 2024
1 parent 6ab1b8b commit 67988d5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@
min-width: 0;
max-width: 100%;
"
@click="editProduct(storyline.uuid)"
>
<span class="pr-1">
<svg
Expand Down Expand Up @@ -185,12 +186,13 @@ export default class HomeV extends Vue {
console.error(error);
});
}
get userName(): string {
return this.profile?.userName || 'Guest';
}
get userStorylines(): Array<Storyline> {
return this.profile?.storylines || {};
return this.profile?.storylines?.sort((a, b) => new Date(b.lastModified) - new Date(a.lastModified)) || {};
}
dateFormatter(date: string | null): string {
Expand All @@ -217,6 +219,10 @@ export default class HomeV extends Vue {
}
}
}
editProduct(uuid: number): void {
this.$router.push({ name: 'editor', params: { uid: uuid } });
}
}
</script>

Expand Down

0 comments on commit 67988d5

Please sign in to comment.