Examples of preview functions for various types of files in vue3

Examples of preview functions for various types of files in vue3

Preface

It's not a pleasant feeling to cross the river by feeling the stones. I heard that the bosses of big companies are busy upgrading their projects with vue3, so I'd like to join in the fun. Working in a small factory, I am still unwilling to struggle. I'm working on a new project and I'm using vue3 directly. I'm so excited that some people may not care about the consequences, but I've basically finished it after stumbling around. Let's record it.

Let’s talk about a function in the development process today! Anyway, it takes a lot of time, so let's talk about the functional requirements first: After uploading a file, you can click to preview it in the file list, including file media types including pictures, word excel and other document files, pdf, video, audio preview for PC side

1. Preview of office document types

The first thing I saw was the preview of document files such as word and excel. I started to search for some methods on the Internet to solve this problem. After all, I have little experience. Some people recommended downloading the preview directly with the a tag, which obviously did not meet our expectations. Some people recommended using sheetjs for excel, but we also need to find another way for word. In the end, I decided to use Microsoft's online preview and use iframe as the carrier.

<iframe frameborder="0" 
:src="'https://view.officeapps.live.com/op/view.aspx?src=' + fileUrl" width='100%'>
</iframe>

What needs to be considered is that in the dialog pop-up box of element-plus at that time, the iframe could not expand the parent element well, so some code was filled in. And the loading process is slow, so due to time constraints, I did not consider trying other methods.

2. Preview of pdf type

For this kind of PDF preview, it seems easy to solve. Use the npm install pdfjs-dist that I used before, and it's done. I never expected that my current version does not support vue3, so of course it will report an error when I run it. I decisively searched Baidu, and Baidu told me that this pdfjs-dist vue3 does not support it. Let's try another method. I'm ***, you said I want to find a solution, the protagonist is here. After downloading, put the build and web folders under our public files for reference. Pay attention to whether your address is correct. I put it in an embed

  data.pdfUrl = './pdf/web/viewer.html?file='+type; // Online preview
 <embed :src="pdfUrl" style="width: 100%; "/>

3. Image Type

I think we don't need to say much about this type, just go to the code and process the URL

<div v-if="showImg == true" class="dialog-body-content-base-style">
    <el-image
        class="image-preview"
        :src="imgUrl"
        />
</div>

4. Video Type

For the video type, I originally wanted to use the video element directly, but I am an aspiring programmer who pursues my own ideals. I started to use vue-video-palyer for video preview, but it didn’t go as I wished. An error was reported in vue3. To put it bluntly, baby, it doesn’t support vue3? It's okay, I'm used to it. I recommend everyone to use vue-vam-video

npm install vue-vam-video -s
import VamVideo from "vue-vam-video";
components:
    VamVideo,
},
setup(props,context) {
    const data = reactive({
        videoOption: {
            properties:
                poster: '',
                src:"",
                preload: "auto",
                // loop: "loop",
                // autoplay: "autoplay",
                // muted:true
            },
            videoStyle: {
                width: "100%",
                // height: "600px",
            },
            controlsConfig: {
                fullScreenTit: "Full screen",
                EscfullScreenTit: "Exit full screen",
                speedTit: "speed",
                yinliangTit: "Volume",
                jingyinTit: "Silent",
                playTit: "Play",
                pauseTit: "Pause",
                fullScreen:true,
                speed:true,
                listen:true
            }
        },
    })
}     
<vam-video
    :properties="videoOption.properties"
    :videoStyle="videoOption.videoStyle"
    :controlsConfig="videoOption.controlsConfig"
    @play="playVideo"
    @canplay="canplayVideo"
    @pause="pauseVideo"
></vam-video>

5. Audio Type

After suffering the above loss, I finally decided to use the audio tag and just use it directly.

<audio :src="musicUrl" controls></audio>

In summary, I suggest that everyone consider it carefully. The bosses in large factories have their own component libraries and don’t worry at all, but we in small factories should be cautious. I hope that Vue’s component libraries and function libraries will be more complete. After all, it is convenient to stand on the shoulders of giants. It’s okay to study the source code. . . . . .

Summarize

This is the end of this article about the preview function of various types of files in vue3. For more relevant vue3 file preview content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to implement PDF file preview in Vue
  • Vue implements online preview of PDF files and downloading (pdf.js)
  • Vue excel upload preview and table content download to excel file
  • Vue implements online preview of PDF files (using pdf.js/iframe/embed)
  • Vue-pdf implements online preview of PDF files
  • How to preview pdf file using pdfjs in vue
  • vue-pdf realizes online file preview

<<:  Detailed explanation of how to build a CDN server with Nginx (picture and text)

>>:  Implementation of HTTP and HTTPS services with Nginx reverse proxy for multiple domain names

Recommend

How to use HTML+CSS to create TG-vision homepage

This time we use HTML+CSS layout to make a prelim...

MySQL InnoDB MRR Optimization Guide

Preface MRR is the abbreviation of Multi-Range Re...

Weather icon animation effect implemented by CSS3

Achieve results Implementation Code html <div ...

What is web design

<br />Original article: http://www.alistapar...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

Detailed explanation of CSS3 text shadow text-shadow property

Text shadow text-shadow property effects: 1. Lowe...

Steps to split and compress CSS with webpack and import it with link

Let's take a look at the code file structure ...

Detailed explanation of mysql replication tool based on python

Table of contents 1. Introduction Second practice...

How to prevent users from copying web page content using pure CSS

Preface When I was typing my own personal blog, I...

Vue realizes price calendar effect

This article example shares the specific code of ...

How to set the memory size of Docker tomcat

When installing Tomcat in Docker, Tomcat may over...

A brief discussion on the characteristics of CSS float

This article introduces the characteristics of CS...

The difference between absolute path and relative path in web page creation

1. Absolute path First of all, on the local compu...

Analyze Mysql transactions and data consistency processing issues

This article analyzes the consistency processing ...