diff --git a/frontend/src/app/pages/photos.vue b/frontend/src/app/pages/photos.vue index 6ea4f9c88..d8ba6be3d 100644 --- a/frontend/src/app/pages/photos.vue +++ b/frontend/src/app/pages/photos.vue @@ -134,228 +134,11 @@ delete - - - - - - -
-

No photos matched your search

-
Try using other terms and search options such as category, country and camera.
-
-
-
- - - - - - - - - - - check_box - check_box_outline_blank - - - - favorite - - favorite_border - - - - - -
-

{{ photo.PhotoTitle | - truncate(80) }}

-
- date_range - {{ photo.TakenAt | moment('DD/MM/YYYY hh:mm:ss') }} -
- photo_camera - {{ photo.getCamera() }} -
- location_on - {{ photo.getLocation() }} -
-
-
-
-
-
-
-
- - - - -
-

No photos matched your search

-
Try using other terms and search options such as category, country and camera.
-
-
-
- - - - - - - - - - - check_box - check_box_outline_blank - - - - favorite - favorite_border - - - - - - - -
- - - - -
-

No photos matched your search

-
Try using other terms and search options such as category, country and camera.
-
-
-
- - - - - - - - - - - check_box - check_box_outline_blank - - - - favorite - favorite_border - - - - - - - -
+ + + + diff --git a/frontend/src/component/app-photo-list.vue b/frontend/src/component/app-photo-list.vue new file mode 100644 index 000000000..ac9714f8e --- /dev/null +++ b/frontend/src/component/app-photo-list.vue @@ -0,0 +1,55 @@ + + diff --git a/frontend/src/component/app-photo-mosaic.vue b/frontend/src/component/app-photo-mosaic.vue new file mode 100644 index 000000000..1fed719fb --- /dev/null +++ b/frontend/src/component/app-photo-mosaic.vue @@ -0,0 +1,72 @@ + + diff --git a/frontend/src/component/app-photo-tiles.vue b/frontend/src/component/app-photo-tiles.vue new file mode 100644 index 000000000..de8000116 --- /dev/null +++ b/frontend/src/component/app-photo-tiles.vue @@ -0,0 +1,72 @@ + + diff --git a/frontend/src/component/init.js b/frontend/src/component/init.js index e7c05db1a..f3d0649ac 100644 --- a/frontend/src/component/init.js +++ b/frontend/src/component/init.js @@ -2,6 +2,10 @@ import AppAlert from "./app-alert.vue"; import AppNavigation from "./app-navigation.vue"; import AppLoadingBar from "./app-loading-bar.vue"; import AppGallery from "./app-gallery.vue"; +import AppPhotoDetails from "./app-photo-details.vue"; +import AppPhotoTiles from "./app-photo-tiles.vue"; +import AppPhotoMosaic from "./app-photo-mosaic.vue"; +import AppPhotoList from "./app-photo-list.vue"; const components = {}; @@ -10,6 +14,10 @@ components.install = (Vue) => { Vue.component("app-gallery", AppGallery); Vue.component("app-navigation", AppNavigation); Vue.component("app-loading-bar", AppLoadingBar); + Vue.component("app-photo-details", AppPhotoDetails); + Vue.component("app-photo-tiles", AppPhotoTiles); + Vue.component("app-photo-mosaic", AppPhotoMosaic); + Vue.component("app-photo-list", AppPhotoList); }; export default components; diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 8bb288935..995cddfa9 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -88,7 +88,6 @@ const config = { hmr: false, fallback: "vue-style-loader", use: [ - // "vue-style-loader", "style-loader", { loader: "css-loader",