main.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. import '../style/style';
  2. import '../style/index';
  3. import $ from 'jquery';
  4. import { setTimeout } from 'timers';
  5. $(document).ready(function() {
  6. const dataList = window.sessionStorage.getItem('dataList');
  7. if(!dataList) {
  8. window.location.href="./login.html";
  9. return false;
  10. }
  11. const boardUrl = JSON.parse(dataList).shareTask.boardUrl;
  12. const desktopUrl = JSON.parse(dataList).shareTask.desktopUrl;
  13. const title = JSON.parse(dataList).shareTask.title;
  14. const shareJoinUserId = JSON.parse(dataList).shareJoinUser.id;
  15. $('.title').html(title)
  16. let bigVideo = new ChimeePlayer({
  17. wrapper: '#bigVideo', // video dom容器
  18. src: boardUrl,
  19. box: 'hls',
  20. isLive: true,
  21. autoplay: true,
  22. muted: false
  23. });
  24. let smallVideo = new ChimeePlayer({
  25. wrapper: '#smallVideo', // video dom容器
  26. src: desktopUrl,
  27. box: 'hls',
  28. isLive: true,
  29. autoplay: true,
  30. muted: true
  31. });
  32. $('#smallVideo').click(function () {
  33. $('#bigVideo').removeClass('big-video').addClass('small-video');
  34. $('#smallVideo').removeClass('small-video').addClass('big-video');
  35. smallVideo.muted = false;
  36. bigVideo.muted = true;
  37. })
  38. $('#bigVideo').click(function () {
  39. $('#bigVideo').removeClass('small-video').addClass('big-video');
  40. $('#smallVideo').removeClass('big-video').addClass('small-video');
  41. smallVideo.muted = true;
  42. bigVideo.muted = false;
  43. })
  44. // 判断用户是否存在回调
  45. function shareJoin () {
  46. setTimeout(function () {
  47. $.get(`${process.env.BASE_API}sharedWhiteBoard/shareJoin/update`, {
  48. shareJoinUserId
  49. }, function (res) {
  50. if(res.code == 200) {
  51. shareJoin();
  52. }
  53. });
  54. },5000)
  55. }
  56. shareJoin();
  57. })