Layer React is the glue between your React App and the Layer Javascript SDK.
LayerReact provides an interface to subscribe to both local and remote changes in message and conversation objects.
connectQuery
creates a higher order component from WrappedComponent
that receives updates to its props whenever the queries built in getQueries
return results.
If you were to compare LayerReact and the Layer JS SDK to Flux. Queries act as Flux stores, Layer.Client
acts as a dispatcher, and Layer JS SDK API methods act as actions.
Queries allow you to subscribe to changes in the Layer.Client
's data. All Layer JS SDK API methods are asynchronous and optimistic updates are recieved by subscribing queries.
For example: conversation.createMessage("test").send()
will trigger an optimistic update in any query that subscribes to that conversation's messages. WrappedComponent
will immediately receive an update to its props. When the server responds with the created message, it's id will be set and the WrappedComponent
will receive another update to its props.
Injects the Layer client into its child component hierarchy allowing connectQuery
and connectTypingIndicator
to reference the Layer client. Using React's getChildContext()
method, this component insures that every subcomponent at any depth of its subtree will be able to access the client using this.context.client
.
It is not required to use LayerProvider as part of a layer-react project; this is primarily a convenience method to simplify propagating the Client to multiple components that depend upon that property.
client
: (Layer Client): An instance of the Layer client.children
: (ReactElement)
import ReactDOM from 'react-dom';
import { LayerProvider } from 'layer-react';
import Messenger from './components/Messenger';
ReactDOM.render(
<LayerProvider client={client}>
<Messenger/>
</LayerProvider>
);
The Messenger component and all of its children will now have a client property.
The connectQuery module creates a Wrapped Component; it takes in a specification for the Queries that the Wrapped Component will need, and passes the Query data as properties into the Wrapped Component.
connectQuery([getInitialQueryParams]: function | object, getQueries: function)(WrappedComponent: ReactClass): ReactClass
Initialize query params for the query container inside this function. Return an object with the initial query parameter key value pairs. If you do not require props from the container's parent component, you may pass an object to connectQuery
instead.
This method is called every time the container's props or queryParams change. Return an object of the following form to map query results to props which will then be passed into the WrappedComponent
.
{
propName: QueryBuilder
}
import { connectQuery } from 'layer-react';
function getInitialQueryParams (props) {
return {
paginationWindow: props.startingPaginationWindow || 100
};
}
function getQueries(props, queryParams) {
return {
conversations: QueryBuilder.conversations().paginationWindow(queryParams.paginationWindow)
};
}
var ConversationListContainer = connectQuery(getInitialQueryParams, getQueries)(ConversationList);
...
render() {
return <ConversationListContainer client={client}/>;
}
import { connectQuery } from 'layer-react';
@connectQuery(getInitialQueryParams, getQueries)
class ConversationList extends Component {
render() {
...
}
}
...
render() {
return <ConversationList client={client}/>;
}
The properties passed to WrappedComponent are:
-
this.props[<propName>]
The results of each query will be mapped according to the object returned by the query function in the component's QueryContainer. -
this.props.query.queryParams
queryParams
contains the set of parameters that was used to fetch the current set of props. Similar to React'sthis.state
. -
this.props.query.setQueryParams
setQueryParams(nextQueryParams: function|object, [function callback])
Performs a shallow merge of nextQueryParams into current queryParams. This is used to update the query parameters used in the component's QueryContainer. The API for this method matches React's setState.
class ConversationList extends React.Component {
onLoadMoreMessages = () => {
this.props.query.setQueryParams({
paginationWindow: this.props.query.queryParams.paginationWindow + 100
});
}
renderConversationItem(conversation) {
return <li key={conversation.id}>{conversation.id}</li>
}
render() {
render (
<InfiniteScrollList className='conversation-list' onLoadMore={this.onLoadMoreMessages}>
{this.props.conversations.map(this.renderConversationItem)}
</InfiniteScrollList>
);
}
}
<ConversationList
client={client}
startingPaginationWindow={200}/>
The createTypingIndicator module creates a Wrapped Component; it takes in a Client (typically via the LayerProvider) and a conversationId (the Conversation the user is currently viewing) and adds typing
and paused
properties to the Wrapped Component allowing for the component to render a typing indicator.
connectTypingIndicator()(WrappedComponent: ReactClass): ReactClass
import { connectTypingIndicator } from 'layer-react';
var TypingIndicatorContainer = connectTypingIndicator(TypingIndicator);
import { connectTypingIndicator } from 'layer-react';
@connectTypingIndicator()
class MyTypingIndicator extends Component {
render() {
...
}
}
The properties passed to WrappedComponent are:
-
this.props.typing
: An array of user ids that represents who is currently typing. -
this.props.paused
: An array of user ids that represents who have currently paused typing.
import React, { Component, PropTypes } from 'react';
import { connectTypingIndicator } from 'layer-react';
class TypingIndicator extends Component {
getTypingText(users, typingIds) {
const userNames = typingIds.map((id) => users[id].first_name).join(', ');
if (typingIds.length == 1) {
return userNames + ' is typing.'
} else if (typingIds.length > 1) {
return userNames + ' are typing.'
} else {
return '';
}
}
render() {
const typingText = this.getTypingText(this.props.users, this.props.typing);
return (
<div className='typing-indicator-panel'>{typingText}</div>
);
}
}
export default connectTypingIndicator(TypingIndicator);
Layer React's API inspiration comes from Dan Abramov's React Redux library.