React
- Package
- purescript-react
- Repository
- purescript-contrib/purescript-react
This module defines foreign types and functions which wrap React's functionality.
#ReactElement Source
#ReactComponent Source
data ReactComponent :: TypeA mounted react component
#ReactUnusedSnapshot Source
data ReactUnusedSnapshot :: Type#Render Source
type Render = Effect ReactElementA render effect.
#ComponentWillMount Source
type ComponentWillMount = Effect UnitA component will mount effect.
#ComponentDidMount Source
type ComponentDidMount = Effect UnitA component did mount effect.
#ComponentDidCatch Source
type ComponentDidCatch = Error -> { componentStack :: String } -> Effect UnitA component did catch effect.
#ComponentWillReceiveProps Source
type ComponentWillReceiveProps props = props -> Effect UnitA component will receive props function.
#ShouldComponentUpdate Source
type ShouldComponentUpdate props state = props -> state -> Effect BooleanA should component update function.
#ComponentWillUpdate Source
type ComponentWillUpdate props state = props -> state -> Effect UnitA component will update function.
#ComponentDidUpdate Source
type ComponentDidUpdate props state snapshot = props -> state -> snapshot -> Effect UnitA component did update function.
#ComponentWillUnmount Source
type ComponentWillUnmount = Effect UnitA component will unmount effect.
#ReactClass Source
data ReactClass :: Type -> TypeReact class for components.
#ReactComponentSpec Source
class ReactComponentSpec props state snapshot (given :: Row Type) (spec :: Row Type) #ReactPureComponentSpec Source
class ReactPureComponentSpec props state snapshot (given :: Row Type) (spec :: Row Type) #component Source
component :: forall spec given snapshot state props. ReactComponentSpec (Record props) (Record state) snapshot given spec => String -> ReactClassConstructor (Record props) (Record state) given -> ReactClass (Record props)Creates a ReactClass`` inherited fromReact.Component`.
#componentWithDerivedState Source
componentWithDerivedState :: forall spec given snapshot state props. ReactComponentSpec (Record props) (Record state) snapshot given spec => String -> (Record props -> Record state -> Record state) -> ReactClassConstructor (Record props) (Record state) given -> ReactClass (Record props)Like component, but takes a getDerivedStateFromProps handler.
#pureComponent Source
pureComponent :: forall spec given snapshot state props. ReactPureComponentSpec (Record props) (Record state) snapshot given spec => String -> ReactClassConstructor (Record props) (Record state) given -> ReactClass (Record props)Creates a ReactClass`` inherited fromReact.PureComponent`.
#pureComponentWithDerivedState Source
pureComponentWithDerivedState :: forall spec given snapshot state props. ReactPureComponentSpec (Record props) (Record state) snapshot given spec => String -> (Record props -> Record state -> Record state) -> ReactClassConstructor (Record props) (Record state) given -> ReactClass (Record props)Like pureComponent, but takes a getDerivedStateFromProps handler.
#statelessComponent Source
statelessComponent :: forall props. (Record props -> ReactElement) -> ReactClass (Record props)#modifyState Source
modifyState :: forall state props. ReactThis props state -> (state -> state) -> Effect UnitUpdate component state given a modification function.
#forceUpdate Source
forceUpdate :: forall state props. ReactThis props state -> Effect UnitForce render of a react component.
#createElement Source
createElement :: forall given required. ReactPropFields required given => ReactClass { children :: Children | required } -> Record given -> Array ReactElement -> ReactElementCreate an element from a React class spreading the children array. Used when the children are known up front.
#unsafeCreateElement Source
unsafeCreateElement :: forall props. ReactClass { children :: Children | props } -> Record props -> Array ReactElement -> ReactElementAn unsafe version of createElement which does not enforce the reserved
properties "key" and "ref".
#createElementDynamic Source
createElementDynamic :: forall given required. ReactPropFields required given => ReactClass { children :: Children | required } -> Record given -> Array ReactElement -> ReactElementCreate an element from a React class passing the children array. Used for a dynamic array of children.
#unsafeCreateElementDynamic Source
unsafeCreateElementDynamic :: forall props. ReactClass { children :: Children | props } -> Record props -> Array ReactElement -> ReactElementAn unsafe version of createElementDynamic which does not enforce the reserved
properties "key" and "ref".
#createLeafElement Source
createLeafElement :: forall given required. ReactPropFields required given => ReactClass (Record required) -> Record given -> ReactElementCreate an element from a React class that does not require children.
#unsafeCreateLeafElement Source
unsafeCreateLeafElement :: forall props. ReactClass props -> props -> ReactElementAn unsafe version of createLeafElement which does not enforce the reserved
properties "key" and "ref".
#createElementTagName Source
createElementTagName :: forall props. TagName -> props -> Array ReactElement -> ReactElementCreate an element from a tag name spreading the children array. Used when the children are known up front.
#createElementTagNameDynamic Source
createElementTagNameDynamic :: forall props. TagName -> props -> Array ReactElement -> ReactElementCreate an element from a tag name passing the children array. Used for a dynamic array of children.
#SyntheticEventHandler Source
type SyntheticEventHandler event = EffectFn1 event Unit#Children Source
#childrenToArray Source
childrenToArray :: Children -> Array ReactElementInternal conversion function from children elements to an array of React elements
#childrenCount Source
childrenCount :: Children -> IntReturns the number of children.
#IsReactElement Source
#fragmentWithKey Source
fragmentWithKey :: String -> Array ReactElement -> ReactElementCreates a keyed fragment.
#Context Source
type Context a = { consumer :: ContextConsumer a, provider :: ContextProvider a }#ContextProvider Source
type ContextProvider a = ReactClass { children :: Children, value :: a }#ContextConsumer Source
type ContextConsumer a = ReactClass { children :: a -> ReactElement }#createContext Source
createContext :: forall a. a -> Context aCreate a new context provider/consumer pair given a default value.