PublicAlbum.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <style lang="scss" scoped>
  2. @import '../styles/colors.scss';
  3. section { background-color: $backgroundLight1 !important; }
  4. section.hero div.hero-body.align-top {
  5. align-items: baseline;
  6. flex-grow: 0;
  7. padding-bottom: 0;
  8. }
  9. div.loading-container {
  10. justify-content: center;
  11. display: flex;
  12. }
  13. </style>
  14. <style lang="scss">
  15. @import '../styles/colors.scss';
  16. </style>
  17. <template>
  18. <section class="hero is-fullheight">
  19. <template v-if="files && files.length">
  20. <div class="hero-body align-top">
  21. <div class="container">
  22. <h1 class="title">{{ name }}</h1>
  23. <h2 class="subtitle">Serving {{ files.length }} files</h2>
  24. <a v-if="downloadLink"
  25. :href="downloadLink">Download Album</a>
  26. <hr>
  27. </div>
  28. </div>
  29. <div class="hero-body">
  30. <div class="container">
  31. <Grid v-if="files.length"
  32. :files="files"
  33. :isPublic="true"
  34. :width="200"/>
  35. </div>
  36. </div>
  37. </template>
  38. <template v-else>
  39. <div class="hero-body">
  40. <div class="container loading-container">
  41. <Loading class="square"/>
  42. </div>
  43. </div>
  44. </template>
  45. </section>
  46. </template>
  47. <script>
  48. import Grid from '../components/grid/Grid.vue';
  49. import Loading from '../components/loading/CubeShadow.vue';
  50. import axios from 'axios';
  51. import config from '../config.js';
  52. export default {
  53. components: { Grid, Loading },
  54. async getInitialData({ route, store }) {
  55. try {
  56. const res = await axios.get(`${config.baseURL}/album/${route.params.identifier}`);
  57. const downloadLink = res.data.downloadEnabled ? `${config.baseURL}/album/${route.params.identifier}/zip` : null;
  58. return {
  59. name: res.data.name,
  60. downloadEnabled: res.data.downloadEnabled,
  61. files: res.data.files,
  62. downloadLink
  63. };
  64. } catch (error) {
  65. return {
  66. name: null,
  67. downloadEnabled: false,
  68. files: [],
  69. downloadLink: null,
  70. error: error.response.status
  71. };
  72. }
  73. },
  74. data() {
  75. return {};
  76. },
  77. metaInfo() {
  78. return {
  79. title: `${this.name ? this.name : ''}`,
  80. meta: [
  81. { vmid: 'theme-color', name: 'theme-color', content: '#30a9ed' },
  82. { vmid: 'twitter:card', name: 'twitter:card', content: 'summary' },
  83. { vmid: 'twitter:title', name: 'twitter:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
  84. { vmid: 'twitter:description', name: 'twitter:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' },
  85. { vmid: 'twitter:image', name: 'twitter:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  86. { vmid: 'twitter:image:src', name: 'twitter:image:src', value: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  87. { vmid: 'og:url', property: 'og:url', content: `${config.URL}/a/${this.$route.params.identifier}` },
  88. { vmid: 'og:title', property: 'og:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
  89. { vmid: 'og:description', property: 'og:description', content: 'A modern and self-hosted file upload service that can handle anything you throw at it. Fast uploads, file manager and sharing capabilities all crafted with a beautiful user experience in mind.' },
  90. { vmid: 'og:image', property: 'og:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  91. { vmid: 'og:image:secure_url', property: 'og:image:secure_url', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` }
  92. ]
  93. };
  94. },
  95. mounted() {
  96. if (this.error) {
  97. if (this.error === 404) {
  98. this.$toast.open('Album not found', true, 3000);
  99. setTimeout(() => this.$router.push('/404'), 3000);
  100. return;
  101. } else {
  102. this.$toast.open(`Error code ${this.error}`, true, 3000);
  103. }
  104. }
  105. this.$ga.page({
  106. page: `/a/${this.$route.params.identifier}`,
  107. title: `Album | ${this.name}`,
  108. location: window.location.href
  109. });
  110. }
  111. };
  112. </script>