123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- import {
- PropType,
- Transition,
- computed,
- defineComponent,
- reactive,
- ref,
- watch
- } from 'vue';
- import styles from './index.module.less';
- import { NButton, NImage, NProgress, NSlider } from 'naive-ui';
- import { IMusicItem } from '../../type';
- import icon_pre from '../../images/icon_pre.svg';
- import icon_next from '../../images/icon_next.svg';
- import icon_play from '../../images/icon_play.svg';
- import icon_pause from '../../images/icon_pause.svg';
- import { getSecondRPM } from '/src/utils';
- import icon_favitor from '/src/common/images/icon-collect-default.png';
- import icon_favitorActive from '/src/common/images/icon-collect-active.png';
- import TheNoticeBar from '/src/components/TheNoticeBar';
- export default defineComponent({
- name: 'playItem',
- props: {
- item: {
- type: Object as PropType<IMusicItem>,
- default: () => ({})
- },
- show: {
- type: Boolean,
- default: false
- },
- playState: {
- type: String as PropType<'play' | 'pause'>,
- default: 'pause'
- }
- },
- emits: ['change'],
- setup(props, { emit }) {
- let timer = null as any;
- const audioData = reactive({
- isFirst: true,
- duration: 0,
- currentTime: 0
- });
- const audioRef = ref();
- /** 加载成功 */
- const onLoadedmetadata = () => {
- audioData.duration = audioRef.value.duration;
- if (audioData.isFirst) {
- audioData.isFirst = false;
- return;
- }
- if (props.playState === 'play') {
- audioRef.value.play();
- }
- };
- /** 改变时间 */
- const handleChangeTime = (val: number) => {
- audioRef.value.pause();
- audioData.currentTime = val;
- clearTimeout(timer);
- timer = setTimeout(() => {
- audioRef.value.currentTime = val;
- if (props.playState === 'play') {
- audioRef.value.play();
- }
- timer = null;
- }, 300);
- };
- const time = computed(() => {
- return `${getSecondRPM(audioData.currentTime)} / ${getSecondRPM(
- audioData.duration
- )}`;
- });
- watch(
- () => props.playState,
- val => {
- if (val === 'play') {
- audioRef.value.play();
- } else {
- audioRef.value.pause();
- }
- }
- );
- return () => (
- <div class={[styles.container, props.show ? styles.show : styles.hidden]}>
- <div class={[styles.item]}>
- <div class={styles.img}>
- <NImage
- lazy
- objectFit="cover"
- previewDisabled={true}
- src={props.item.titleImg}
- onLoad={e => {
- (e.target as any).dataset.loaded = 'true';
- }}
- />
- <svg class={styles.svgcontainer}>
- <defs>
- <linearGradient id="GradientProgress">
- <stop stop-color="#5BECFF" offset="0%" />
- <stop stop-color="#259CFE" offset="100%" />
- </linearGradient>
- </defs>
- </svg>
- <NProgress
- type="circle"
- class={styles.progress}
- showIndicator={false}
- percentage={(audioData.currentTime / audioData.duration) * 100}
- />
- </div>
- <div class={styles.title}>
- <div class={styles.titleName}>
- <TheNoticeBar text={props.item.musicSheetName} />
- </div>
- <div class={styles.titleDes}>{props.item.composer}</div>
- </div>
- <div class={styles.playBtns}>
- <NButton
- color="rgba(246,246,246,1)"
- circle
- bordered={false}
- onClick={() => emit('change', 'pre')}>
- <img src={icon_pre} />
- </NButton>
- <NButton
- color="rgba(57,130,246,1)"
- class={styles.playBtn}
- circle
- bordered={false}
- onClick={() =>
- emit('change', props.playState === 'pause' ? 'play' : 'pause')
- }>
- <img
- style={{
- display: props.playState === 'pause' ? '' : 'none',
- transform: 'scale(1.5) translateX(1Px)'
- }}
- src={icon_play}
- />
- <img
- style={{
- display: props.playState === 'play' ? '' : 'none',
- transform: 'scale(1.5)'
- }}
- src={icon_pause}
- />
- </NButton>
- <NButton
- color="rgba(246,246,246,1)"
- circle
- bordered={false}
- onClick={() => emit('change', 'next')}>
- <img src={icon_next} />
- </NButton>
- </div>
- <div class={styles.timeWrap}>
- <NSlider
- tooltip={false}
- step={0.01}
- class={styles.timeProgress}
- value={audioData.currentTime}
- max={audioData.duration}
- onUpdate:value={val => handleChangeTime(val)}
- />
- <div class={styles.time}>{time.value}</div>
- <audio
- ref={audioRef}
- src={props.item.audioFileUrl}
- onLoadedmetadata={onLoadedmetadata}
- onTimeupdate={() => {
- if (timer) return;
- audioData.currentTime = audioRef.value.currentTime;
- }}></audio>
- </div>
- </div>
- </div>
- );
- }
- });
|