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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  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. id: self.url,
  264. isBot: true,
  265. name: 'YouTube'
  266. }));
  267. VideoLayout.handleVideoThumbClicked(self.url);
  268. // If we are sending the command and we are starting the player
  269. // we need to continuously send the player current time position
  270. if (APP.conference.isLocalId(self.from)) {
  271. self.intervalId = setInterval(
  272. self.fireSharedVideoEvent.bind(self),
  273. updateInterval);
  274. }
  275. };
  276. window.onPlayerError = function(event) {
  277. logger.error('Error in the player:', event.data);
  278. // store the error player, so we can remove it
  279. self.errorInPlayer = event.target;
  280. };
  281. }
  282. /**
  283. * Process attributes, whether player needs to be paused or seek.
  284. * @param player the player to operate over
  285. * @param attributes the attributes with the player state we want
  286. */
  287. processVideoUpdate(player, attributes) {
  288. if (!attributes) {
  289. return;
  290. }
  291. // eslint-disable-next-line eqeqeq
  292. if (attributes.state == 'playing') {
  293. const isPlayerPaused
  294. = this.player.getPlayerState() === YT.PlayerState.PAUSED;
  295. // If our player is currently paused force the seek.
  296. this.processTime(player, attributes, isPlayerPaused);
  297. // Process mute.
  298. const isAttrMuted = attributes.muted === 'true';
  299. if (player.isMuted() !== isAttrMuted) {
  300. this.smartPlayerMute(isAttrMuted, true);
  301. }
  302. // Process volume
  303. if (!isAttrMuted
  304. && attributes.volume !== undefined
  305. // eslint-disable-next-line eqeqeq
  306. && player.getVolume() != attributes.volume) {
  307. player.setVolume(attributes.volume);
  308. logger.info(`Player change of volume:${attributes.volume}`);
  309. }
  310. if (isPlayerPaused) {
  311. player.playVideo();
  312. }
  313. // eslint-disable-next-line eqeqeq
  314. } else if (attributes.state == 'pause') {
  315. // if its not paused, pause it
  316. player.pauseVideo();
  317. this.processTime(player, attributes, true);
  318. }
  319. }
  320. /**
  321. * Check for time in attributes and if needed seek in current player
  322. * @param player the player to operate over
  323. * @param attributes the attributes with the player state we want
  324. * @param forceSeek whether seek should be forced
  325. */
  326. processTime(player, attributes, forceSeek) {
  327. if (forceSeek) {
  328. logger.info('Player seekTo:', attributes.time);
  329. player.seekTo(attributes.time);
  330. return;
  331. }
  332. // check received time and current time
  333. const currentPosition = player.getCurrentTime();
  334. const diff = Math.abs(attributes.time - currentPosition);
  335. // if we drift more than the interval for checking
  336. // sync, the interval is in milliseconds
  337. if (diff > updateInterval / 1000) {
  338. logger.info('Player seekTo:', attributes.time,
  339. ' current time is:', currentPosition, ' diff:', diff);
  340. player.seekTo(attributes.time);
  341. }
  342. }
  343. /**
  344. * Checks current state of the player and fire an event with the values.
  345. */
  346. fireSharedVideoEvent(sendPauseEvent) {
  347. // ignore update checks if we are not the owner of the video
  348. // or there is still no player defined or we are stopped
  349. // (in a process of stopping)
  350. if (!APP.conference.isLocalId(this.from) || !this.player
  351. || !this.isSharedVideoShown) {
  352. return;
  353. }
  354. const state = this.player.getPlayerState();
  355. // if its paused and haven't been pause - send paused
  356. if (state === YT.PlayerState.PAUSED && sendPauseEvent) {
  357. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  358. this.url, 'pause', this.player.getCurrentTime());
  359. } else if (state === YT.PlayerState.PLAYING) {
  360. // if its playing and it was paused - send update with time
  361. // if its playing and was playing just send update with time
  362. this.emitter.emit(UIEvents.UPDATE_SHARED_VIDEO,
  363. this.url, 'playing',
  364. this.player.getCurrentTime(),
  365. this.player.isMuted(),
  366. this.player.getVolume());
  367. }
  368. }
  369. /**
  370. * Updates video, if it's not playing and needs starting or if it's playing
  371. * and needs to be paused.
  372. * @param id the id of the sender of the command
  373. * @param url the video url
  374. * @param attributes
  375. */
  376. onSharedVideoUpdate(id, url, attributes) {
  377. // if we are sending the event ignore
  378. if (APP.conference.isLocalId(this.from)) {
  379. return;
  380. }
  381. if (!this.isSharedVideoShown) {
  382. this.onSharedVideoStart(id, url, attributes);
  383. return;
  384. }
  385. // eslint-disable-next-line no-negated-condition
  386. if (!this.player) {
  387. this.initialAttributes = attributes;
  388. } else {
  389. this.processVideoUpdate(this.player, attributes);
  390. }
  391. }
  392. /**
  393. * Stop shared video if it is currently showed. If the user started the
  394. * shared video is the one in the id (called when user
  395. * left and we want to remove video if the user sharing it left).
  396. * @param id the id of the sender of the command
  397. */
  398. onSharedVideoStop(id, attributes) {
  399. if (!this.isSharedVideoShown) {
  400. return;
  401. }
  402. if (this.from !== id) {
  403. return;
  404. }
  405. if (!this.player) {
  406. // if there is no error in the player till now,
  407. // store the initial attributes
  408. if (!this.errorInPlayer) {
  409. this.initialAttributes = attributes;
  410. return;
  411. }
  412. }
  413. this.emitter.removeListener(UIEvents.AUDIO_MUTED,
  414. this.localAudioMutedListener);
  415. this.localAudioMutedListener = null;
  416. VideoLayout.removeParticipantContainer(this.url);
  417. VideoLayout.showLargeVideoContainer(SHARED_VIDEO_CONTAINER_TYPE, false)
  418. .then(() => {
  419. VideoLayout.removeLargeVideoContainer(
  420. SHARED_VIDEO_CONTAINER_TYPE);
  421. if (this.player) {
  422. this.player.destroy();
  423. this.player = null;
  424. } else if (this.errorInPlayer) {
  425. // if there is an error in player, remove that instance
  426. this.errorInPlayer.destroy();
  427. this.errorInPlayer = null;
  428. }
  429. this.smartAudioUnmute();
  430. // revert to original behavior (prevents pausing
  431. // for participants not sharing the video to pause it)
  432. $('#sharedVideo').css('pointer-events', 'auto');
  433. this.emitter.emit(
  434. UIEvents.UPDATE_SHARED_VIDEO, null, 'removed');
  435. });
  436. APP.store.dispatch(participantLeft(this.url));
  437. this.url = null;
  438. this.isSharedVideoShown = false;
  439. this.initialAttributes = null;
  440. }
  441. /**
  442. * Receives events for local audio mute/unmute by local user.
  443. * @param muted boolena whether it is muted or not.
  444. * @param {boolean} indicates if this mute was a result of user interaction,
  445. * i.e. pressing the mute button or it was programatically triggerred
  446. */
  447. onLocalAudioMuted(muted, userInteraction) {
  448. if (!this.player) {
  449. return;
  450. }
  451. if (muted) {
  452. this.mutedWithUserInteraction = userInteraction;
  453. } else if (this.player.getPlayerState() !== YT.PlayerState.PAUSED) {
  454. this.smartPlayerMute(true, false);
  455. // Check if we need to update other participants
  456. this.fireSharedVideoEvent();
  457. }
  458. }
  459. /**
  460. * Mutes / unmutes the player.
  461. * @param mute true to mute the shared video, false - otherwise.
  462. * @param {boolean} Indicates if this mute is a consequence of a network
  463. * video update or is called locally.
  464. */
  465. smartPlayerMute(mute, isVideoUpdate) {
  466. if (!this.player.isMuted() && mute) {
  467. this.player.mute();
  468. if (isVideoUpdate) {
  469. this.smartAudioUnmute();
  470. }
  471. } else if (this.player.isMuted() && !mute) {
  472. this.player.unMute();
  473. if (isVideoUpdate) {
  474. this.smartAudioMute();
  475. }
  476. }
  477. }
  478. /**
  479. * Smart mike unmute. If the mike is currently muted and it wasn't muted
  480. * by the user via the mike button and the volume of the shared video is on
  481. * we're unmuting the mike automatically.
  482. */
  483. smartAudioUnmute() {
  484. if (APP.conference.isLocalAudioMuted()
  485. && !this.mutedWithUserInteraction
  486. && !this.isSharedVideoVolumeOn()) {
  487. sendAnalytics(createEvent('audio.unmuted'));
  488. logger.log('Shared video: audio unmuted');
  489. this.emitter.emit(UIEvents.AUDIO_MUTED, false, false);
  490. }
  491. }
  492. /**
  493. * Smart mike mute. If the mike isn't currently muted and the shared video
  494. * volume is on we mute the mike.
  495. */
  496. smartAudioMute() {
  497. if (!APP.conference.isLocalAudioMuted()
  498. && this.isSharedVideoVolumeOn()) {
  499. sendAnalytics(createEvent('audio.muted'));
  500. logger.log('Shared video: audio muted');
  501. this.emitter.emit(UIEvents.AUDIO_MUTED, true, false);
  502. }
  503. }
  504. }
  505. /**
  506. * Container for shared video iframe.
  507. */
  508. class SharedVideoContainer extends LargeContainer {
  509. /**
  510. *
  511. */
  512. constructor({ url, iframe, player }) {
  513. super();
  514. this.$iframe = $(iframe);
  515. this.url = url;
  516. this.player = player;
  517. }
  518. /**
  519. *
  520. */
  521. show() {
  522. const self = this;
  523. return new Promise(resolve => {
  524. this.$iframe.fadeIn(300, () => {
  525. self.bodyBackground = document.body.style.background;
  526. document.body.style.background = 'black';
  527. this.$iframe.css({ opacity: 1 });
  528. APP.store.dispatch(dockToolbox(true));
  529. resolve();
  530. });
  531. });
  532. }
  533. /**
  534. *
  535. */
  536. hide() {
  537. const self = this;
  538. APP.store.dispatch(dockToolbox(false));
  539. return new Promise(resolve => {
  540. this.$iframe.fadeOut(300, () => {
  541. document.body.style.background = self.bodyBackground;
  542. this.$iframe.css({ opacity: 0 });
  543. resolve();
  544. });
  545. });
  546. }
  547. /**
  548. *
  549. */
  550. onHoverIn() {
  551. APP.store.dispatch(showToolbox());
  552. }
  553. /**
  554. *
  555. */
  556. get id() {
  557. return this.url;
  558. }
  559. /**
  560. *
  561. */
  562. resize(containerWidth, containerHeight) {
  563. let height, width;
  564. if (interfaceConfig.VERTICAL_FILMSTRIP) {
  565. height = containerHeight - getToolboxHeight();
  566. width = containerWidth - Filmstrip.getFilmstripWidth();
  567. } else {
  568. height = containerHeight - Filmstrip.getFilmstripHeight();
  569. width = containerWidth;
  570. }
  571. this.$iframe.width(width).height(height);
  572. }
  573. /**
  574. * @return {boolean} do not switch on dominant speaker event if on stage.
  575. */
  576. stayOnStage() {
  577. return false;
  578. }
  579. }
  580. /**
  581. * Checks if given string is youtube url.
  582. * @param {string} url string to check.
  583. * @returns {boolean}
  584. */
  585. function getYoutubeLink(url) {
  586. const p = /^(?:https?:\/\/)?(?:www\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|watch\?v=|watch\?.+&v=))((\w|-){11})(?:\S+)?$/;// eslint-disable-line max-len
  587. return url.match(p) ? RegExp.$1 : false;
  588. }
  589. /**
  590. * Ask user if he want to close shared video.
  591. */
  592. function showStopVideoPropmpt() {
  593. return new Promise((resolve, reject) => {
  594. const submitFunction = function(e, v) {
  595. if (v) {
  596. resolve();
  597. } else {
  598. reject();
  599. }
  600. };
  601. const closeFunction = function() {
  602. dialog = null;
  603. };
  604. dialog = APP.UI.messageHandler.openTwoButtonDialog({
  605. titleKey: 'dialog.removeSharedVideoTitle',
  606. msgKey: 'dialog.removeSharedVideoMsg',
  607. leftButtonKey: 'dialog.Remove',
  608. submitFunction,
  609. closeFunction
  610. });
  611. });
  612. }
  613. /**
  614. * Ask user for shared video url to share with others.
  615. * Dialog validates client input to allow only youtube urls.
  616. */
  617. function requestVideoLink() {
  618. const i18n = APP.translation;
  619. const cancelButton = i18n.generateTranslationHTML('dialog.Cancel');
  620. const shareButton = i18n.generateTranslationHTML('dialog.Share');
  621. const backButton = i18n.generateTranslationHTML('dialog.Back');
  622. const linkError
  623. = i18n.generateTranslationHTML('dialog.shareVideoLinkError');
  624. return new Promise((resolve, reject) => {
  625. dialog = APP.UI.messageHandler.openDialogWithStates({
  626. state0: {
  627. titleKey: 'dialog.shareVideoTitle',
  628. html: `
  629. <input name='sharedVideoUrl' type='text'
  630. class='input-control'
  631. data-i18n='[placeholder]defaultLink'
  632. autofocus>`,
  633. persistent: false,
  634. buttons: [
  635. { title: cancelButton,
  636. value: false },
  637. { title: shareButton,
  638. value: true }
  639. ],
  640. focus: ':input:first',
  641. defaultButton: 1,
  642. submit(e, v, m, f) { // eslint-disable-line max-params
  643. e.preventDefault();
  644. if (!v) {
  645. reject('cancelled');
  646. dialog.close();
  647. return;
  648. }
  649. const sharedVideoUrl = f.sharedVideoUrl;
  650. if (!sharedVideoUrl) {
  651. return;
  652. }
  653. const urlValue
  654. = encodeURI(UIUtil.escapeHtml(sharedVideoUrl));
  655. const yVideoId = getYoutubeLink(urlValue);
  656. if (!yVideoId) {
  657. dialog.goToState('state1');
  658. return false;
  659. }
  660. resolve(yVideoId);
  661. dialog.close();
  662. }
  663. },
  664. state1: {
  665. titleKey: 'dialog.shareVideoTitle',
  666. html: linkError,
  667. persistent: false,
  668. buttons: [
  669. { title: cancelButton,
  670. value: false },
  671. { title: backButton,
  672. value: true }
  673. ],
  674. focus: ':input:first',
  675. defaultButton: 1,
  676. submit(e, v) {
  677. e.preventDefault();
  678. if (v === 0) {
  679. reject();
  680. dialog.close();
  681. } else {
  682. dialog.goToState('state0');
  683. }
  684. }
  685. }
  686. }, {
  687. close() {
  688. dialog = null;
  689. }
  690. }, {
  691. url: defaultSharedVideoLink
  692. });
  693. });
  694. }