photoprism/frontend/src/routes.js
Michael Mayer 35bed81ec5 Filter private photos
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-24 18:19:18 +02:00

184 lines
4.7 KiB
JavaScript

import Photos from "pages/photos.vue";
import Albums from "pages/albums.vue";
import AlbumPhotos from "pages/album/photos.vue";
import Places from "pages/places.vue";
import Labels from "pages/labels.vue";
import Events from "pages/events.vue";
import People from "pages/people.vue";
import Library from "pages/library.vue";
import Share from "pages/share.vue";
import Settings from "pages/settings.vue";
import Login from "pages/login.vue";
import Discover from "pages/discover.vue";
import Todo from "pages/todo.vue";
const c = window.clientConfig;
export default [
{
name: "home",
path: "/",
redirect: "/photos",
},
{
name: "login",
path: "/login",
component: Login,
meta: {title: "Sign In", auth: false},
},
{
name: "photos",
path: "/photos",
component: Photos,
meta: {title: c.subtitle, auth: true},
},
{
name: "albums",
path: "/albums",
component: Albums,
meta: {title: "Albums", auth: true},
},
{
name: "album",
path: "/albums/:uuid",
component: AlbumPhotos,
meta: {title: "Album", auth: true},
},
{
name: "favorites",
path: "/favorites",
component: Photos,
meta: {title: "Favorites", auth: true},
props: {staticFilter: {favorites: true}},
},
{
name: "review",
path: "/review",
component: Photos,
meta: {title: "Review", auth: true},
props: {staticFilter: {review: true}},
},
{
name: "private",
path: "/private",
component: Photos,
meta: {title: "Private", auth: true},
props: {staticFilter: {private: true}},
},
{
name: "archive",
path: "/archive",
component: Photos,
meta: {title: "Archive", auth: true},
props: {staticFilter: {archived: true}},
},
{
name: "places",
path: "/places",
component: Places,
meta: {title: "Places", auth: true},
},
{
name: "place",
path: "/places/:q",
component: Places,
meta: {title: "Places", auth: true},
},
{
name: "labels",
path: "/labels",
component: Labels,
meta: {title: "Labels", auth: true},
},
{
name: "events",
path: "/events",
component: Events,
meta: {title: "Events", auth: true},
},
{
name: "people",
path: "/people",
component: People,
meta: {title: "People", auth: true},
},
{
name: "filters",
path: "/filters",
component: Todo,
meta: {title: "Filters", auth: true},
},
{
name: "library_logs",
path: "/library/logs",
component: Library,
meta: {title: "Server Logs", auth: true, background: "application-light"},
props: {tab: 2},
},
{
name: "library_import",
path: "/library/import",
component: Library,
meta: {title: "Import Photos", auth: true, background: "application-light"},
props: {tab: 1},
},
{
name: "library",
path: "/library",
component: Library,
meta: {title: "Photo Library", auth: true, background: "application-light"},
props: {tab: 0},
},
{
name: "share",
path: "/share",
component: Share,
meta: {title: "Share with friends", auth: true},
},
{
name: "settings",
path: "/settings",
component: Settings,
meta: {title: "Settings", auth: true, background: "application-light"},
props: {tab: 0},
},
{
name: "settings_accounts",
path: "/settings/accounts",
component: Settings,
meta: {title: "Settings", auth: true, background: "application-light"},
props: {tab: 1},
},
{
name: "discover",
path: "/discover",
component: Discover,
meta: {title: "Discover", auth: true, background: "application-light"},
props: {tab: 0},
},
{
name: "discover_similar",
path: "/discover/similar",
component: Discover,
meta: {title: "Discover", auth: true, background: "application-light"},
props: {tab: 1},
},
{
name: "discover_season",
path: "/discover/season",
component: Discover,
meta: {title: "Discover", auth: true, background: "application-light"},
props: {tab: 2},
},
{
name: "discover_random",
path: "/discover/random",
component: Discover,
meta: {title: "Discover", auth: true, background: "application-light"},
props: {tab: 3},
},
{
path: "*", redirect: "/photos",
},
];