123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574 |
- <template>
- <div
- class="enjoyPlayer"
- v-click-outside="handleListOutside"
- :style="{
- transform: `scale(${scaleStyle})`
- }"
- >
- <div v-if="!isBase" v-show="isShowEnjoyPlayerList" class="enjoyPlayerList">
- <div class="titNameCon">
- <div class="titName">
- <div class="tit">{{ `音频列表 (${elementInfo.enjoyList?.length || 0})` }}</div>
- </div>
- </div>
- <div class="enjoyPlayerListCon">
- <draggable
- :forceFallback="true"
- :handle="'.drag-handle_enjoyPlayer'"
- v-model="elementInfo.enjoyList"
- itemKey="id"
- :animation="200"
- :scroll="true"
- :scrollSensitivity="50"
- @end="handleDragEnd"
- >
- <template #item="{ element }">
- <div class="playerItem" :class="{ active: element.id === elementInfo.sid }" @click="handlePlayMusic(element)">
- <div class="itemLeft">
- {{ element.title }}
- </div>
- <div class="itemRight">
- <template v-if="!isScreening">
- <div class="itemListBtn drag-handle_enjoyPlayer" @click.stop></div>
- <div class="itemCloseBtn" @click.stop="handleEnjoyDel(element.id)"></div>
- </template>
- </div>
- </div>
- </template>
- </draggable>
- </div>
- </div>
- <audio
- v-if="!isBase"
- ref="audioRef"
- :src="elementInfo.src"
- @durationchange="handleDurationchange()"
- @timeupdate="handleTimeupdate()"
- @play="handlePlayed()"
- @pause="handlePaused()"
- @ended="handleEnded()"
- @progress="handleProgress()"
- @error="handleError()"
- ></audio>
- <div class="playerCon">
- <img class="tipImg" src="./imgs/tip.png" alt="" />
- <div class="operateBtn" :class="{ paused: paused }" @click="toggle"></div>
- <div class="operateMidCon">
- <div class="titleCon">
- <div class="title">{{ elementInfo.title }}</div>
- <div class="timesCon">
- {{ `${ptime}/${dtime}` }}
- </div>
- </div>
- <div class="bar-wrap" ref="playBarWrap" @mousedown="handleMousedownPlayBar()" @touchstart="handleMousedownPlayBar()">
- <div class="bar">
- <div class="loaded" :style="{ width: loadedBarWidth }"></div>
- <div class="played" :style="{ width: playedBarWidth }">
- <div class="thumb"></div>
- </div>
- </div>
- </div>
- </div>
- <div class="operateRightBtn">
- <div class="preBtn" @click="handleChangeMusic('pre')"></div>
- <div class="nextBtn" @click="handleChangeMusic('next')"></div>
- <div class="listBtn" @click="hanleEnjoyList"></div>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { computed, ref, onUnmounted } from "vue"
- import message from "@/utils/message"
- import type { PPTEnjoyElement } from "@/types/slides"
- import { useSlidesStore, useMainStore } from "@/store"
- import draggable from "vuedraggable"
- import queryParams from "@/queryParams"
- const slidesStore = useSlidesStore()
- const mainStore = useMainStore()
- const props = withDefaults(
- defineProps<{
- scale?: number
- elementInfo: PPTEnjoyElement
- isScreening?: boolean
- isBase?: boolean
- }>(),
- {
- scale: 1,
- isScreening: false,
- isBase: false
- }
- )
- // 学生端 不是isBase预览下面的缩放比例
- const scaleStyle = queryParams.fromType === "CLASS" && !props.isBase && props.isScreening ? 1.5 : 1
- function handleListOutside() {
- if (!props.isBase && isShowEnjoyPlayerList.value) {
- hanleEnjoyList()
- }
- }
- const isShowEnjoyPlayerList = ref(false)
- function hanleEnjoyList() {
- if (props.isBase) {
- return
- }
- isShowEnjoyPlayerList.value = !isShowEnjoyPlayerList.value
- mainStore.setIsPPTWheelPageState(!isShowEnjoyPlayerList.value)
- }
- // 卸载之后让ppt能滚动
- onUnmounted(() => {
- mainStore.setIsPPTWheelPageState(true)
- })
- function handleDragEnd() {
- slidesStore.updateElement({
- id: props.elementInfo.id,
- props: {
- enjoyList: props.elementInfo.enjoyList
- }
- })
- }
- function handleEnjoyDel(id: string) {
- if (id === props.elementInfo.sid) {
- //删除组件
- if (props.elementInfo.enjoyList.length === 1) {
- slidesStore.deleteElement(props.elementInfo.id)
- } else {
- const index = props.elementInfo.enjoyList.findIndex(item => {
- return item.id === id
- })
- // eslint-disable-next-line vue/no-mutating-props
- props.elementInfo.enjoyList.splice(index, 1)
- const enjoyList = props.elementInfo.enjoyList
- slidesStore.updateElement({
- id: props.elementInfo.id,
- props: {
- sid: enjoyList[0].id,
- title: enjoyList[0].title,
- src: enjoyList[0].src,
- enjoyList: enjoyList
- }
- })
- // 关闭播放按钮
- paused.value = true
- }
- } else {
- const index = props.elementInfo.enjoyList.findIndex(item => {
- return item.id === id
- })
- // eslint-disable-next-line vue/no-mutating-props
- props.elementInfo.enjoyList.splice(index, 1)
- slidesStore.updateElement({
- id: props.elementInfo.id,
- props: {
- enjoyList: props.elementInfo.enjoyList
- }
- })
- }
- }
- function handleChangeMusic(type: "pre" | "next") {
- if (props.elementInfo.enjoyList.length === 1) {
- seek(0)
- } else {
- let index = props.elementInfo.enjoyList.findIndex(item => {
- return item.id === props.elementInfo.sid
- })
- index += type === "next" ? 1 : -1
- if (index > props.elementInfo.enjoyList.length - 1) {
- index = 0
- } else if (index < 0) {
- index = props.elementInfo.enjoyList.length - 1
- }
- const enjoyData = props.elementInfo.enjoyList[index]
- slidesStore.updateElement({
- id: props.elementInfo.id,
- props: {
- sid: enjoyData.id,
- title: enjoyData.title,
- src: enjoyData.src
- }
- })
- }
- }
- function handlePlayMusic(item: Record<string, any>) {
- if (item.id === props.elementInfo.sid) {
- toggle()
- } else {
- slidesStore.updateElement({
- id: props.elementInfo.id,
- props: {
- sid: item.id,
- title: item.title,
- src: item.src
- }
- })
- }
- }
- const secondToTime = (second = 0) => {
- if (second === 0 || isNaN(second)) return "00:00"
- const add0 = (num: number) => (num < 10 ? "0" + num : "" + num)
- const hour = Math.floor(second / 3600)
- const min = Math.floor((second - hour * 3600) / 60)
- const sec = Math.floor(second - hour * 3600 - min * 60)
- return (hour > 0 ? [hour, min, sec] : [min, sec]).map(add0).join(":")
- }
- const getBoundingClientRectViewLeft = (element: HTMLElement) => {
- return element.getBoundingClientRect().left
- }
- const audioRef = ref<HTMLAudioElement>()
- const playBarWrap = ref<HTMLElement>()
- const paused = ref(true)
- const currentTime = ref(0)
- const duration = ref(0)
- const loaded = ref(0)
- const isThumbDown = ref(false)
- const ptime = computed(() => secondToTime(currentTime.value))
- const dtime = computed(() => secondToTime(duration.value))
- const playedBarWidth = computed(() => (currentTime.value / duration.value) * 100 + "%")
- const loadedBarWidth = computed(() => (loaded.value / duration.value) * 100 + "%")
- const seek = (time: number) => {
- if (!audioRef.value) return
- time = Math.max(time, 0)
- time = Math.min(time, duration.value)
- audioRef.value.currentTime = time
- currentTime.value = time
- }
- const play = () => {
- if (!audioRef.value) return
- paused.value = false
- audioRef.value.play()
- }
- const pause = () => {
- if (!audioRef.value) return
- paused.value = true
- audioRef.value.pause()
- }
- const toggle = () => {
- if (paused.value) play()
- else pause()
- }
- const handleDurationchange = () => {
- duration.value = audioRef.value?.duration || 0
- }
- const handleTimeupdate = () => {
- currentTime.value = audioRef.value?.currentTime || 0
- }
- const handlePlayed = () => {
- paused.value = false
- }
- const handlePaused = () => {
- paused.value = true
- }
- const handleEnded = () => {
- return
- if (isThumbDown.value) {
- return
- }
- seek(0)
- play()
- }
- const handleProgress = () => {
- loaded.value = audioRef.value?.buffered.length ? audioRef.value.buffered.end(audioRef.value.buffered.length - 1) : 0
- if (!paused.value) {
- play()
- }
- }
- const handleError = () => message.error("音频加载失败")
- const thumbMove = (e: MouseEvent | TouchEvent) => {
- if (!audioRef.value || !playBarWrap.value) return
- const clientX = "clientX" in e ? e.clientX : e.changedTouches[0].clientX
- let percentage = (clientX - getBoundingClientRectViewLeft(playBarWrap.value)) / playBarWrap.value.clientWidth / props.scale / scaleStyle
- percentage = Math.max(percentage, 0)
- percentage = Math.min(percentage, 1)
- const time = percentage * duration.value
- audioRef.value.currentTime = time
- currentTime.value = time
- }
- const thumbUp = (e: MouseEvent | TouchEvent) => {
- if (!audioRef.value || !playBarWrap.value) return
- const clientX = "clientX" in e ? e.clientX : e.changedTouches[0].clientX
- let percentage = (clientX - getBoundingClientRectViewLeft(playBarWrap.value)) / playBarWrap.value.clientWidth / props.scale / scaleStyle
- percentage = Math.max(percentage, 0)
- percentage = Math.min(percentage, 1)
- const time = percentage * duration.value
- audioRef.value.currentTime = time
- currentTime.value = time
- const _time = setTimeout(() => {
- clearTimeout(_time)
- isThumbDown.value = false
- }, 500)
- document.removeEventListener("mousemove", thumbMove)
- document.removeEventListener("touchmove", thumbMove)
- document.removeEventListener("mouseup", thumbUp)
- document.removeEventListener("touchend", thumbUp)
- }
- const handleMousedownPlayBar = () => {
- isThumbDown.value = true
- document.addEventListener("mousemove", thumbMove)
- document.addEventListener("touchmove", thumbMove)
- document.addEventListener("mouseup", thumbUp)
- document.addEventListener("touchend", thumbUp)
- }
- </script>
- <style lang="scss" scoped>
- .enjoyPlayer {
- transform-origin: center bottom;
- .playerCon {
- background: linear-gradient(180deg, #ffffff 0%, #dfdfdf 100%);
- box-shadow:
- 0px 3px 16px 0px rgba(0, 0, 0, 0.08),
- inset 0px -6px 6px 0px rgba(0, 0, 0, 0.08);
- border-radius: 112px;
- outline: 2px solid rgba(0, 0, 0, 0.03);
- padding: 16px 24px;
- width: 706px;
- display: flex;
- align-items: center;
- position: relative;
- z-index: 1;
- .tipImg {
- position: absolute;
- width: 44px;
- height: 12px;
- right: 36px;
- top: 7px;
- }
- .operateBtn {
- flex-shrink: 0;
- background: url("./imgs/pause.png") no-repeat;
- background-size: 100% 100%;
- width: 70px;
- height: 70px;
- cursor: pointer;
- &.paused {
- background: url("./imgs/play.png") no-repeat;
- background-size: 100% 100%;
- }
- }
- .operateMidCon {
- margin: 0 30px;
- flex-grow: 1;
- .titleCon {
- display: flex;
- align-items: center;
- justify-content: space-between;
- .title {
- width: 200px;
- font-weight: 600;
- font-size: 22px;
- color: #131415;
- line-height: 30px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .timesCon {
- flex-shrink: 0;
- font-weight: 400;
- font-size: 18px;
- color: #999999;
- line-height: 25px;
- }
- }
- .bar-wrap {
- position: relative;
- cursor: pointer;
- width: 100%;
- margin-top: 12px;
- .bar {
- position: relative;
- height: 10px;
- width: 100%;
- background: #dcdcdc;
- box-shadow: inset 0px 2px 3px 0px #a9a9a9;
- border-radius: 5px;
- outline: 2px solid rgba(255, 255, 255, 0.5);
- .loaded {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- background: rgba(255, 255, 255, 0.4);
- height: 10px;
- transition: all 0.5s ease;
- will-change: width;
- border-radius: 6px;
- }
- .played {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- height: 10px;
- will-change: width;
- background: linear-gradient(270deg, #97d1fd 0%, #0d93ff 100%);
- border-radius: 6px;
- .thumb {
- position: absolute;
- top: -12px;
- right: -20px;
- cursor: pointer;
- width: 38px;
- height: 38px;
- background: url("./imgs/td.png") no-repeat;
- background-size: 100% 100%;
- }
- }
- }
- }
- }
- .operateRightBtn {
- flex-shrink: 0;
- display: flex;
- align-items: center;
- .preBtn {
- background: url("./imgs/pre.png") no-repeat;
- background-size: 100% 100%;
- width: 56px;
- height: 56px;
- margin-right: 20px;
- cursor: pointer;
- }
- .nextBtn {
- background: url("./imgs/next.png") no-repeat;
- background-size: 100% 100%;
- width: 56px;
- height: 56px;
- margin-right: 20px;
- cursor: pointer;
- }
- .listBtn {
- background: url("./imgs/list.png") no-repeat;
- background-size: 100% 100%;
- width: 56px;
- height: 56px;
- cursor: pointer;
- }
- }
- }
- .enjoyPlayerList {
- width: 100%;
- height: 524px;
- position: absolute;
- left: 0;
- bottom: 51px;
- box-shadow: 0px 3px 22px 0px rgba(0, 0, 0, 0.12);
- border-radius: 20px 20px 0px 0px;
- background-color: rgb(255, 255, 255);
- padding: 20px 0 61px 10px;
- .titNameCon {
- padding-left: 10px;
- display: flex;
- align-items: center;
- height: 38px;
- .titName {
- font-weight: 600;
- font-size: 22px;
- color: #131415;
- line-height: 30px;
- position: relative;
- &::after {
- position: absolute;
- left: 0;
- bottom: 0;
- content: "";
- width: 100%;
- height: 12px;
- background: linear-gradient(90deg, #77bbff 0%, rgba(163, 231, 255, 0.22) 100%);
- }
- .tit {
- position: relative;
- z-index: 1;
- }
- }
- }
- .enjoyPlayerListCon {
- margin-top: 20px;
- overflow-y: auto;
- height: calc(100% - 58px);
- padding-right: 10px;
- .playerItem {
- padding: 18px 5px 18px 10px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- &.active {
- background: #e6f3ff;
- border-radius: 10px;
- .itemLeft {
- color: #198cfe;
- font-weight: 600;
- }
- }
- .itemLeft {
- font-weight: 400;
- font-size: 20px;
- color: #131415;
- line-height: 28px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .itemRight {
- margin-left: 10px;
- flex-shrink: 0;
- display: flex;
- .itemListBtn {
- width: 34px;
- height: 34px;
- margin-right: 10px;
- background: url("./imgs/td2.png") no-repeat;
- background-size: 24px 24px;
- background-position: center;
- cursor: grab;
- }
- .itemCloseBtn {
- width: 34px;
- height: 34px;
- background: url("./imgs/del.png") no-repeat;
- background-size: 24px 24px;
- background-position: center;
- cursor: pointer;
- }
- }
- }
- }
- }
- }
- </style>
|