_id.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <template>
  2. <div>
  3. <div v-if="loading" class="page">
  4. <p>Loading...</p>
  5. </div>
  6. <section v-else class="page">
  7. <!-- 图片 -->
  8. <img v-if="isImageType" :src="mediaUrl" alt="media" class="media-item" />
  9. <!-- 视频 -->
  10. <video v-if="isVideoType" controls :src="mediaUrl" class="media-item">
  11. Your browser does not support the video tag.
  12. </video>
  13. <!-- 音频 -->
  14. <audio v-if="isAudioType" controls :src="mediaUrl" class="media-item">
  15. Your browser does not support the audio element.
  16. </audio>
  17. <!-- PDF -->
  18. <iframe v-if="isPdfType" :src="mediaUrl" type="application/pdf" width="100%" height="100%" class="media-item">
  19. <p>The PDF cannot be displayed, please <a :href="mediaUrl" target="_blank">click here</a> to download.</p>
  20. </iframe>
  21. <!-- 其他文件类型 -->
  22. <div v-if="isOtherType" class="media-item">
  23. <a :href="mediaUrl" target="_blank">{{mediaUrl ? 'Download File' : 'No File'}}</a>
  24. </div>
  25. </section>
  26. </div>
  27. </template>
  28. <script>
  29. export default {
  30. layout: "blank_layout",
  31. data() {
  32. return {
  33. mediaUrl: "",
  34. fileExtension: "",
  35. loading: true,
  36. type: null,
  37. };
  38. },
  39. computed: {
  40. isImageType() {
  41. return this.type === 1 || this.type === 8 || this.isType(["jpg", "jpeg", "png", "gif", "bmp", "webp"]);
  42. },
  43. isVideoType() {
  44. return this.type === 5 || this.isType(["mp4", "webm", "ogg"]);
  45. },
  46. isAudioType() {
  47. return this.isType(["mp3", "wav", "ogg"]);
  48. },
  49. isPdfType() {
  50. return this.isType(["pdf"]);
  51. },
  52. isOtherType() {
  53. return !this.isImageType && !this.isVideoType && !this.isAudioType && !this.isPdfType;
  54. },
  55. },
  56. created() {
  57. this.$axios
  58. .get(`/uk-api/data/detail/${+this.$route.params.id}`)
  59. .then((response) => {
  60. const { media_url, type } = response.result;
  61. this.mediaUrl = media_url;
  62. this.type = type;
  63. const url = new URL(this.mediaUrl);
  64. this.fileExtension = url.pathname.split(".").pop().toLowerCase();
  65. this.loading = false;
  66. })
  67. .catch((error) => {
  68. console.error("Fail:", error);
  69. this.loading = false;
  70. });
  71. },
  72. methods: {
  73. isType(types) {
  74. return types.includes(this.fileExtension);
  75. },
  76. },
  77. };
  78. </script>
  79. <style lang="scss" scoped>
  80. .page {
  81. display: flex;
  82. justify-content: center;
  83. align-items: center;
  84. height: 100vh;
  85. }
  86. .media-item {
  87. max-width: 100%;
  88. max-height: 100%;
  89. a {
  90. font-size: 20px;
  91. font-weight: 700;
  92. }
  93. }
  94. </style>