Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add functionality to edit button, sort products by last modifed #432

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading