_identifier.vue 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <style lang="scss" scoped>
  2. @import '~/assets/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 '~/assets/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 ? files.length : 0 }} 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 && 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. export default {
  52. components: { Grid, Loading },
  53. async asyncData({ app, params, error }) {
  54. try {
  55. const res = await axios.get(`${app.store.state.config.baseURL}/album/${params.identifier}`);
  56. const downloadLink = res.data.downloadEnabled ? `${app.store.state.config.baseURL}/album/${params.identifier}/zip` : null;
  57. return {
  58. name: res.data.name,
  59. downloadEnabled: res.data.downloadEnabled,
  60. files: res.data.files,
  61. downloadLink
  62. };
  63. } catch (err) {
  64. /*
  65. return {
  66. name: null,
  67. downloadEnabled: false,
  68. files: [],
  69. downloadLink: null,
  70. error: error.response.status
  71. };
  72. */
  73. error({ statusCode: 404, message: 'Post not found' });
  74. }
  75. },
  76. data() {
  77. return {};
  78. },
  79. computed: {
  80. config() {
  81. return this.$store.state.config;
  82. }
  83. },
  84. metaInfo() {
  85. if (this.files) {
  86. return {
  87. title: `${this.name ? this.name : ''}`,
  88. meta: [
  89. { vmid: 'theme-color', name: 'theme-color', content: '#30a9ed' },
  90. { vmid: 'twitter:card', name: 'twitter:card', content: 'summary' },
  91. { vmid: 'twitter:title', name: 'twitter:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
  92. { 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.' },
  93. { vmid: 'twitter:image', name: 'twitter:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  94. { vmid: 'twitter:image:src', name: 'twitter:image:src', value: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  95. { vmid: 'og:url', property: 'og:url', content: `${config.URL}/a/${this.$route.params.identifier}` },
  96. { vmid: 'og:title', property: 'og:title', content: `Album: ${this.name} | Files: ${this.files.length}` },
  97. { 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.' },
  98. { vmid: 'og:image', property: 'og:image', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` },
  99. { vmid: 'og:image:secure_url', property: 'og:image:secure_url', content: `${this.files.length > 0 ? this.files[0].thumbSquare : '/public/images/share.jpg'}` }
  100. ]
  101. };
  102. }
  103. return {
  104. title: `${this.name ? this.name : ''}`,
  105. meta: [
  106. { vmid: 'theme-color', name: 'theme-color', content: '#30a9ed' },
  107. { vmid: 'twitter:card', name: 'twitter:card', content: 'summary' },
  108. { vmid: 'twitter:title', name: 'twitter:title', content: 'lolisafe' },
  109. { 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.' },
  110. { vmid: 'og:url', property: 'og:url', content: `${config.URL}/a/${this.$route.params.identifier}` },
  111. { vmid: 'og:title', property: 'og:title', content: 'lolisafe' },
  112. { 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.' }
  113. ]
  114. };
  115. },
  116. mounted() {
  117. /*
  118. if (this.error) {
  119. if (this.error === 404) {
  120. this.$toast.open('Album not found', true, 3000);
  121. setTimeout(() => this.$router.push('/404'), 3000);
  122. return;
  123. }
  124. this.$toast.open(`Error code ${this.error}`, true, 3000);
  125. }
  126. */
  127. }
  128. };
  129. </script>