zarebin-player-library 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +73 -0
- package/dist/index.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/index.d.ts +1 -0
- package/dist/src/videoPlayerLibrary/shared/configs/configs.d.ts +33 -0
- package/dist/src/videoPlayerLibrary/shared/configs/getDetailsConfigs.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/conditions/conditions.d.ts +1 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/conditions/paramsConditions.d.ts +21 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/constants.d.ts +10 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/environment.d.ts +14 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/helpers.d.ts +87 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/index.d.ts +13 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useActiveInActive.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useBackButton.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useBeforeUnload.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useContinuousPlaybackInterval.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useFullScreen.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetAggregat.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetData.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetDetails.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetMarkers.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetPlayList.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetProfile.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useGetRecommendationList.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useUserSettings.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useVideoSettings.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useGetData/useWebListConfig.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useHandleKeyPress.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useHandleParams.d.ts +5 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useHandleScroll.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useHandleXToken.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useHideSubtitle.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useIntersect.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useKeyPress.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useLongPress.d.ts +12 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useOnClickOutside.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/usePingPong.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/hooks/useRouteChange.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/index.d.ts +6 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/langs/ar.d.ts +162 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/langs/fa.d.ts +162 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/langs/index.d.ts +1 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/langs/translate.d.ts +162 -0
- package/dist/src/videoPlayerLibrary/shared/helpers/regex.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/images/importImages.d.ts +79 -0
- package/dist/src/videoPlayerLibrary/shared/interfaces/enums.d.ts +332 -0
- package/dist/src/videoPlayerLibrary/shared/interfaces/index.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/interfaces/interfaces.d.ts +1130 -0
- package/dist/src/videoPlayerLibrary/shared/logs/fluentdLogger.d.ts +1 -0
- package/dist/src/videoPlayerLibrary/shared/logs/index.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/logs/logs.d.ts +289 -0
- package/dist/src/videoPlayerLibrary/shared/providers/theme-provider.d.ts +13 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/chat.actions.d.ts +16 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/comment.action.d.ts +11 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/controller.actions.d.ts +12 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/index.d.ts +8 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/playerCore.actions.d.ts +129 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/progressbar.actions.d.ts +15 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/quiz.actions.d.ts +26 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/tags.actions.d.ts +16 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/user.actions.d.ts +22 -0
- package/dist/src/videoPlayerLibrary/shared/redux/actions/videoData.actions.d.ts +50 -0
- package/dist/src/videoPlayerLibrary/shared/redux/hooks.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/redux/index.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/chatSlice.d.ts +249 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/commentsSlice.d.ts +429 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/controllerSlice.d.ts +737 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/popoversSlice.d.ts +560 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/quizSlice.d.ts +373 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/tagsSlice.d.ts +57 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/userSlice.d.ts +681 -0
- package/dist/src/videoPlayerLibrary/shared/redux/slices/videoDataSlice.d.ts +7 -0
- package/dist/src/videoPlayerLibrary/shared/redux/store.d.ts +28 -0
- package/dist/src/videoPlayerLibrary/shared/services/apiCaller.d.ts +15 -0
- package/dist/src/videoPlayerLibrary/shared/services/baseUrl.d.ts +23 -0
- package/dist/src/videoPlayerLibrary/shared/services/index.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/services/services.d.ts +93 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/MessageIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/ProfileIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowBottomIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowDownIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowLeft.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowLeft1.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowLeftTrailer.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowRightTrailer.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowTopTrailer.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/arrowUpIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/bookmarkIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/cameraIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/chatIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/chevronLeft.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/chevronRight.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/clockIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/closeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/copy.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/downloadIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/emptyProfile.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/emptyStateBookmarkIcon.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/feedbackIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/heartIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/homeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/index.d.ts +39 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/infoIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/judgeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/multiLiveIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/mute.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/notActiveVideoIcon.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/onlineViewerIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/personalMarkerIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/pinIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/playlistIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/plusEmojiIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/printIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/rotateLeftIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/rotateLeftIcon2.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/share1Icon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/shareIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/smsStarIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/starIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/starSlashIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/tagsEmptyState.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/unMute.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/icon-components/videoListHeader.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/index.d.ts +7 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/controllbar/controllbar.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/controllbar/controllbarTooltip.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/controllbar/portraitControlbar.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/footer.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/progressbar/markers/markers.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/footer/progressbar/progressbar.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/header/header.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/header/portraitHeader.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/index.d.ts +9 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/mainComponent/main/main.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/customComponents/circleProgressBar/circleProgressBar.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/customComponents/hourglassSpinner/hourglassSpinner.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/customComponents/popover/popover.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/customComponents/quizCountDown.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/hooks/useEliminationQuiz.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/hooks/usePointsQuiz.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/login/loginPopover.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/login/mobileNumber.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/login/otp.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/popoverHeader.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/quiz.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/quizPlayer.d.ts +5 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/quizPlayerLibrary.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/quizPopover.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/steps/step0.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/steps/step1.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/steps/step2.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/steps/step3.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/steps/step4.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/usePoints.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/quiz/userStatus.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/errorBoundary.d.ts +14 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/players/errorBoundaryFunctions.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/players/liveAndVodPlayer/player.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/players/liveAndVodPlayer/videoArea.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/players/liveAndVodPlayer/videoPlayer.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/players/staticPlayer/player.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/videoPlayer.d.ts +5 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/modules/video-player-library/videoPlayerLibrary.d.ts +9 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/InstagramEmoji.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/explode/ExplodeEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/explode/animatedEmoji/AnimatedEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/spray/SprayEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/spray/animatedEmoji/AnimatedEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/uni/UniEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/InstagramEmoji/uni/animatedEmoji/AnimatedEmoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/Player360/Player360.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/ageClassification/ageClassification.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/autoPlay/autoPlay.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/autoPlay/autoPlayListIcon.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/backwardForward/backwardForward.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/bookmark/bookmark.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/bookmark/bookmarkCard.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/bookmark/bookmarksPopover.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/button/button.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/addChatComment.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/chat.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/chatCard.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/chatObserver.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/chatRules.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/defaultMessages.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/chat/pinMessage.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/checkbox/checkbox.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/codeInput/codeInput.d.ts +14 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/addComment.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/commentContentPopover.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/commentSettings/commentSettingsInDesktop.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/commentSettings/commentSettingsPopover.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/comments.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/commentsPopover.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/defaultMessages.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/likeComment.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/singleComment.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/singleReply.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/comments/touchScreenCommentObserver.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/complexDesktop/complexDesktop.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/complexPortrait/complexPortrait.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/confirmationModal/confirmationModal.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/copyText/copyText.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/download/download.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/elapsedTime/elapsedTime.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/emoji/emoji.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/emojiPicker/emojiPicker.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/feedback/feedback.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/feedback/stars.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/fullScreen/fullScreen.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/fullScreen/fullScreenIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/fullrate/fullrate.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/gif/gif.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/index.d.ts +105 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/likeDisLike/dislikeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/likeDisLike/likeDisLike.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/likeDisLike/likeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/liveStatus/liveStatus.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/liveStatus/onlineViewer/liveIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/liveStatus/onlineViewer/onlineViewer.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/loader/loader.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/lockUnlock/lock.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/lockUnlock/lockIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/lockUnlock/unlock.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/lockUnlock/unlockIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/markersList/markersList.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/markersList/markersListIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/movie/movieDetail/movieDetail.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/multiAudio/multiAudio.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/multiLive/multiLive.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/multiLive/multiLiveDialog.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/multiLive/multiLiveIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/notActive/notActive.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/paramsErrorPopover/paramsErrorPopover.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/personalMarkers/personalMarkers.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/pictureInPicture/pictureInPicture.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/playList.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/playListCard.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/playlistTab.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/playlistVideoCards.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/singlePlayList.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playList/touchScreenPlaylistObserver.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playNext/playNextVideo.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playNext/playNextVideoIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playPause/playPause.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playPauseControllbar/playPauseControllbar.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playPauseControllbar/playPauseIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/playerCard/playerCard.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/poll/poll.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/poll/pollOption.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/poll/portraitPoll/portraitPoll.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/poll/portraitPoll/portraitPollOption.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/popover/popover.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/popover/popovers.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/qualityLevels/qualityLevels.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/recommendationList/recommendationList.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/settings/settings.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/settings/settingsIcon.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/share/shareDialog.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/skeleton/skeleton.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/snapshot/snapshot.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/soundVolume/soundVolume.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/soundVolume/soundVolumeIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/speed/speed.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/speed/speedIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/spinners/circleSpinner.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/displaySubtitle.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitleIcon.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitleSettingMenu.d.ts +6 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitles.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitlesBackgroundColorsMenu.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitlesMenu.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/subtitles/subtitlesTextColorsMenu.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tabNavigator/TabNavigator.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tags/selectedTagsVideoList.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tags/tags.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tags/tagsFilter.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tags/tagsPopover.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tags/viewersTagsList.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/title/title.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/toggle/autoPlayToggle.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/toggle/toggle.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/tooltip/tooltip.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/touchVolumeBrightness/touchVolumeBrightness.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/trailer/trailer.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/trailer/trailerPopover/trailerPopover.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/videoAreaShadow.tsx/videoAreaShadow.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-components/viewersChart/viewersChart.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-core/playerCore.d.ts +4 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-core/players/multiLiveVideoTag.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-core/players/nonStaticVideoTag.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-core/players/staticVideoTag.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/components/player-core/players/videoTag.d.ts +3 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/index.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/playerComponents/continuousPlayback/ContinuousPlayback.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/playerComponents/continuousPlayback/continuousePlayback.d.ts +10 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/playerComponents/continuousPlayback/hooks/useContinuousePlaybackTimer.d.ts +2 -0
- package/dist/src/videoPlayerLibrary/shared/ui/src/playerComponents/index.d.ts +1 -0
- package/dist/src/videoPlayerLibrary/videoPlayerLibrary.d.ts +4 -0
- package/dist/zarebin-player-library.cjs +1588 -0
- package/dist/zarebin-player-library.css +2 -0
- package/dist/zarebin-player-library.js +53666 -0
- package/package.json +90 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const sendFluentLog: (data: any) => void;
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
import { ContentTypesString } from '../interfaces/enums';
|
|
2
|
+
import { IDetails, IParams } from '../interfaces/interfaces';
|
|
3
|
+
export declare const feedbackLog: (starNum: Number, reasons: string[], customText: string | undefined) => {
|
|
4
|
+
category: string;
|
|
5
|
+
id: number;
|
|
6
|
+
stars: Number;
|
|
7
|
+
text: string[];
|
|
8
|
+
customText: string | undefined;
|
|
9
|
+
type: string | undefined;
|
|
10
|
+
src: string | undefined;
|
|
11
|
+
provider: string | undefined;
|
|
12
|
+
};
|
|
13
|
+
export declare const eventMarkerClickLog: (markerId: Number, markerTime: Number, markerTitle: String, markerDescription: String, markerSticker: String) => {
|
|
14
|
+
category: string;
|
|
15
|
+
video_id: number | undefined;
|
|
16
|
+
markerId: Number;
|
|
17
|
+
markerTime: Number;
|
|
18
|
+
markerTitle: String;
|
|
19
|
+
markerDescription: String;
|
|
20
|
+
markerSticker: String;
|
|
21
|
+
type: string | undefined;
|
|
22
|
+
src: string | undefined;
|
|
23
|
+
provider: string | undefined;
|
|
24
|
+
};
|
|
25
|
+
export declare const speedChangeLog: (selectedSpeed: Number) => {
|
|
26
|
+
category: string;
|
|
27
|
+
previousSelectedSpeed: number;
|
|
28
|
+
selectedSpeed: Number;
|
|
29
|
+
id: number;
|
|
30
|
+
type: string | undefined;
|
|
31
|
+
src: string | undefined;
|
|
32
|
+
provider: string | undefined;
|
|
33
|
+
};
|
|
34
|
+
export declare const qualityChangeRequestLog: (selectedQuality: String) => {
|
|
35
|
+
category: string;
|
|
36
|
+
currentPlayingQuality: string;
|
|
37
|
+
previousSelectedQuality: string;
|
|
38
|
+
selectedQuality: String;
|
|
39
|
+
id: number;
|
|
40
|
+
type: string | undefined;
|
|
41
|
+
src: string | undefined;
|
|
42
|
+
provider: string | undefined;
|
|
43
|
+
};
|
|
44
|
+
export declare const catchUpLoadingLog: (duration: number) => {
|
|
45
|
+
category: string;
|
|
46
|
+
previousVideoTime: number;
|
|
47
|
+
currentVideoTime: number;
|
|
48
|
+
duration: number;
|
|
49
|
+
quality: string;
|
|
50
|
+
isAutoQuality: any;
|
|
51
|
+
id: number;
|
|
52
|
+
type: string | undefined;
|
|
53
|
+
src: string | undefined;
|
|
54
|
+
provider: string | undefined;
|
|
55
|
+
};
|
|
56
|
+
export declare const shareDialogLog: (videoTime: number, isJump: boolean, jumpTime: number | undefined, eventMarkerId?: number) => {
|
|
57
|
+
category: string;
|
|
58
|
+
id: number;
|
|
59
|
+
type: string | undefined;
|
|
60
|
+
src: string | undefined;
|
|
61
|
+
videoTime: number;
|
|
62
|
+
eventMarkerId: number | undefined;
|
|
63
|
+
provider: string | undefined;
|
|
64
|
+
jump: string;
|
|
65
|
+
jumpTime: number | undefined;
|
|
66
|
+
};
|
|
67
|
+
export declare const shareCopyLog: (videoTime: number, isJump: boolean, jumpTime: number | undefined, EventMarker?: number) => {
|
|
68
|
+
category: string;
|
|
69
|
+
id: number;
|
|
70
|
+
type: string | undefined;
|
|
71
|
+
src: string | undefined;
|
|
72
|
+
videoTime: number;
|
|
73
|
+
eventMarkerId: number | undefined;
|
|
74
|
+
jump: string;
|
|
75
|
+
jumpTime: number | undefined;
|
|
76
|
+
provider: string | undefined;
|
|
77
|
+
};
|
|
78
|
+
export declare const alternativeLiveLog: (alternativeLiveUserId: number) => {
|
|
79
|
+
category: string;
|
|
80
|
+
id: number;
|
|
81
|
+
type: string | undefined;
|
|
82
|
+
src: string | undefined;
|
|
83
|
+
alternativeLiveUserId: number;
|
|
84
|
+
provider: string | undefined;
|
|
85
|
+
};
|
|
86
|
+
export declare const deActiveSettingLog: () => {
|
|
87
|
+
category: string;
|
|
88
|
+
hasOtherLive: string;
|
|
89
|
+
hasPoll: string;
|
|
90
|
+
hasEmoji: string;
|
|
91
|
+
id: number;
|
|
92
|
+
type: string | undefined;
|
|
93
|
+
src: string | undefined;
|
|
94
|
+
provider: string | undefined;
|
|
95
|
+
} | {
|
|
96
|
+
category: string;
|
|
97
|
+
id: number;
|
|
98
|
+
type: string | undefined;
|
|
99
|
+
src: string | undefined;
|
|
100
|
+
provider: string | undefined;
|
|
101
|
+
};
|
|
102
|
+
export declare const backwardForwardLog: (type: string) => {
|
|
103
|
+
category: string;
|
|
104
|
+
id: number;
|
|
105
|
+
type: string | undefined;
|
|
106
|
+
src: string | undefined;
|
|
107
|
+
provider: string | undefined;
|
|
108
|
+
};
|
|
109
|
+
export declare const pollModalCloseLog: (params: IParams, details: IDetails, pollId: number) => {
|
|
110
|
+
category: string;
|
|
111
|
+
pollId: number;
|
|
112
|
+
id: number;
|
|
113
|
+
type: string | undefined;
|
|
114
|
+
src: string | undefined;
|
|
115
|
+
provider: string | undefined;
|
|
116
|
+
};
|
|
117
|
+
export declare const tagClickLog: (tagText: string) => {
|
|
118
|
+
category: string;
|
|
119
|
+
tagText: string;
|
|
120
|
+
id: number;
|
|
121
|
+
type: string | undefined;
|
|
122
|
+
src: string | undefined;
|
|
123
|
+
};
|
|
124
|
+
export declare const likeDislikeLog: (category: string) => {
|
|
125
|
+
category: string;
|
|
126
|
+
id: number;
|
|
127
|
+
type: string | undefined;
|
|
128
|
+
src: string | undefined;
|
|
129
|
+
};
|
|
130
|
+
export declare const fullscreenLog: (category: string) => {
|
|
131
|
+
category: string;
|
|
132
|
+
id: number;
|
|
133
|
+
type: string | undefined;
|
|
134
|
+
src: string | undefined;
|
|
135
|
+
};
|
|
136
|
+
export declare const brightnessLog: (source: number, target: number) => {
|
|
137
|
+
category: string;
|
|
138
|
+
source: number;
|
|
139
|
+
target: number;
|
|
140
|
+
id: number;
|
|
141
|
+
type: string | undefined;
|
|
142
|
+
src: string | undefined;
|
|
143
|
+
};
|
|
144
|
+
export declare const volumeLog: (source: number, target: number) => {
|
|
145
|
+
category: string;
|
|
146
|
+
source: number;
|
|
147
|
+
target: number;
|
|
148
|
+
id: number;
|
|
149
|
+
type: string | undefined;
|
|
150
|
+
src: string | undefined;
|
|
151
|
+
};
|
|
152
|
+
export declare const subtitleLog: (language: string) => {
|
|
153
|
+
category: string;
|
|
154
|
+
language: string;
|
|
155
|
+
id: number;
|
|
156
|
+
type: string | undefined;
|
|
157
|
+
src: string | undefined;
|
|
158
|
+
};
|
|
159
|
+
export declare const lockLog: (category: string) => {
|
|
160
|
+
category: string;
|
|
161
|
+
id: number;
|
|
162
|
+
type: string | undefined;
|
|
163
|
+
src: string | undefined;
|
|
164
|
+
};
|
|
165
|
+
export declare const recommendationListLog: (targetVideoId: number, targetUserId: number, targetType: string, listIndex: number) => {
|
|
166
|
+
category: string;
|
|
167
|
+
sourcevideoId: number | undefined;
|
|
168
|
+
targetVideoId: number;
|
|
169
|
+
sourceUserId: number | null;
|
|
170
|
+
targetUserId: number;
|
|
171
|
+
sourceType: string | undefined;
|
|
172
|
+
targetType: string;
|
|
173
|
+
listIndex: number;
|
|
174
|
+
id: number;
|
|
175
|
+
type: string | undefined;
|
|
176
|
+
src: string | undefined;
|
|
177
|
+
};
|
|
178
|
+
export declare const ExceptionsLog: (type: string, message: string) => {
|
|
179
|
+
category: string;
|
|
180
|
+
type: string;
|
|
181
|
+
message: string;
|
|
182
|
+
};
|
|
183
|
+
export declare const videoTimelineLog: (start: number, end: number) => {
|
|
184
|
+
category: string;
|
|
185
|
+
video_id: number | undefined;
|
|
186
|
+
video_type: string | undefined;
|
|
187
|
+
start: number;
|
|
188
|
+
end: number;
|
|
189
|
+
watchedDuration: number;
|
|
190
|
+
video_duration: number | null;
|
|
191
|
+
clientUUID: string;
|
|
192
|
+
user_id: string | number | null | undefined;
|
|
193
|
+
content_type: number | null;
|
|
194
|
+
content_id: number | undefined;
|
|
195
|
+
};
|
|
196
|
+
export declare const bookmarkLog: (category: "bookmark" | "unBookmark") => {
|
|
197
|
+
category: "bookmark" | "unBookmark";
|
|
198
|
+
id: number | undefined;
|
|
199
|
+
type: string | undefined;
|
|
200
|
+
src: string | undefined;
|
|
201
|
+
};
|
|
202
|
+
export declare const autoQualityChangeLog: (sourceQuality: String, targetQuality: String, diffQuality: number) => {
|
|
203
|
+
category: string;
|
|
204
|
+
sourceQuality: String;
|
|
205
|
+
targetQuality: String;
|
|
206
|
+
diffQuality: number;
|
|
207
|
+
id: number;
|
|
208
|
+
type: string | undefined;
|
|
209
|
+
src: string | undefined;
|
|
210
|
+
provider: string | undefined;
|
|
211
|
+
};
|
|
212
|
+
export declare const pingpongLog: (startTimer: number, qualityHistory: number[]) => {
|
|
213
|
+
category: string;
|
|
214
|
+
id: number;
|
|
215
|
+
type: string | undefined;
|
|
216
|
+
src: string | undefined;
|
|
217
|
+
PingPongDuration: number;
|
|
218
|
+
PingPongSourceQuality: string;
|
|
219
|
+
PingPongTargetQuality: string;
|
|
220
|
+
provider: string | undefined;
|
|
221
|
+
};
|
|
222
|
+
export declare const pausePlayLog: (isPlay: boolean) => {
|
|
223
|
+
category: string;
|
|
224
|
+
id: number;
|
|
225
|
+
type: string | undefined;
|
|
226
|
+
src: string | undefined;
|
|
227
|
+
provider: string | undefined;
|
|
228
|
+
};
|
|
229
|
+
export declare const initLog: (loadingTime: number, waitingTime: number, bannerLoadingTime: number, firstChunkPlayingTime: number, timerRef: any) => {
|
|
230
|
+
category: string;
|
|
231
|
+
id: number;
|
|
232
|
+
type: string | undefined;
|
|
233
|
+
origin: string;
|
|
234
|
+
src: string | undefined;
|
|
235
|
+
loading: number;
|
|
236
|
+
bannerLoading: number;
|
|
237
|
+
waiting: number;
|
|
238
|
+
firstChunkPlaying: number;
|
|
239
|
+
totalTime: number;
|
|
240
|
+
provider: string | undefined;
|
|
241
|
+
performance: any;
|
|
242
|
+
userAgent: string;
|
|
243
|
+
};
|
|
244
|
+
export declare const loadingLog: (waitingDuration: number, qualityLevel: number, timerRef: any, loadingCounterRef: any, videoEntranceTime: number) => {
|
|
245
|
+
category: string;
|
|
246
|
+
id: number;
|
|
247
|
+
type: string | undefined;
|
|
248
|
+
src: string | undefined;
|
|
249
|
+
duration: number;
|
|
250
|
+
quality: string;
|
|
251
|
+
isAutoQuality: any;
|
|
252
|
+
previousLoaderDiff: number;
|
|
253
|
+
counter: any;
|
|
254
|
+
loadingPercentile: number;
|
|
255
|
+
videoTime: number;
|
|
256
|
+
videoEntranceTime: number;
|
|
257
|
+
speed: number;
|
|
258
|
+
provider: string | undefined;
|
|
259
|
+
};
|
|
260
|
+
export declare const playListClickLog: (playlistId: number) => {
|
|
261
|
+
category: string;
|
|
262
|
+
playlistId: number;
|
|
263
|
+
id: number | undefined;
|
|
264
|
+
type: string | undefined;
|
|
265
|
+
};
|
|
266
|
+
export declare const videoOfPlaylistClickLog: (playlistId: number, videoId: number, videoType: number, videoIndex: number) => {
|
|
267
|
+
category: string;
|
|
268
|
+
tag: number;
|
|
269
|
+
indexNumber: number;
|
|
270
|
+
videoId: number;
|
|
271
|
+
videoType: number;
|
|
272
|
+
};
|
|
273
|
+
export declare const searchLog: (contentType: undefined | ContentTypesString.PlayList | ContentTypesString.Vod | `${ContentTypesString.Vod},${ContentTypesString.PlayList}`) => {
|
|
274
|
+
category: string;
|
|
275
|
+
tag: string;
|
|
276
|
+
q: string | undefined;
|
|
277
|
+
user_ids: string | undefined;
|
|
278
|
+
video_type: ContentTypesString | "vod,playlist" | undefined;
|
|
279
|
+
};
|
|
280
|
+
export declare const searchResultClickLog: (videoId: number, videoType: string, videoIndex: number) => {
|
|
281
|
+
category: string;
|
|
282
|
+
tag: string;
|
|
283
|
+
q: string | undefined;
|
|
284
|
+
user_ids: string | undefined;
|
|
285
|
+
video_type: ContentTypesString | "vod,playlist" | undefined;
|
|
286
|
+
clickedId: number;
|
|
287
|
+
clickedIndex: number;
|
|
288
|
+
clickedType: string;
|
|
289
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
type Theme = "light" | "dark";
|
|
3
|
+
interface ThemeContextType {
|
|
4
|
+
theme: Theme;
|
|
5
|
+
setTheme: (theme: Theme) => void;
|
|
6
|
+
toggleTheme: () => void;
|
|
7
|
+
}
|
|
8
|
+
interface ThemeProviderProps {
|
|
9
|
+
children: ReactNode;
|
|
10
|
+
}
|
|
11
|
+
export declare const ThemeProvider: ({ children }: ThemeProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare const useTheme: () => ThemeContextType;
|
|
13
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IChatMessage } from '../../interfaces';
|
|
2
|
+
export declare const handleGetUsersInChat: (user_ids: string[]) => Promise<any>;
|
|
3
|
+
export declare const submitCommentInChat: (setInputValue?: (value: string) => void, message?: string | undefined, messageId?: number | undefined) => Promise<void>;
|
|
4
|
+
export declare const fetchChatMessage: (offset: number, setScrollEnd: any) => Promise<void>;
|
|
5
|
+
export declare const handleConnectSocket: (setScrollEnd: any) => void;
|
|
6
|
+
export declare const handleChatRoomMessage: (data: IChatMessage[] | IChatMessage) => Promise<void>;
|
|
7
|
+
export declare const handleFirstTimeChatRoomMessage: (data: IChatMessage[]) => Promise<void>;
|
|
8
|
+
export declare const handleChatActiveRoom: (isChatEnabled: boolean) => Promise<void>;
|
|
9
|
+
export declare const submitChatComment: (_data: any) => Promise<{
|
|
10
|
+
data: any;
|
|
11
|
+
status: any;
|
|
12
|
+
}>;
|
|
13
|
+
export declare const getAllChatMessages: (roomId: number, offset: number) => Promise<{
|
|
14
|
+
data: any;
|
|
15
|
+
status: any;
|
|
16
|
+
}>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IComments } from '../../interfaces/interfaces';
|
|
2
|
+
export declare const checkCanComment: () => Promise<void>;
|
|
3
|
+
export declare const handleGetComments: (offset: number, setScrollEnd: (value: boolean) => void) => Promise<void>;
|
|
4
|
+
export declare const handleGetReplies: (commentId: number, replies: IComments[], setReplies: (value: IComments[]) => void, usersRepliesProfiles: any[], setUsersRepliesProfiles: (values: any[]) => void, realTimeReply?: undefined | IComments) => Promise<void>;
|
|
5
|
+
export declare const handleSubmitDefaultMessageComment: (messageId: number) => Promise<void>;
|
|
6
|
+
export declare const handleSubmitComment: (inputValue: string, setInputValue: (value: string) => void, selectedEmoji: string, setSelectedEmoji: (value: string) => void, type: string, setShowReplyBox: any) => Promise<void>;
|
|
7
|
+
export declare const handleGetUsersComments: (comments: IComments[], usersProfiles: any[]) => Promise<any[]>;
|
|
8
|
+
export declare const handleCommentsIdsInLocalStorage: () => any;
|
|
9
|
+
export declare const handleLikeUnlikeComment: (commentId: number, likeStatus: boolean, setLikeStatus: (value: boolean) => void, likeCount: number, setLikeCount: (value: number) => void) => Promise<void>;
|
|
10
|
+
export declare const handleCloseCommentPopover: () => void;
|
|
11
|
+
export declare const isShowCommentSettings: (userId: string) => boolean;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare const handlePlayPause: (event: any) => void;
|
|
2
|
+
export declare const handlePlayPauseInDOM: (type: boolean) => boolean;
|
|
3
|
+
export declare const handleChangeSoundVolume: (volume: number) => void;
|
|
4
|
+
export declare const handleIsLive: () => void;
|
|
5
|
+
export declare const handleBackwardForward: (type: string, forwardBackwardCount?: number, event?: any) => void;
|
|
6
|
+
export declare const handleFullScreen: () => void;
|
|
7
|
+
export declare const handleLockOrientation: () => void;
|
|
8
|
+
export declare const handleLock: (type: string) => void;
|
|
9
|
+
export declare const handleVideoTimeline: (currentTimeValue: number, movedTimeValue?: number) => void;
|
|
10
|
+
export declare const handleSnapShot: (setLoading: (loading: boolean) => void) => Promise<void>;
|
|
11
|
+
export declare const handleVideoElementSizeInfo: () => void;
|
|
12
|
+
export declare const handleClickVideoCard: (videoId?: string | null, videoType?: string | null, isBackButtonClick?: boolean) => void;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './chat.actions';
|
|
2
|
+
export * from './comment.action';
|
|
3
|
+
export * from './controller.actions';
|
|
4
|
+
export * from './progressbar.actions';
|
|
5
|
+
export * from './tags.actions';
|
|
6
|
+
export * from './user.actions';
|
|
7
|
+
export * from './videoData.actions';
|
|
8
|
+
export * from './playerCore.actions';
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
export declare const handleAutoFullScreen: () => void;
|
|
2
|
+
export declare const appendQueryParamsToChunksIOS: () => void;
|
|
3
|
+
export declare const handleBufferedTime: (event: any, intervalRef: any) => void;
|
|
4
|
+
export declare const handleHlsConfig: () => {
|
|
5
|
+
xhrSetup: (xhr: any, url: any) => void;
|
|
6
|
+
startLevel: number;
|
|
7
|
+
debug: boolean;
|
|
8
|
+
enableWorker: boolean;
|
|
9
|
+
liveDurationInfinity: any;
|
|
10
|
+
maxLiveSyncPlaybackRate: number;
|
|
11
|
+
abrBandWidthUpFactor: number;
|
|
12
|
+
abrBandWidthFactor: number;
|
|
13
|
+
backBufferLength: number;
|
|
14
|
+
maxBufferLength: number;
|
|
15
|
+
maxMaxBufferLength: number;
|
|
16
|
+
liveSyncDuration: number;
|
|
17
|
+
liveMaxLatencyDuration: number | undefined;
|
|
18
|
+
manifestLoadPolicy: {
|
|
19
|
+
default: {
|
|
20
|
+
maxTimeToFirstByteMs: number;
|
|
21
|
+
maxLoadTimeMs: number;
|
|
22
|
+
timeoutRetry: {
|
|
23
|
+
maxNumRetry: number;
|
|
24
|
+
retryDelayMs: number;
|
|
25
|
+
maxRetryDelayMs: number;
|
|
26
|
+
};
|
|
27
|
+
errorRetry: {
|
|
28
|
+
maxNumRetry: number;
|
|
29
|
+
retryDelayMs: number;
|
|
30
|
+
maxRetryDelayMs: number;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
fragLoadPolicy: {
|
|
35
|
+
default: {
|
|
36
|
+
maxTimeToFirstByteMs: number;
|
|
37
|
+
maxLoadTimeMs: number;
|
|
38
|
+
timeoutRetry: {
|
|
39
|
+
maxNumRetry: number;
|
|
40
|
+
retryDelayMs: number;
|
|
41
|
+
maxRetryDelayMs: number;
|
|
42
|
+
};
|
|
43
|
+
errorRetry: {
|
|
44
|
+
maxNumRetry: number;
|
|
45
|
+
retryDelayMs: number;
|
|
46
|
+
maxRetryDelayMs: number;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
playlistLoadPolicy: {
|
|
51
|
+
default: {
|
|
52
|
+
maxTimeToFirstByteMs: number;
|
|
53
|
+
maxLoadTimeMs: number;
|
|
54
|
+
timeoutRetry: {
|
|
55
|
+
maxNumRetry: number;
|
|
56
|
+
retryDelayMs: number;
|
|
57
|
+
maxRetryDelayMs: number;
|
|
58
|
+
};
|
|
59
|
+
errorRetry: {
|
|
60
|
+
maxNumRetry: number;
|
|
61
|
+
retryDelayMs: number;
|
|
62
|
+
maxRetryDelayMs: number;
|
|
63
|
+
};
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
export declare const handleMultiLiveHlsConfig: () => {
|
|
68
|
+
xhrSetup: (xhr: any, url: any) => void;
|
|
69
|
+
startLevel: number;
|
|
70
|
+
debug: boolean;
|
|
71
|
+
liveSyncDuration: number;
|
|
72
|
+
maxMaxBufferLength: number;
|
|
73
|
+
playlistLoadPolicy: {
|
|
74
|
+
default: {
|
|
75
|
+
maxTimeToFirstByteMs: number;
|
|
76
|
+
maxLoadTimeMs: number;
|
|
77
|
+
timeoutRetry: {
|
|
78
|
+
maxNumRetry: number;
|
|
79
|
+
retryDelayMs: number;
|
|
80
|
+
maxRetryDelayMs: number;
|
|
81
|
+
};
|
|
82
|
+
errorRetry: {
|
|
83
|
+
maxNumRetry: number;
|
|
84
|
+
retryDelayMs: number;
|
|
85
|
+
maxRetryDelayMs: number;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
export declare const handleManifestParsed: (hls: any, data: any) => void;
|
|
91
|
+
export declare const handleManifestLoaded: (hls: any) => number;
|
|
92
|
+
export declare const handleMediaAttached: (Hls: any, hls: any) => void;
|
|
93
|
+
export declare const handleLevels: (hls: any, data: any, setQualityLevel: any) => void;
|
|
94
|
+
export declare const handleFragBuffered: (hls: any) => void;
|
|
95
|
+
export declare const handleFragLoading: (hls: any) => void;
|
|
96
|
+
export declare const handleFragChanged: (_Hls: any, hls: any, data: any, setQualityLevel: any) => void;
|
|
97
|
+
export declare const handleFragParsed: (hls: any, data: any, setQualityLevel: any) => void;
|
|
98
|
+
export declare const handleHlsErrors: (_Hls: any, data: any) => {
|
|
99
|
+
type: string;
|
|
100
|
+
message: any;
|
|
101
|
+
} | undefined;
|
|
102
|
+
export declare const handlePreview: (event: any) => void;
|
|
103
|
+
export declare const handleVideoWaiting: (event: any, waitingTimerRef: any) => void;
|
|
104
|
+
export declare const handleVideoSeeking: (event: any, waitingTimerRef: any) => void;
|
|
105
|
+
export declare const handleVideoTime: () => void;
|
|
106
|
+
export declare const handleVideoPlay: (event: any, timerRef: any) => void;
|
|
107
|
+
export declare const handleVideoPlaying: (loadingCounterRef: any, loadingDurationRef: any, initialWaitingDurationRef: any, bannerLoadingDurationRef: any, timerRef: any, waitingDurationRef: any, waitingTimerRef: any, videoEntranceTimeRef: any) => void;
|
|
108
|
+
export declare const handleVideoPause: (event: any) => void;
|
|
109
|
+
export declare const handleVideoTimeUpdate: (event: any) => void;
|
|
110
|
+
export declare const handleVideoCanPlay: (event: any) => void;
|
|
111
|
+
export declare const handleVideoEnded: (event: any) => void;
|
|
112
|
+
export declare const handleVideoError: (event: any) => void;
|
|
113
|
+
export declare const handleIosVideoPlay: (event: any, timerRef: any) => void;
|
|
114
|
+
export declare const handleIosVideoPlaying: () => void;
|
|
115
|
+
export declare const handleIosVideoTimeUpdate: (event: any) => void;
|
|
116
|
+
export declare const handleIosVideoEnded: () => void;
|
|
117
|
+
export declare const handleStaticVideoPause: (event: any) => void;
|
|
118
|
+
export declare const handleStaticVideoPlay: (event: any, timerRef: any) => void;
|
|
119
|
+
export declare const handleStaticVideoPlaying: (loadingDurationRef: any, initialWaitingDurationRef: any, timerRef: any) => void;
|
|
120
|
+
export declare const handleStaticVideoTimeUpdate: (event: any) => void;
|
|
121
|
+
export declare const handleStaticVideoCanPlay: (event: any) => void;
|
|
122
|
+
export declare const handleStaticVideoLoadedData: (event: any, intervalRef: any) => void;
|
|
123
|
+
export declare const handleStaticVideoEnded: (event: any) => void;
|
|
124
|
+
export declare const handleQuizVideoTimeUpdate: (event: any) => void;
|
|
125
|
+
export declare const handleQuizVideoPlaying: (event: any) => void;
|
|
126
|
+
export declare const handleMultiLiveManifestParsed: (hls: any) => any;
|
|
127
|
+
export declare const handleMultiLiveMediaAttached: (Hls: any, hls: any) => Promise<void>;
|
|
128
|
+
export declare const handleMultiLiveFragLoading: (hls: any) => Promise<void>;
|
|
129
|
+
export declare const handleVideoVisibilityChange: (hls: any) => void;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const getPointerTime: (event: any, type?: string) => number | undefined;
|
|
2
|
+
export declare const getPointerPosition: (event: any) => number | undefined;
|
|
3
|
+
export declare const getMarkerPosition: (markerTime: number) => number;
|
|
4
|
+
export declare const hideProgressTooltip: (progressTooltip: any) => void;
|
|
5
|
+
export declare const showProgressTooltip: (event: any, progressTooltip: any, progressBarTooltip: any) => void;
|
|
6
|
+
export declare const handleTimeTooltip: (event: any, isTimer?: boolean) => void;
|
|
7
|
+
export declare const handleProgressTime: (event: any) => void;
|
|
8
|
+
export declare const handlePointerDown: (event: any, timeoutIds: any, setIsPointerDown: (value: boolean) => void) => void;
|
|
9
|
+
export declare const handlePointerMove: (event: any) => void;
|
|
10
|
+
export declare const handlePointerUp: (event: any, setTimeoutIds: (timeoutIds: any[]) => void, timeoutIds: any, setIsPointerDown: (value: boolean) => void) => void;
|
|
11
|
+
export declare const handleCatchUpLoadingLog: () => void;
|
|
12
|
+
export declare const handleMouseMove: (event: any) => void;
|
|
13
|
+
export declare const handleMouseOut: () => void;
|
|
14
|
+
export declare const fetchFile: (url: string, setVttPool: any) => void;
|
|
15
|
+
export declare const getStyleForTime: (time: number, vttPool: any, cache: any) => any;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { UserQuizStatus } from '../../interfaces/enums';
|
|
2
|
+
import { IQuizChoice, IQuizGenerateCode, IQuizLoginOtp, IQuizQuestions, IQuizUserRecords, IUserQuestions, QuizType, QuestionStatus } from '../../interfaces';
|
|
3
|
+
export declare const handleSelectedAnswer: (answerId: number, setShowSpinner: (value: undefined | number) => void) => Promise<void>;
|
|
4
|
+
export declare const firstQuizQuestion: (quiz: QuizType) => IQuizQuestions;
|
|
5
|
+
export declare const firstQuizQuestionId: (quiz: QuizType) => number;
|
|
6
|
+
export declare const lastQuizQuestion: (quiz: QuizType, general?: boolean) => IQuizQuestions;
|
|
7
|
+
export declare const lastQuizQuestionId: (quiz: QuizType, general?: boolean) => number;
|
|
8
|
+
export declare const lastQuizQuestionStatus: (quiz: QuizType) => QuestionStatus | undefined;
|
|
9
|
+
export declare const lastQuizQuestionChoices: (quiz: QuizType) => IQuizChoice[];
|
|
10
|
+
export declare const lastQuizQuestionOrder: (quiz: QuizType) => number;
|
|
11
|
+
export declare const lastQuizQuestionText: (quiz: QuizType) => string;
|
|
12
|
+
export declare const findParticipantsInEliminationQuiz: (quiz: QuizType) => number;
|
|
13
|
+
export declare const findCorrectQuizAnswer: (quiz: QuizType) => IQuizChoice;
|
|
14
|
+
export declare const handleUserStatus: (chance?: number) => UserQuizStatus;
|
|
15
|
+
export declare const handleCurrentQuestion: (data: IQuizUserRecords) => {};
|
|
16
|
+
export declare const handleCurrentQuestionInAggregate: (quiz: QuizType) => IQuizQuestions;
|
|
17
|
+
export declare const handleUserAnswerId: (data: IQuizUserRecords) => number;
|
|
18
|
+
export declare const handleCorrectAnswer: () => IQuizChoice;
|
|
19
|
+
export declare const handleUserAnswersCount: () => number;
|
|
20
|
+
export declare const handleUserCorrectAnswersCount: (userQuestions: IUserQuestions[]) => number;
|
|
21
|
+
export declare const isUserAnswerFirstQuestion: () => boolean;
|
|
22
|
+
export declare const isUserAnswerLastQuestion: () => boolean;
|
|
23
|
+
export declare const handleUserRecordesQuiz: (quiz: any) => Promise<void>;
|
|
24
|
+
export declare const handleQuizParticipantsPerQuestion: () => number;
|
|
25
|
+
export declare const handleGenerateCode: ({ event, quizFormData, setQuizFormData, setLoading, setMobileNumberError, setResendCodeTime, setLoginStep, }: IQuizGenerateCode) => Promise<void>;
|
|
26
|
+
export declare const handleOtp: ({ event, otpCode, quizFormData, setLoading }: IQuizLoginOtp) => Promise<void>;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export declare const getFitMaxNumberCard: () => number;
|
|
2
|
+
export declare const handleGetTags: (scrollEnd: boolean, setScrollEnd: (scrollEnd: boolean) => void, listScrolled: any[], setListScrolled: (listScrolled: any[]) => void) => void;
|
|
3
|
+
export declare const handleClickTag: (setVideoCount: (videoCount: number) => void, listScrolled: any[], setListScrolled: (listScrolled: any[]) => void, setLoadingGetTags?: (value: boolean) => void) => void;
|
|
4
|
+
export declare const handleClickPlayerCardTag: (event: any, tag: string) => void;
|
|
5
|
+
export declare const getAllViewersTagList: () => Promise<unknown>;
|
|
6
|
+
export declare const handleViewersTagList: () => Promise<void>;
|
|
7
|
+
export declare const handleCloseTagPopover: () => void;
|
|
8
|
+
export declare const handleTagInput: (inputValue: string, setTagInputLoading: (tagInputLoading: boolean) => void, tagInputTimeoutRef: any, setVideoCount: (videoCount: number) => void, listScrolled: any[], setListScrolled: (listScrolled: any[]) => void, setLoadingGetTags: (value: boolean) => void) => void;
|
|
9
|
+
export declare const handleCloseSelectedTags: (tag: string) => void;
|
|
10
|
+
export declare const handleClickViewersTagList: (tag: string) => void;
|
|
11
|
+
export declare const handleClearTagInput: (setVideoCount: (videoCount: number) => void, listScrolled: any[], setListScrolled: (listScrolled: any[]) => void) => void;
|
|
12
|
+
export declare const handleNextTag: (e: any, tagsContainerRef: any) => void;
|
|
13
|
+
export declare const handlePrevTag: (e: any, tagsContainerRef: any) => void;
|
|
14
|
+
export declare const handleScrollLeft: (event: any, tagId: string) => void;
|
|
15
|
+
export declare const handleScrollRight: (event: any, tagId: string) => void;
|
|
16
|
+
export declare const handleSearchResultClick: (event: any, video: any, playListCardInfoRef: any, videoId: number, videoType: string, videoIndex: number) => void;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ITokens } from '../../interfaces/interfaces';
|
|
2
|
+
export declare const createSettings: (settings: any) => Promise<void>;
|
|
3
|
+
export declare const createVideoSettings: (videoSettings: any) => Promise<void>;
|
|
4
|
+
export declare const handleBookmark: (event: any, id?: number, type?: string) => Promise<void>;
|
|
5
|
+
export declare const authToken: {
|
|
6
|
+
key: string;
|
|
7
|
+
get: () => ITokens | null;
|
|
8
|
+
set: (value: ITokens) => string | undefined;
|
|
9
|
+
remove: () => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const captchaStorageLogin: {
|
|
12
|
+
key: string;
|
|
13
|
+
get: () => string | null;
|
|
14
|
+
set: (value: string) => void;
|
|
15
|
+
remove: () => void;
|
|
16
|
+
};
|
|
17
|
+
export declare const captchaStorageCode: {
|
|
18
|
+
key: string;
|
|
19
|
+
get: () => string | null;
|
|
20
|
+
set: (value: string) => void;
|
|
21
|
+
remove: () => void;
|
|
22
|
+
};
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { ContentTypesString } from '../../interfaces/enums';
|
|
2
|
+
import { IMarker } from '../../interfaces';
|
|
3
|
+
import { MouseEventHandler } from 'react';
|
|
4
|
+
export declare const getLiveAndVodDetails: (userId?: number) => Promise<any>;
|
|
5
|
+
export declare const detailSetter: (data: any) => void;
|
|
6
|
+
export declare const getMarkers: (id: Number) => Promise<unknown>;
|
|
7
|
+
export declare const firstGetDataIntervalAPI: (retryCount: any, setRetryCount: any, dispatch: any, setIntervalTime: any, setOnlineViewerIntervalTime: any, setPostDataIntervalTime: any) => Promise<void>;
|
|
8
|
+
export declare const manualGetDataIntervalAPI: (retryCount: any, intervalIds: any, intervalTime: any, setRetryCount: any, dispatch: any, setIntervalIds: any, setIntervalTime: any, setOnlineViewerIntervalTime: any, setPostDataIntervalTime: any) => Promise<void>;
|
|
9
|
+
export declare const manualPostAPI: () => Promise<void>;
|
|
10
|
+
export declare const manualGetOnlineViewerIntervalAPI: () => Promise<any>;
|
|
11
|
+
export declare const handleSubtitle: () => void;
|
|
12
|
+
export declare const handleClickRecommendationCard: (event?: any, videoId?: number, userId?: number, videoType?: string, listIndex?: number) => void;
|
|
13
|
+
export declare const combinedMarkers: (personalMarkers: any[], publicMarkers: IMarker[]) => void;
|
|
14
|
+
export declare const handlePlayListTabClick: () => void;
|
|
15
|
+
export declare const handleVideoOfPlaylistClick: (event: MouseEventHandler<HTMLDivElement>, playlistId: number, videoId: number, videoType: number, videoIndex: number) => void;
|
|
16
|
+
export declare const handleContentType: () => ContentTypesString | "vod,playlist" | undefined;
|
|
17
|
+
export declare const findFirstVideoInRecommendationList: () => {
|
|
18
|
+
id: any;
|
|
19
|
+
type: any;
|
|
20
|
+
banner: any;
|
|
21
|
+
title: any;
|
|
22
|
+
};
|
|
23
|
+
export declare const postEmojiPoll: (manualPostData: any) => Promise<{
|
|
24
|
+
status: any;
|
|
25
|
+
}>;
|
|
26
|
+
export declare const getPlaylistVideos: (selectedPlaylist: number, offset: number) => Promise<{
|
|
27
|
+
data: any;
|
|
28
|
+
status: any;
|
|
29
|
+
}>;
|
|
30
|
+
export declare const getAllGeneralMarker: (url: string) => Promise<any>;
|
|
31
|
+
export declare const getAllPersonalMarkers: (url: string) => Promise<{
|
|
32
|
+
data: any;
|
|
33
|
+
status: any;
|
|
34
|
+
}>;
|
|
35
|
+
export declare const getCommentList: (url: string, offset: number) => Promise<{
|
|
36
|
+
data: any;
|
|
37
|
+
status: any;
|
|
38
|
+
}>;
|
|
39
|
+
export declare const submitComment: (url: string, _data: any) => Promise<{
|
|
40
|
+
data: any;
|
|
41
|
+
status: any;
|
|
42
|
+
}>;
|
|
43
|
+
export declare const getPlayListCards: (url: string) => Promise<{
|
|
44
|
+
data: any;
|
|
45
|
+
status: any;
|
|
46
|
+
}>;
|
|
47
|
+
export declare const getPlaylistHeader: (url: string) => Promise<{
|
|
48
|
+
data: any;
|
|
49
|
+
status: any;
|
|
50
|
+
}>;
|