react-native-firework-sdk
    Preparing search index...

    Interface ICircleStoryProps

    interface ICircleStoryProps {
        adConfiguration?: AdConfiguration;
        channel?: string;
        circleStoryConfiguration?: CircleStoryConfiguration;
        contentId?: string;
        dynamicContentParameters?: { [key: string]: string[] };
        enablePictureInPicture?: boolean;
        enableSystemPictureInPicture?: boolean;
        hashtagFilterExpression?: string;
        onCircleStoryDidStartPictureInPicture?: (error?: FWError) => void;
        onCircleStoryDidStopPictureInPicture?: (error?: FWError) => void;
        onCircleStoryEmpty?: (error?: FWError) => void;
        onCircleStoryGetFeedId?: (feedId: string) => void;
        onCircleStoryLoadFinished?: (error?: FWError) => void;
        playlist?: string;
        playlistGroup?: string;
        productIds?: string[];
        source: VideoFeedSource;
        style?: StyleProp<ViewStyle>;
        videoPlayerConfiguration?: VideoPlayerConfiguration;
    }
    Index

    Properties

    adConfiguration?: AdConfiguration

    Ad configuration of the feed.

    channel?: string

    Channel id of the feed. Required when the source is channel, playlist, dynamicContent, hashtagPlaylist, or sku.

    circleStoryConfiguration?: CircleStoryConfiguration

    Configuration of circle story.

    contentId?: string

    The video or live stream id.

    dynamicContentParameters?: { [key: string]: string[] }

    The dynamic content parameters of the feed. Required when the source is dynamicContent.

    enablePictureInPicture?: boolean

    Specifies if Picture in Picture is enabled.

    enableSystemPictureInPicture?: boolean

    Controls whether the system (native iOS) Picture-in-Picture is enabled. Defaults to true. Only supported on iOS.

    hashtagFilterExpression?: string

    Hashtag filter expression used to query feed by hashtags.

    onCircleStoryDidStartPictureInPicture?: (error?: FWError) => void

    Start PiP callback. Only supported on iOS.

    onCircleStoryDidStopPictureInPicture?: (error?: FWError) => void

    Stop PiP callback. Only supported on iOS.

    onCircleStoryEmpty?: (error?: FWError) => void

    Triggered when there are no items in the feed.

    onCircleStoryGetFeedId?: (feedId: string) => void

    The host app could use this callback to get feed id for conversion tracking.

    onCircleStoryLoadFinished?: (error?: FWError) => void

    The feed loading result callback.

    playlist?: string

    Playlist id of the feed. Please note channel id is necessary. Required when the source is playlist.

    playlistGroup?: string

    PlaylistGroup id of the feed. Required when the source is playlistGroup. Only supported on iOS.

    productIds?: string[]

    Product ids used to generate sku feed.

    One of available feed sources. Defaults to discover.

    style?: StyleProp<ViewStyle>
    videoPlayerConfiguration?: VideoPlayerConfiguration

    Configuration of video player.