123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <template>
- <div class="audio-wrapper">
- <span
- :class="[url ? 'audio-play' : 'audio-play not-url']"
- :style="{
- padding: showSlider ? '4px 16px' : '',
- width: showSlider ? 'auto' : '',
- }"
- @click="playAudio"
- >
- <SvgIcon v-if="audio.paused" :size="audio.paused ? 20 : 14" :icon-class="iconClass" />
- <img
- v-else
- :src="
- themeColor === 'gray'
- ? require('../../../../../assets/voice-play-gray.png')
- : require('../../../../../assets/voice-play-white.png')
- "
- class="voice-play"
- />
- <template v-if="showSlider">
- <span class="audio-time">{{ secondFormatConversion(audio.current_time) }}</span>
- <el-slider
- v-model="play_value"
- class="audio-slider"
- :format-tooltip="formatProcessToolTip"
- @change="changeCurrentTime"
- />
- <span class="audio-time">{{ audio_allTime }}</span>
- </template>
- </span>
- <audio
- :id="fileId"
- :ref="fileId"
- :src="url"
- preload="metadata"
- @loadedmetadata="onLoadedmetadata"
- @timeupdate="onTimeupdate"
- @canplaythrough="oncanplaythrough"
- ></audio>
- </div>
- </template>
- <script>
- import { GetFileURLMap } from '@/api/app';
- import { secondFormatConversion } from '@/utils/transform';
- export default {
- name: 'AudioPlay',
- props: {
- fileId: {
- type: String,
- required: true,
- },
- themeColor: {
- type: String,
- default: '',
- },
- showSlider: {
- type: Boolean,
- default: false,
- },
- },
- data() {
- return {
- secondFormatConversion,
- url: '',
- audio: {
- paused: true,
- playing: false,
- // 音频当前播放时长
- current_time: 0,
- // 音频最大播放时长
- max_time: 0,
- isPlaying: false,
- loading: false,
- },
- play_value: 0,
- audio_allTime: null, // 展示总时间
- };
- },
- computed: {
- iconClass() {
- return this.audio.paused ? 'audio' : 'audio-stop';
- },
- },
- watch: {
- fileId: {
- handler(val) {
- if (!val) return;
- GetFileURLMap({ file_id_list: [val] }).then(({ url_map }) => {
- this.url = url_map[val];
- });
- },
- immediate: true,
- },
- },
- mounted() {
- if (!this.fileId) return;
- this.$refs[this.fileId].addEventListener('ended', () => {
- this.audio.paused = true;
- });
- this.$refs[this.fileId].addEventListener('pause', () => {
- this.audio.paused = true;
- });
- this.$refs[this.fileId].addEventListener('play', () => {
- this.audio.paused = false;
- });
- },
- methods: {
- playAudio() {
- if (!this.url) return;
- const audio = this.$refs[this.fileId];
- let audioArr = document.getElementsByTagName('audio');
- if (audioArr && audioArr.length > 0) {
- for (let i = 0; i < audioArr.length; i++) {
- if (audioArr[i].src === this.url) {
- if (audioArr[i].id !== this.fileId) {
- audioArr[i].pause();
- }
- } else {
- audioArr[i].pause();
- }
- }
- }
- audio.paused ? audio.play() : audio.pause();
- },
- // 进度条格式化toolTip
- formatProcessToolTip(index) {
- let indexs = parseInt((this.audio.max_time / 100) * index);
- return secondFormatConversion(indexs);
- },
- // 点击 拖拽播放音频
- changeCurrentTime(value) {
- let audioId = this.fileId;
- this.$refs[audioId].play();
- this.audio.playing = true;
- this.$refs[audioId].currentTime = parseInt((value / 100) * this.audio.max_time);
- },
- // 音频加载完之后
- onLoadedmetadata(res) {
- this.audio.max_time = parseInt(res.target.duration);
- this.audio_allTime = secondFormatConversion(this.audio.max_time);
- },
- // 当音频当前时间改变后,进度条也要改变
- onTimeupdate(res) {
- let audioId = this.fileId;
- this.audio.current_time = res.target.currentTime;
- this.play_value = (this.audio.current_time / this.audio.max_time) * 100;
- if (this.audio.current_time * 1000 > this.ed) {
- this.$refs[audioId].pause();
- }
- },
- onTimeupdateTime(res, playFlag) {
- if (!res && res !== 0) return;
- let audioId = this.audioId;
- this.$refs[audioId].currentTime = res;
- this.play_value = (res / this.audio.max_time) * 100;
- if (playFlag) {
- let audio = document.getElementsByTagName('audio');
- audio.forEach((item) => {
- if (item.id !== audioId) {
- item.pause();
- }
- });
- this.$refs[audioId].play();
- }
- },
- oncanplaythrough() {
- this.audio.loading = false;
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .audio-wrapper {
- .audio-play {
- display: flex;
- column-gap: 8px;
- align-items: center;
- justify-content: center;
- width: 40px;
- height: 40px;
- color: #fff;
- cursor: pointer;
- background-color: $main-color;
- border-radius: 20px;
- &.not-url {
- color: #a1a1a1;
- cursor: not-allowed;
- }
- .voice-play {
- width: 20px;
- height: 20px;
- }
- .audio-time {
- min-width: 35px;
- font-size: 12px;
- font-weight: 400;
- line-height: 20px;
- }
- .audio-slider {
- width: 82px;
- :deep .el-slider__runway {
- height: 4px;
- background-color: #1853c6;
- }
- :deep .el-slider__button {
- width: 4px;
- height: 4px;
- border: none;
- }
- :deep .el-slider__bar {
- height: 4px;
- background-color: #fff;
- }
- :deep .el-slider__button-wrapper {
- top: -16px;
- }
- }
- }
- }
- </style>
|