You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SharedVideo.js 25KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816
  1. /* global $, APP, YT, interfaceConfig, onPlayerReady, onPlayerStateChange,
  2. onPlayerError */
  3. const logger = require('jitsi-meet-logger').getLogger(__filename);
  4. import UIUtil from '../util/UIUtil';
  5. import UIEvents from '../../../service/UI/UIEvents';
  6. import VideoLayout from '../videolayout/VideoLayout';
  7. import LargeContainer from '../videolayout/LargeContainer';
  8. import Filmstrip from '../videolayout/Filmstrip';
  9. import {
  10. createSharedVideoEvent as createEvent,
  11. sendAnalytics
  12. } from '../../../react/features/analytics';
  13. import {
  14. participantJoined,
  15. participantLeft
  16. } from '../../../react/features/base/participants';
  17. import {
  18. dockToolbox,
  19. getToolboxHeight,
  20. showToolbox
  21. } from '../../../react/features/toolbox';
  22. import SharedVideoThumb from './SharedVideoThumb';
  23. export const SHARED_VIDEO_CONTAINER_TYPE = 'sharedvideo';
  24. /**
  25. * Example shared video link.
  26. * @type {string}
  27. */
  28. const defaultSharedVideoLink = 'https://www.youtube.com/watch?v=xNXN7CZk8X0';
  29. const updateInterval = 5000; // milliseconds
  30. /**
  31. * The dialog for user input (video link).
  32. * @type {null}
  33. */
  34. let dialog = null;
  35. /**
  36. * Manager of shared video.
  37. */
  38. export default class SharedVideoManager {
  39. /**
  40. *
  41. */
  42. constructor(emitter) {
  43. this.emitter = emitter;
  44. this.isSharedVideoShown = false;
  45. this.isPlayerAPILoaded = false;
  46. this.mutedWithUserInteraction = false;
  47. }
  48. /**
  49. * Indicates if the player volume is currently on. This will return true if
  50. * we have an available player, which is currently in a PLAYING state,
  51. * which isn't muted and has it's volume greater than 0.
  52. *
  53. * @returns {boolean} indicating if the volume of the shared video is
  54. * currently on.
  55. */
  56. isSharedVideoVolumeOn() {
  57. return this.player
  58. && this.player.getPlayerState() === YT.PlayerState.PLAYING
  59. && !this.player.isMuted()
  60. && this.player.getVolume() > 0;
  61. }
  62. /**
  63. * Indicates if the local user is the owner of the shared video.
  64. * @returns {*|boolean}
  65. */
  66. isSharedVideoOwner() {
  67. return this.from && APP.conference.isLocalId(this.from);
  68. }
  69. /**
  70. * Starts shared video by asking user for url, or if its already working
  71. * asks whether the user wants to stop sharing the video.
  72. */
  73. toggleSharedVideo() {
  74. if (dialog) {
  75. return;
  76. }
  77. if (!this.isSharedVideoShown) {
  78. requestVideoLink().then(
  79. url => {
  80. this.emitter.emit(
  81. UIEvents.UPDATE_SHARED_VIDEO, url, 'start');
  82. sendAnalytics(createEvent('started'));
  83. },
  84. err => {
  85. logger.log('SHARED VIDEO CANCELED', err);
  86. sendAnalytics(createEvent('canceled'));
  87. }
  88. );
  89. return;
  90. }
  91. if (APP.conference.isLocalId(this.from)) {
  92. showStopVideoPropmpt().then(
  93. () => {
  94. // make sure we stop updates for playing before we send stop
  95. // if we stop it after receiving self presence, we can end
  96. // up sending stop playing, and on the other end it will not
  97. // stop
  98. if (this.intervalId) {
  99. clearInterval(this.intervalId);
  100. this.intervalId = null;
  101. }
  102. this.emitter.emit(
  103. UIEvents.UPDATE_SHARED_VIDEO, this.url, 'stop');
  104. sendAnalytics(createEvent('stopped'));
  105. },
  106. () => {}); // eslint-disable-line no-empty-function
  107. } else {
  108. APP.UI.messageHandler.showWarning({
  109. descriptionKey: 'dialog.alreadySharedVideoMsg',
  110. titleKey: 'dialog.alreadySharedVideoTitle'
  111. });
  112. sendAnalytics(createEvent('already.shared'));
  113. }
  114. }
  115. /**
  116. * Shows the player component and starts the process that will be sending
  117. * updates, if we are the one shared the video.
  118. *
  119. * @param id the id of the sender of the command
  120. * @param url the video url
  121. * @param attributes
  122. */
  123. onSharedVideoStart(id, url, attributes) {
  124. if (this.isSharedVideoShown) {
  125. return;
  126. }
  127. this.isSharedVideoShown = true;
  128. // the video url
  129. this.url = url;
  130. // the owner of the video
  131. this.from = id;
  132. this.mutedWithUserInteraction = APP.conference.isLocalAudioMuted();
  133. // listen for local audio mute events
  134. this.localAudioMutedListener = this.onLocalAudioMuted.bind(this);
  135. this.emitter.on(UIEvents.AUDIO_MUTED, this.localAudioMutedListener);
  136. // This code loads the IFrame Player API code asynchronously.
  137. const tag = document.createElement('script');
  138. tag.src = 'https://www.youtube.com/iframe_api';
  139. const firstScriptTag = document.getElementsByTagName('script')[0];
  140. firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);
  141. // sometimes we receive errors like player not defined
  142. // or player.pauseVideo is not a function
  143. // we need to operate with player after start playing
  144. // self.player will be defined once it start playing
  145. // and will process any initial attributes if any
  146. this.initialAttributes = attributes;
  147. const self = this;
  148. if (self.isPlayerAPILoaded) {
  149. window.onYouTubeIframeAPIReady();
  150. } else {
  151. window.onYouTubeIframeAPIReady = function() {
  152. self.isPlayerAPILoaded = true;
  153. const showControls
  154. = APP.conference.isLocalId(self.from) ? 1 : 0;
  155. const p = new YT.Player('sharedVideoIFrame', {
  156. height: '100%',
  157. width: '100%',
  158. videoId: self.url,
  159. playerVars: {
  160. 'origin': location.origin,
  161. 'fs': '0',
  162. 'autoplay': 0,
  163. 'controls': showControls,
  164. 'rel': 0
  165. },
  166. events: {
  167. 'onReady': onPlayerReady,
  168. 'onStateChange': onPlayerStateChange,
  169. 'onError': onPlayerError
  170. }
  171. });
  172. // add listener for volume changes
  173. p.addEventListener(
  174. 'onVolumeChange', 'onVolumeChange');
  175. if (APP.conference.isLocalId(self.from)) {
  176. // adds progress listener that will be firing events
  177. // while we are paused and we change the progress of the
  178. // video (seeking forward or backward on the video)
  179. p.addEventListener(
  180. 'onVideoProgress', 'onVideoProgress');
  181. }
  182. };
  183. }
  184. /**
  185. * Indicates that a change in state has occurred for the shared video.
  186. * @param event the event notifying us of the change
  187. */
  188. window.onPlayerStateChange = function(event) {
  189. // eslint-disable-next-line eqeqeq
  190. if (event.data == YT.PlayerState.PLAYING) {
  191. self.player = event.target;
  192. if (self.initialAttributes) {
  193. // If a network update has occurred already now is the
  194. // time to process it.
  195. self.processVideoUpdate(
  196. self.player,
  197. self.initialAttributes);
  198. self.initialAttributes = null;
  199. }
  200. self.smartAudioMute();
  201. // eslint-disable-next-line eqeqeq
  202. } else if (event.data == YT.PlayerState.PAUSED) {
  203. self.smartAudioUnmute();
  204. sendAnalytics(createEvent('paused'));
  205. }
  206. // eslint-disable-next-line eqeqeq
  207. self.fireSharedVideoEvent(event.data == YT.PlayerState.PAUSED);
  208. };
  209. /**
  210. * Track player progress while paused.
  211. * @param event
  212. */
  213. window.onVideoProgress = function(event) {
  214. const state = event.target.getPlayerState();
  215. // eslint-disable-next-line eqeqeq
  216. if (state == YT.PlayerState.PAUSED) {
  217. self.fireSharedVideoEvent(true);
  218. }
  219. };
  220. /**
  221. * Gets notified for volume state changed.
  222. * @param event
  223. */
  224. window.onVolumeChange = function(event) {
  225. self.fireSharedVideoEvent();
  226. // let's check, if player is not muted lets mute locally
  227. if (event.data.volume > 0 && !event.data.muted) {
  228. self.smartAudioMute();
  229. } else if (event.data.volume <= 0 || event.data.muted) {
  230. self.smartAudioUnmute();
  231. }
  232. sendAnalytics(createEvent(
  233. 'volume.changed',
  234. {
  235. volume: event.data.volume,
  236. muted: event.data.muted
  237. }));
  238. };
  239. window.onPlayerReady = function(event) {
  240. const player = event.target;
  241. // do not relay on autoplay as it is not sending all of the events
  242. // in onPlayerStateChange
  243. player.playVideo();
  244. const thumb = new SharedVideoThumb(
  245. self.url, SHARED_VIDEO_CONTAINER_TYPE, VideoLayout);
  246. thumb.setDisplayName('YouTube');
  247. VideoLayout.addRemoteVideoContainer(self.url, thumb);
  248. VideoLayout.resizeThumbnails(true);
  249. const iframe = player.getIframe();
  250. // eslint-disable-next-line no-use-before-define
  251. self.sharedVideo = new SharedVideoContainer(
  252. { url,
  253. iframe,
  254. player });
  255. // prevents pausing participants not sharing the video
  256. // to pause the video
  257. if (!APP.conference.isLocalId(self.from)) {
  258. $('#sharedVideo').css('pointer-events', 'none');
  259. }
  260. VideoLayout.addLargeVideoContainer(
  261. SHARED_VIDEO_CONTAINER_TYPE, self.sharedVideo);
  262. APP.store.dispatch(participantJoined({
  263. conference: APP.conference,
  264. id: self.url,
  265. isBot: true,
  266. name: 'YouTube'
  267. }));
  268. VideoLayout.handleVideoThumbClicked(self.url);
  269. // If we are sending the command and we are starting the player
  270. // we need to continuously send the player current time position
  271. if (APP.conference.isLocalId(self.from)) {
  272. self.intervalId = setInterval(
  273. self.fireSharedVideoEvent.bind(self),
  274. updateInterval);
  275. }
  276. };
  277. window.onPlayerError = function(event) {
  278. logger.error('Error in the player:', event.data);
  279. // store the error player, so we can remove it
  280. self.errorInPlayer = event.target;
  281. };
  282. }
  283. /**
  284. * Process attributes, whether player needs to be paused or seek.
  285. * @param player the player to operate over
  286. * @param attributes the attributes with the player state we want
  287. */
  288. processVideoUpdate(player, attributes) {
  289. if (!attributes) {
  290. return;
  291. }
  292. // eslint-disable-next-line eqeqeq
  293. if (attributes.state == 'playing') {
  294. const isPlayerPaused
  295. = this.player.getPlayerState() === YT.PlayerState.PAUSED;
  296. // If our player is currently paused force the seek.
  297. this.processTime(player, attributes, isPlayerPaused);
  298. // Process mute.
  299. const isAttrMuted = attributes.muted === 'true';
  300. if (player.isMuted() !== isAttrMuted) {
  301. this.smartPlayerMute(isAttrMuted, true);
  302. }
  303. // Process volume
  304. if (!isAttrMuted
  305. && attributes.volume !== undefined
  306. // eslint-disable-next-line eqeqeq
  307. && player.getVolume() != attributes.volume) {
  308. player.setVolume(attributes.volume);
  309. logger.info(`Player change of volume:${attributes.volume}`);
  310. }
  311. if (isPlayerPaused) {
  312. player.playVideo();
  313. }
  314. // eslint-disable-next-line eqeqeq
  315. } else if (attributes.state == 'pause') {
  316. // if its not paused, pause it
  317. player.pauseVideo();
  318. this.processTime(player, attributes, true);
  319. }
  320. }
  321. /**
  322. * Check for time in attributes and if needed seek in current player
  323. * @param player the player to operate over
  324. * @param attributes the attributes with the player state we want
  325. * @param forceSeek whether seek should be forced
  326. */
  327. processTime(player, attributes, forceSeek) {
  328. if (forceSeek) {
  329. logger.info('Player seekTo:', attributes.time);
  330. player.seekTo(attributes.time);
  331. return;
  332. }
  333. // check received time and current time
  334. const currentPosition = player.getCurrentTime();
  335. const diff = Math.abs(attributes.time - currentPosition);
  336. // if we drift more than the interval for checking
  337. // sync, the interval is in milliseconds
  338. if (diff > updateInterval / 1000) {
  339. logger.info('Player seekTo:', attributes.time,
  340. ' current time is:', currentPosition, ' diff:', diff);
  341. player.seekTo(attributes.time);
  342. }
  343. }
  344. /**
  345. * Checks current state of the player and fire an event with the values.
  346. */
  347. fireSharedVideoEvent(sendPauseEvent) {
  348. // ignore update checks if we are not the owner of the video
  349. // or there is still no player defined or we are stopped
  350. // (in a process of stopping)
  351. if (!APP.conference.isLocalId(this.from) || !this.player
  352. || !this.isSharedVideoShown) {
  353. return;
  354. }
  355. const state = this.player.getPlayerState();
  356. // if its paused and haven't been pause - send paused
  357. if (state === YT.PlayerState.PAUSED && sendPauseEvent) {
  358. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  359. this.url, 'pause', this.player.getCurrentTime());
  360. } else if (state === YT.PlayerState.PLAYING) {
  361. // if its playing and it was paused - send update with time
  362. // if its playing and was playing just send update with time
  363. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  364. this.url, 'playing',
  365. this.player.getCurrentTime(),
  366. this.player.isMuted(),
  367. this.player.getVolume());
  368. }
  369. }
  370. /**
  371. * Updates video, if it's not playing and needs starting or if it's playing
  372. * and needs to be paused.
  373. * @param id the id of the sender of the command
  374. * @param url the video url
  375. * @param attributes
  376. */
  377. onSharedVideoUpdate(id, url, attributes) {
  378. // if we are sending the event ignore
  379. if (APP.conference.isLocalId(this.from)) {
  380. return;
  381. }
  382. if (!this.isSharedVideoShown) {
  383. this.onSharedVideoStart(id, url, attributes);
  384. return;
  385. }
  386. // eslint-disable-next-line no-negated-condition
  387. if (!this.player) {
  388. this.initialAttributes = attributes;
  389. } else {
  390. this.processVideoUpdate(this.player, attributes);
  391. }
  392. }
  393. /**
  394. * Stop shared video if it is currently showed. If the user started the
  395. * shared video is the one in the id (called when user
  396. * left and we want to remove video if the user sharing it left).
  397. * @param id the id of the sender of the command
  398. */
  399. onSharedVideoStop(id, attributes) {
  400. if (!this.isSharedVideoShown) {
  401. return;
  402. }
  403. if (this.from !== id) {
  404. return;
  405. }
  406. if (!this.player) {
  407. // if there is no error in the player till now,
  408. // store the initial attributes
  409. if (!this.errorInPlayer) {
  410. this.initialAttributes = attributes;
  411. return;
  412. }
  413. }
  414. this.emitter.removeListener(UIEvents.AUDIO_MUTED,
  415. this.localAudioMutedListener);
  416. this.localAudioMutedListener = null;
  417. VideoLayout.removeParticipantContainer(this.url);
  418. VideoLayout.showLargeVideoContainer(SHARED_VIDEO_CONTAINER_TYPE, false)
  419. .then(() => {
  420. VideoLayout.removeLargeVideoContainer(
  421. SHARED_VIDEO_CONTAINER_TYPE);
  422. if (this.player) {
  423. this.player.destroy();
  424. this.player = null;
  425. } else if (this.errorInPlayer) {
  426. // if there is an error in player, remove that instance
  427. this.errorInPlayer.destroy();
  428. this.errorInPlayer = null;
  429. }
  430. this.smartAudioUnmute();
  431. // revert to original behavior (prevents pausing
  432. // for participants not sharing the video to pause it)
  433. $('#sharedVideo').css('pointer-events', 'auto');
  434. this.emitter.emit(
  435. UIEvents.UPDATE_SHARED_VIDEO, null, 'removed');
  436. });
  437. APP.store.dispatch(participantLeft(this.url));
  438. this.url = null;
  439. this.isSharedVideoShown = false;
  440. this.initialAttributes = null;
  441. }
  442. /**
  443. * Receives events for local audio mute/unmute by local user.
  444. * @param muted boolena whether it is muted or not.
  445. * @param {boolean} indicates if this mute was a result of user interaction,
  446. * i.e. pressing the mute button or it was programatically triggerred
  447. */
  448. onLocalAudioMuted(muted, userInteraction) {
  449. if (!this.player) {
  450. return;
  451. }
  452. if (muted) {
  453. this.mutedWithUserInteraction = userInteraction;
  454. } else if (this.player.getPlayerState() !== YT.PlayerState.PAUSED) {
  455. this.smartPlayerMute(true, false);
  456. // Check if we need to update other participants
  457. this.fireSharedVideoEvent();
  458. }
  459. }
  460. /**
  461. * Mutes / unmutes the player.
  462. * @param mute true to mute the shared video, false - otherwise.
  463. * @param {boolean} Indicates if this mute is a consequence of a network
  464. * video update or is called locally.
  465. */
  466. smartPlayerMute(mute, isVideoUpdate) {
  467. if (!this.player.isMuted() && mute) {
  468. this.player.mute();
  469. if (isVideoUpdate) {
  470. this.smartAudioUnmute();
  471. }
  472. } else if (this.player.isMuted() && !mute) {
  473. this.player.unMute();
  474. if (isVideoUpdate) {
  475. this.smartAudioMute();
  476. }
  477. }
  478. }
  479. /**
  480. * Smart mike unmute. If the mike is currently muted and it wasn't muted
  481. * by the user via the mike button and the volume of the shared video is on
  482. * we're unmuting the mike automatically.
  483. */
  484. smartAudioUnmute() {
  485. if (APP.conference.isLocalAudioMuted()
  486. && !this.mutedWithUserInteraction
  487. && !this.isSharedVideoVolumeOn()) {
  488. sendAnalytics(createEvent('audio.unmuted'));
  489. logger.log('Shared video: audio unmuted');
  490. this.emitter.emit(UIEvents.AUDIO_MUTED, false, false);
  491. }
  492. }
  493. /**
  494. * Smart mike mute. If the mike isn't currently muted and the shared video
  495. * volume is on we mute the mike.
  496. */
  497. smartAudioMute() {
  498. if (!APP.conference.isLocalAudioMuted()
  499. && this.isSharedVideoVolumeOn()) {
  500. sendAnalytics(createEvent('audio.muted'));
  501. logger.log('Shared video: audio muted');
  502. this.emitter.emit(UIEvents.AUDIO_MUTED, true, false);
  503. }
  504. }
  505. }
  506. /**
  507. * Container for shared video iframe.
  508. */
  509. class SharedVideoContainer extends LargeContainer {
  510. /**
  511. *
  512. */
  513. constructor({ url, iframe, player }) {
  514. super();
  515. this.$iframe = $(iframe);
  516. this.url = url;
  517. this.player = player;
  518. }
  519. /**
  520. *
  521. */
  522. show() {
  523. const self = this;
  524. return new Promise(resolve => {
  525. this.$iframe.fadeIn(300, () => {
  526. self.bodyBackground = document.body.style.background;
  527. document.body.style.background = 'black';
  528. this.$iframe.css({ opacity: 1 });
  529. APP.store.dispatch(dockToolbox(true));
  530. resolve();
  531. });
  532. });
  533. }
  534. /**
  535. *
  536. */
  537. hide() {
  538. const self = this;
  539. APP.store.dispatch(dockToolbox(false));
  540. return new Promise(resolve => {
  541. this.$iframe.fadeOut(300, () => {
  542. document.body.style.background = self.bodyBackground;
  543. this.$iframe.css({ opacity: 0 });
  544. resolve();
  545. });
  546. });
  547. }
  548. /**
  549. *
  550. */
  551. onHoverIn() {
  552. APP.store.dispatch(showToolbox());
  553. }
  554. /**
  555. *
  556. */
  557. get id() {
  558. return this.url;
  559. }
  560. /**
  561. *
  562. */
  563. resize(containerWidth, containerHeight) {
  564. let height, width;
  565. if (interfaceConfig.VERTICAL_FILMSTRIP) {
  566. height = containerHeight - getToolboxHeight();
  567. width = containerWidth - Filmstrip.getFilmstripWidth();
  568. } else {
  569. height = containerHeight - Filmstrip.getFilmstripHeight();
  570. width = containerWidth;
  571. }
  572. this.$iframe.width(width).height(height);
  573. }
  574. /**
  575. * @return {boolean} do not switch on dominant speaker event if on stage.
  576. */
  577. stayOnStage() {
  578. return false;
  579. }
  580. }
  581. /**
  582. * Checks if given string is youtube url.
  583. * @param {string} url string to check.
  584. * @returns {boolean}
  585. */
  586. function getYoutubeLink(url) {
  587. const p = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/;// eslint-disable-line max-len
  588. return url.match(p) ? RegExp.$1 : false;
  589. }
  590. /**
  591. * Ask user if he want to close shared video.
  592. */
  593. function showStopVideoPropmpt() {
  594. return new Promise((resolve, reject) => {
  595. const submitFunction = function(e, v) {
  596. if (v) {
  597. resolve();
  598. } else {
  599. reject();
  600. }
  601. };
  602. const closeFunction = function() {
  603. dialog = null;
  604. };
  605. dialog = APP.UI.messageHandler.openTwoButtonDialog({
  606. titleKey: 'dialog.removeSharedVideoTitle',
  607. msgKey: 'dialog.removeSharedVideoMsg',
  608. leftButtonKey: 'dialog.Remove',
  609. submitFunction,
  610. closeFunction
  611. });
  612. });
  613. }
  614. /**
  615. * Ask user for shared video url to share with others.
  616. * Dialog validates client input to allow only youtube urls.
  617. */
  618. function requestVideoLink() {
  619. const i18n = APP.translation;
  620. const cancelButton = i18n.generateTranslationHTML('dialog.Cancel');
  621. const shareButton = i18n.generateTranslationHTML('dialog.Share');
  622. const backButton = i18n.generateTranslationHTML('dialog.Back');
  623. const linkError
  624. = i18n.generateTranslationHTML('dialog.shareVideoLinkError');
  625. return new Promise((resolve, reject) => {
  626. dialog = APP.UI.messageHandler.openDialogWithStates({
  627. state0: {
  628. titleKey: 'dialog.shareVideoTitle',
  629. html: `
  630. <input name='sharedVideoUrl' type='text'
  631. class='input-control'
  632. data-i18n='[placeholder]defaultLink'
  633. autofocus>`,
  634. persistent: false,
  635. buttons: [
  636. { title: cancelButton,
  637. value: false },
  638. { title: shareButton,
  639. value: true }
  640. ],
  641. focus: ':input:first',
  642. defaultButton: 1,
  643. submit(e, v, m, f) { // eslint-disable-line max-params
  644. e.preventDefault();
  645. if (!v) {
  646. reject('cancelled');
  647. dialog.close();
  648. return;
  649. }
  650. const sharedVideoUrl = f.sharedVideoUrl;
  651. if (!sharedVideoUrl) {
  652. return;
  653. }
  654. const urlValue
  655. = encodeURI(UIUtil.escapeHtml(sharedVideoUrl));
  656. const yVideoId = getYoutubeLink(urlValue);
  657. if (!yVideoId) {
  658. dialog.goToState('state1');
  659. return false;
  660. }
  661. resolve(yVideoId);
  662. dialog.close();
  663. }
  664. },
  665. state1: {
  666. titleKey: 'dialog.shareVideoTitle',
  667. html: linkError,
  668. persistent: false,
  669. buttons: [
  670. { title: cancelButton,
  671. value: false },
  672. { title: backButton,
  673. value: true }
  674. ],
  675. focus: ':input:first',
  676. defaultButton: 1,
  677. submit(e, v) {
  678. e.preventDefault();
  679. if (v === 0) {
  680. reject();
  681. dialog.close();
  682. } else {
  683. dialog.goToState('state0');
  684. }
  685. }
  686. }
  687. }, {
  688. close() {
  689. dialog = null;
  690. }
  691. }, {
  692. url: defaultSharedVideoLink
  693. });
  694. });
  695. }