This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<List component="nav" className={classes.info}> | |
<Tooltip title="Copy" placement="left"> | |
<ListItem className={classes.infoItem} divider button> | |
<ListItemIcon> | |
<EmailIcon /> | |
</ListItemIcon> | |
<ListItemText primary={info.basic.email} /> | |
</ListItem> | |
</Tooltip> | |
</List> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
import ReactPlayer, { ReactPlayerProps } from "react-player"; | |
import { getSDK } from "react-player/lib/utils"; | |
import { | |
Player, | |
IkWidget, | |
KalturaNotificationName, | |
KalturaPlayerElement, | |
KalturaPlayerEvents, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Methods required by a custom player for `react-player` | |
*/ | |
export interface Player { | |
load(url?: string): void; | |
seekTo(amount: number, type?: 'seconds' | 'fraction'): void; | |
getCurrentTime(): number; | |
getDuration(): number; | |
getSecondsLoaded(): number | null; | |
stop?(): void; |