Documentation
External
Controls
Indicator

Indicator

Description

The Indicator component is a React component designed to display a pagination indicator for a series of items. It leverages external context from @react-instastories/base to manage its state and behavior. This component is particularly useful for scenarios where you need to visually represent the progress or state of multiple items, such as in a slideshow or a story format.

Properties

Components

PropertyTypeDescription
interactivebooleanEnables is interactive mode of the indicator (by default, false).
thresholdnumberThe time value controls the delay in milliseconds before an action is performed once the indicator is completely full (by default, 1000).
...propsReact.HTMLAttributesStandard HTML Element attributes.

Usage

import { Configurable } from "@react-instastories/base";
import { Controls } from "@react-instastories/external";
 
function AppStories() {
  return (
    <Configurable.Container>
      <Configurable.Story>
        <Controls.Indicator interactive threshold={1000} />
      </Configurable.Story>
    </Configurable.Container>
  );
}

Demo