RecitPlayer.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <script>
  2. import { mapActions, mapState } from 'pinia'
  3. import { ConcernementsStore } from '@stores/concernements'
  4. import { CommonStore } from '@/stores/common'
  5. export default {
  6. props: [],
  7. data() {
  8. return {
  9. plyr_options: {
  10. controls: ['play', 'progress', 'current-time', 'mute', 'volume']
  11. }
  12. }
  13. },
  14. computed: {
  15. ...mapState(ConcernementsStore,['opened_recit', 'recit_plyr_player']),
  16. // ...mapState(CommonStore,['hover_elmt'])
  17. },
  18. mounted() {
  19. console.log('RecitPlayer mounted', this.$refs, this.opened_recit);
  20. this.setRecitPlayer(this.$refs.plyr_player.player);
  21. this.recit_plyr_player.on('ended', ()=>{
  22. this.setOpenedRecit(null);
  23. })
  24. this.recit_plyr_player.volume = 0.6;
  25. if (this.opened_recit) {
  26. this.recit_plyr_player.play();
  27. }
  28. },
  29. watch: {
  30. opened_recit: {
  31. handler (n,o){
  32. console.log('recitPlayer watch opened_recit o, n', o, n);
  33. if(o){
  34. let fadeInterval = setInterval(()=>{
  35. if (this.recit_plyr_player.volume > 0.05) {
  36. console.log(`recitPlayer fading volume:${this.recit_plyr_player.volume}`);
  37. this.recit_plyr_player.volume *= 0.9;
  38. }else{
  39. if(n){
  40. if(n.file.url){
  41. // console.log(`switching source`);
  42. this.recit_plyr_player.source = {
  43. type: 'audio',
  44. sources: [
  45. {
  46. src: n.file.url,
  47. type: n.file.filemine,
  48. }
  49. ]
  50. }
  51. this.recit_plyr_player.volume = 0.6;
  52. this.recit_plyr_player.play();
  53. }
  54. }else{
  55. this.recit_plyr_player.volume = 0.6;
  56. this.recit_plyr_player.stop();
  57. }
  58. clearInterval(fadeInterval);
  59. }
  60. }, 1);
  61. } else {
  62. if (n) {
  63. if(n.file.url){
  64. // console.log(`switching source`);
  65. this.recit_plyr_player.source = {
  66. type: 'audio',
  67. sources: [
  68. {
  69. src: n.file.url,
  70. type: n.file.filemine,
  71. }
  72. ]
  73. }
  74. this.recit_plyr_player.volume = 0.6;
  75. this.recit_plyr_player.play();
  76. }
  77. }
  78. }
  79. },
  80. deep: true
  81. }
  82. },
  83. methods: {
  84. ...mapActions(ConcernementsStore, ['setOpenedRecit', 'setRecitPlayer']),
  85. //
  86. // onLeave(el, done){
  87. // console.log('onLeave', el, done);
  88. // setTimeout(() => {
  89. // console.log('onLeave timeout done', done);
  90. // done();
  91. // }, 5000);
  92. // }
  93. },
  94. }
  95. </script>
  96. <template>
  97. <!-- <Transition
  98. @leave="onLeave"
  99. > -->
  100. <aside
  101. :class="{visible: opened_recit}"
  102. id="recit-player">
  103. <vue-plyr ref="plyr_player" :options="plyr_options">
  104. <audio playsinline>
  105. <source v-if="opened_recit" :src="opened_recit.file.url" :type="opened_recit.file.filemime" />
  106. </audio>
  107. </vue-plyr>
  108. </aside>
  109. <!-- </Transition> -->
  110. </template>