aboutsummaryrefslogtreecommitdiff
path: root/src/site/views/dashboard
diff options
context:
space:
mode:
authorPitu <[email protected]>2018-09-16 01:09:02 -0300
committerPitu <[email protected]>2018-09-16 01:09:02 -0300
commitfe10a00ba9a3c30d8718ca004ccd19518466f5bd (patch)
tree369752f59a88dd03df1e9752be0ba166bf93c933 /src/site/views/dashboard
parentFirst version of start script (diff)
downloadhost.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.tar.xz
host.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.zip
Site
Diffstat (limited to 'src/site/views/dashboard')
-rw-r--r--src/site/views/dashboard/Album.vue172
-rw-r--r--src/site/views/dashboard/Albums.vue342
-rw-r--r--src/site/views/dashboard/Settings.vue82
-rw-r--r--src/site/views/dashboard/Uploads.vue76
4 files changed, 672 insertions, 0 deletions
diff --git a/src/site/views/dashboard/Album.vue b/src/site/views/dashboard/Album.vue
new file mode 100644
index 0000000..f067e4d
--- /dev/null
+++ b/src/site/views/dashboard/Album.vue
@@ -0,0 +1,172 @@
+<style lang="scss" scoped>
+ @import '../../styles/colors.scss';
+ section { background-color: $backgroundLight1 !important; }
+ section.hero div.hero-body {
+ align-items: baseline;
+ }
+
+ div.view-container {
+ padding: 2rem;
+ }
+
+ div.album {
+ display: flex;
+ margin-bottom: 10px;
+
+ div.thumb {
+ width: 64px;
+ height: 64px;
+ -webkit-box-shadow: $boxShadowLight;
+ box-shadow: $boxShadowLight;
+ }
+
+ div.info {
+ margin-left: 15px;
+ h4 {
+ font-size: 1.5rem;
+ a {
+ color: $defaultTextColor;
+ font-weight: 400;
+ &:hover { text-decoration: underline; }
+ }
+ }
+ span { display: block; }
+ span:nth-child(3) {
+ font-size: 0.9rem;
+ }
+ }
+
+ div.latest {
+ flex-grow: 1;
+ justify-content: flex-end;
+ display: flex;
+ margin-left: 15px;
+
+ div.more {
+ width: 64px;
+ height: 64px;
+ background: white;
+ display: flex;
+ align-items: center;
+ padding: 10px;
+ text-align: center;
+ a {
+ line-height: 1rem;
+ color: $defaultTextColor;
+ &:hover { text-decoration: underline; }
+ }
+ }
+ }
+ }
+</style>
+<style lang="scss">
+ @import '../../styles/colors.scss';
+</style>
+
+
+<template>
+ <section class="hero is-fullheight">
+ <div class="hero-body">
+ <div class="container">
+ <div class="columns">
+ <div class="column is-narrow">
+ <Sidebar/>
+ </div>
+ <div class="column">
+
+ <h1 class="title">{{ albumName }}</h1>
+ <hr>
+
+ <div class="view-container">
+ <div v-for="album in albums"
+ :key="album.id"
+ class="album">
+ <div class="thumb">
+ <figure class="image is-64x64 thumb">
+ <img src="../../assets/images/blank.png">
+ </figure>
+ </div>
+ <div class="info">
+ <h4>
+ <router-link :to="`/dashboard/albums/${album.id}`">{{ album.name }}</router-link>
+ </h4>
+ <span>Updated <timeago :since="album.editedAt" /></span>
+ <span>{{ album.fileCount || 0 }} files</span>
+ </div>
+ <div class="latest">
+ <div v-for="file of album.files"
+ :key="file.id"
+ class="thumb">
+ <figure class="image is-64x64">
+ <a :href="file.url"
+ target="_blank">
+ <img :src="file.thumbSquare">
+ </a>
+ </figure>
+ </div>
+ <div v-if="album.fileCount > 5"
+ class="thumb more no-background">
+ <router-link :to="`/dashboard/albums/${album.id}`">{{ album.fileCount - 5 }}+ more</router-link>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </section>
+</template>
+
+<script>
+import Sidebar from '../../components/sidebar/Sidebar.vue';
+import Grid from '../../components/grid/Grid.vue';
+
+export default {
+ components: {
+ Sidebar,
+ Grid
+ },
+ data() {
+ return {
+ albums: [],
+ newAlbumName: null
+ };
+ },
+ metaInfo() {
+ return { title: 'Uploads' };
+ },
+ mounted() {
+ this.getAlbums();
+ this.$ga.page({
+ page: '/dashboard/albums',
+ title: 'Albums',
+ location: window.location.href
+ });
+ },
+ methods: {
+ async createAlbum() {
+ if (!this.newAlbumName || this.newAlbumName === '') return;
+ try {
+ const response = await this.axios.post(`${this.$config.baseURL}/album/new`,
+ { name: this.newAlbumName });
+ this.newAlbumName = null;
+ this.$toast.open(response.data.message);
+ this.getAlbums();
+ return;
+ } catch (error) {
+ this.$onPromiseError(error);
+ }
+ },
+ async getAlbums() {
+ try {
+ const response = await this.axios.get(`${this.$config.baseURL}/albums/mini`);
+ this.albums = response.data.albums;
+ console.log(this.albums);
+ } catch (error) {
+ console.error(error);
+ }
+ }
+ }
+};
+</script>
diff --git a/src/site/views/dashboard/Albums.vue b/src/site/views/dashboard/Albums.vue
new file mode 100644
index 0000000..8746148
--- /dev/null
+++ b/src/site/views/dashboard/Albums.vue
@@ -0,0 +1,342 @@
+<style lang="scss" scoped>
+ @import '../../styles/colors.scss';
+ section { background-color: $backgroundLight1 !important; }
+ section.hero div.hero-body {
+ align-items: baseline;
+ }
+ div.search-container {
+ display: flex;
+ justify-content: center;
+ }
+
+ div.view-container {
+ padding: 2rem;
+ }
+ div.album {
+ display: flex;
+ flex-wrap: wrap;
+ margin-bottom: 10px;
+
+ div.arrow-container {
+ width: 2em;
+ height: 64px;
+ position: relative;
+ cursor: pointer;
+
+ i {
+ border: 2px solid $defaultTextColor;
+ border-right: 0;
+ border-top: 0;
+ display: block;
+ height: 1em;
+ position: absolute;
+ transform: rotate(-135deg);
+ transform-origin: center;
+ width: 1em;
+ z-index: 4;
+ top: 22px;
+
+ -webkit-transition: transform 0.1s linear;
+ -moz-transition: transform 0.1s linear;
+ -ms-transition: transform 0.1s linear;
+ -o-transition: transform 0.1s linear;
+ transition: transform 0.1s linear;
+
+ &.active {
+ transform: rotate(-45deg);
+ }
+ }
+ }
+ div.thumb {
+ width: 64px;
+ height: 64px;
+ -webkit-box-shadow: $boxShadowLight;
+ box-shadow: $boxShadowLight;
+ }
+
+ div.info {
+ margin-left: 15px;
+ h4 {
+ font-size: 1.5rem;
+ a {
+ color: $defaultTextColor;
+ font-weight: 400;
+ &:hover { text-decoration: underline; }
+ }
+ }
+ span { display: block; }
+ span:nth-child(3) {
+ font-size: 0.9rem;
+ }
+ }
+
+ div.latest {
+ flex-grow: 1;
+ justify-content: flex-end;
+ display: flex;
+ margin-left: 15px;
+
+ span.no-files {
+ font-size: 1.5em;
+ color: #b1b1b1;
+ padding-top: 17px;
+ }
+
+ div.more {
+ width: 64px;
+ height: 64px;
+ background: white;
+ display: flex;
+ align-items: center;
+ padding: 10px;
+ text-align: center;
+ a {
+ line-height: 1rem;
+ color: $defaultTextColor;
+ &:hover { text-decoration: underline; }
+ }
+ }
+ }
+
+ div.details {
+ flex: 0 1 100%;
+ padding-left: 2em;
+ padding-top: 1em;
+ min-height: 50px;
+
+ .b-table {
+ padding: 2em 0em;
+
+ .table-wrapper {
+ -webkit-box-shadow: $boxShadowLight;
+ box-shadow: $boxShadowLight;
+ }
+ }
+ }
+ }
+</style>
+<style lang="scss">
+ @import '../../styles/colors.scss';
+
+ .b-table {
+ .table-wrapper {
+ -webkit-box-shadow: $boxShadowLight;
+ box-shadow: $boxShadowLight;
+ }
+ }
+</style>
+
+
+<template>
+ <section class="hero is-fullheight">
+ <div class="hero-body">
+ <div class="container">
+ <div class="columns">
+ <div class="column is-narrow">
+ <Sidebar/>
+ </div>
+ <div class="column">
+ <!--
+ <h1 class="title">Uploads</h1>
+ <h2 class="subtitle">Keep track of all your uploads in here</h2>
+ <hr>
+ -->
+ <div class="search-container">
+ <b-field>
+ <b-input v-model="newAlbumName"
+ placeholder="Album name..."
+ type="text"
+ @keyup.enter.native="createAlbum"/>
+ <p class="control">
+ <button class="button is-primary"
+ @click="createAlbum">Create album</button>
+ </p>
+ </b-field>
+ </div>
+
+ <div class="view-container">
+ <div v-for="album in albums"
+ :key="album.id"
+ class="album">
+ <div class="arrow-container"
+ @click="album.isDetailsOpen = !album.isDetailsOpen">
+ <i :class="{ active: album.isDetailsOpen }"
+ class="icon-arrow" />
+ </div>
+ <div class="thumb">
+ <figure class="image is-64x64 thumb">
+ <img src="../../assets/images/blank.png">
+ </figure>
+ </div>
+ <div class="info">
+ <h4>
+ <router-link :to="`/dashboard/albums/${album.id}`">{{ album.name }}</router-link>
+ </h4>
+ <span>Updated <timeago :since="album.editedAt" /></span>
+ <span>{{ album.fileCount || 0 }} files</span>
+ </div>
+ <div class="latest is-hidden-mobile">
+ <template v-if="album.fileCount > 0">
+ <div v-for="file of album.files"
+ :key="file.id"
+ class="thumb">
+ <figure class="image is-64x64">
+ <a :href="file.url"
+ target="_blank">
+ <img :src="file.thumbSquare">
+ </a>
+ </figure>
+ </div>
+ <div v-if="album.fileCount > 5"
+ class="thumb more no-background">
+ <router-link :to="`/dashboard/albums/${album.id}`">{{ album.fileCount - 5 }}+ more</router-link>
+ </div>
+ </template>
+ <template v-else>
+ <span class="no-files">Nothing to show here</span>
+ </template>
+ </div>
+
+ <div v-if="album.isDetailsOpen"
+ class="details">
+
+ <b-tabs>
+ <b-tab-item label="Settings"/>
+ <b-tab-item label="Links"/>
+ </b-tabs>
+
+ <template v-if="album.links.length">
+ <h2>Public links for this album:</h2>
+
+ <b-table
+ :data="album.links"
+ :mobile-cards="true">
+ <template slot-scope="props">
+ <b-table-column field="identifier"
+ label="Link"
+ centered>
+ <a :href="props.row.identifier"
+ target="_blank">
+ {{ props.row.identifier }}
+ </a>
+ </b-table-column>
+
+ <b-table-column field="views"
+ label="Views"
+ centered>
+ {{ props.row.views }}
+ </b-table-column>
+
+ <b-table-column field="enableDownload"
+ label="Allow download"
+ centered>
+ <b-switch :value="props.row.enableDownload "/>
+ </b-table-column>
+
+ <b-table-column field="enabled"
+ label="Enabled"
+ centered>
+ <b-switch :value="props.row.enabled "/>
+ </b-table-column>
+
+ <b-table-column field="createdAt"
+ label="Created at"
+ centered>
+ {{ props.row.createdAt }}
+ </b-table-column>
+ </template>
+ </b-table>
+ </template>
+
+ <template v-else>
+ <h2>There are no public links to this album yet.</h2>
+ </template>
+
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </section>
+</template>
+
+<script>
+import Sidebar from '../../components/sidebar/Sidebar.vue';
+import Grid from '../../components/grid/Grid.vue';
+
+export default {
+ components: {
+ Sidebar,
+ Grid
+ },
+ data() {
+ return {
+ albums: [],
+ newAlbumName: null
+ };
+ },
+ metaInfo() {
+ return { title: 'Uploads' };
+ },
+ mounted() {
+ this.getAlbums();
+ this.$ga.page({
+ page: '/dashboard/albums',
+ title: 'Albums',
+ location: window.location.href
+ });
+ },
+ methods: {
+ async createAlbum() {
+ if (!this.newAlbumName || this.newAlbumName === '') return;
+ try {
+ const response = await this.axios.post(`${this.$config.baseURL}/album/new`,
+ { name: this.newAlbumName });
+ this.newAlbumName = null;
+ this.$toast.open(response.data.message);
+ this.getAlbums();
+ return;
+ } catch (error) {
+ this.$onPromiseError(error);
+ }
+ },
+ async getAlbums() {
+ try {
+ const response = await this.axios.get(`${this.$config.baseURL}/albums/mini`);
+ for (const album of response.data.albums) {
+ album.isDetailsOpen = false;
+ album.links = [
+ {
+ identifier: 'fgjh90834',
+ views: 5,
+ enableDownload: true,
+ enabled: true,
+ createdAt: ''
+ },
+ {
+ identifier: 'awf564qwr',
+ views: 10,
+ enableDownload: false,
+ enabled: true,
+ createdAt: ''
+ },
+ {
+ identifier: 'ghjmk39fh',
+ views: 0,
+ enableDownload: true,
+ enabled: false,
+ createdAt: ''
+ }
+ ];
+ }
+ this.albums = response.data.albums;
+ console.log(this.albums);
+ } catch (error) {
+ console.error(error);
+ }
+ }
+ }
+};
+</script>
diff --git a/src/site/views/dashboard/Settings.vue b/src/site/views/dashboard/Settings.vue
new file mode 100644
index 0000000..1a3ab68
--- /dev/null
+++ b/src/site/views/dashboard/Settings.vue
@@ -0,0 +1,82 @@
+<style lang="scss" scoped>
+ @import '../../styles/colors.scss';
+ section { background-color: $backgroundLight1 !important; }
+ section.hero div.hero-body {
+ align-items: baseline;
+ }
+ div.search-container {
+ display: flex;
+ justify-content: center;
+ }
+</style>
+<style lang="scss">
+ @import '../../styles/colors.scss';
+</style>
+
+
+<template>
+ <section class="hero is-fullheight">
+ <div class="hero-body">
+ <div class="container">
+ <div class="columns">
+ <div class="column is-narrow">
+ <Sidebar/>
+ </div>
+ <div class="column">
+ <!--
+ <h1 class="title">Uploads</h1>
+ <h2 class="subtitle">Keep track of all your uploads in here</h2>
+ <hr>
+ -->
+
+ <div class="field">
+ <b-switch v-model="options.removeExif"
+ true-value="Remove exif data when uploading files"
+ false-value="Don't remove exif data when uploading files"
+ type="is-success">
+ {{ options.removeExif }}
+ </b-switch>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+ </section>
+</template>
+
+<script>
+import Sidebar from '../../components/sidebar/Sidebar.vue';
+import Grid from '../../components/grid/Grid.vue';
+// import Waterfall from '../../components/waterfall/Waterfall.vue';
+// import WaterfallItem from '../../components/waterfall/WaterfallItem.vue';
+
+export default {
+ components: {
+ Sidebar,
+ Grid
+ // Waterfall,
+ // WaterfallSlot
+ // WaterfallItem
+ },
+ data() {
+ return {
+ options: {
+ removeExif: false
+ }
+ };
+ },
+ metaInfo() {
+ return { title: 'Settings' };
+ },
+ mounted() {
+ this.$ga.page({
+ page: '/dashboard/settings',
+ title: 'Settings',
+ location: window.location.href
+ });
+ },
+ methods: {
+
+ }
+};
+</script>
diff --git a/src/site/views/dashboard/Uploads.vue b/src/site/views/dashboard/Uploads.vue
new file mode 100644
index 0000000..52c3274
--- /dev/null
+++ b/src/site/views/dashboard/Uploads.vue
@@ -0,0 +1,76 @@
+<style lang="scss" scoped>
+ @import '../../styles/colors.scss';
+ section { background-color: $backgroundLight1 !important; }
+ section.hero div.hero-body {
+ align-items: baseline;
+ }
+</style>
+<style lang="scss">
+ @import '../../styles/colors.scss';
+</style>
+
+
+<template>
+ <section class="hero is-fullheight">
+ <div class="hero-body">
+ <div class="container">
+ <div class="columns">
+ <div class="column is-narrow">
+ <Sidebar/>
+ </div>
+ <div class="column">
+ <!--
+ <h1 class="title">Uploads</h1>
+ <h2 class="subtitle">Keep track of all your uploads in here</h2>
+ <hr>
+ -->
+ <Grid v-if="files.length"
+ :files="files"/>
+ </div>
+ </div>
+ </div>
+ </div>
+ </section>
+</template>
+
+<script>
+import Sidebar from '../../components/sidebar/Sidebar.vue';
+import Grid from '../../components/grid/Grid.vue';
+// import Waterfall from '../../components/waterfall/Waterfall.vue';
+// import WaterfallItem from '../../components/waterfall/WaterfallItem.vue';
+
+export default {
+ components: {
+ Sidebar,
+ Grid
+ // Waterfall,
+ // WaterfallSlot
+ // WaterfallItem
+ },
+ data() {
+ return { files: [] };
+ },
+ metaInfo() {
+ return { title: 'Uploads' };
+ },
+ mounted() {
+ this.getFiles();
+ this.$ga.page({
+ page: '/dashboard',
+ title: 'Dashboard',
+ location: window.location.href
+ });
+ },
+ methods: {
+ async getFiles() {
+ try {
+ const response = await this.axios.get(`${this.$config.baseURL}/files`);
+ this.files = response.data.files;
+ console.log(this.files);
+ } catch (error) {
+ console.error(error);
+ }
+ }
+ }
+};
+</script>