mirror of
https://github.com/mealie-recipes/mealie.git
synced 2024-12-25 13:31:20 -08:00
0a344731c8
* added timeline event filters * updated empty timeline text * simplify icons/labels for event types * added missing translations * cloned sort improvements to explore page * added filter indicator * lint * removed lint warning * add top margin to "no events found" text Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com> * fixed reversed sort icons Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com> * fixed sort dir on timeline filter * sync checkbox state with preferences state --------- Co-authored-by: Kuchenpirat <24235032+Kuchenpirat@users.noreply.github.com>
36 lines
842 B
TypeScript
36 lines
842 B
TypeScript
import { computed, useContext } from "@nuxtjs/composition-api";
|
|
import { TimelineEventType } from "~/lib/api/types/recipe";
|
|
|
|
export interface TimelineEventTypeData {
|
|
value: TimelineEventType;
|
|
label: string;
|
|
icon: string;
|
|
}
|
|
|
|
export const useTimelineEventTypes = () => {
|
|
const { $globals, i18n } = useContext();
|
|
const eventTypeOptions = computed<TimelineEventTypeData[]>(() => {
|
|
return [
|
|
{
|
|
value: "comment",
|
|
label: i18n.tc("recipe.comment"),
|
|
icon: $globals.icons.commentTextMultiple,
|
|
},
|
|
{
|
|
value: "info",
|
|
label: i18n.tc("settings.theme.info"),
|
|
icon: $globals.icons.informationVariant,
|
|
},
|
|
{
|
|
value: "system",
|
|
label: i18n.tc("general.system"),
|
|
icon: $globals.icons.cog,
|
|
},
|
|
];
|
|
});
|
|
|
|
return {
|
|
eventTypeOptions,
|
|
}
|
|
}
|