npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

layer-react

v1.0.0

Published

Layer React is the glue between your React App and the Layer WebSDK.

Downloads

10

Readme

Layer React

npm version

This library is the glue between your React App and the Layer WebSDK.

Disclaimer

This project is in Beta, no claims are made of the production-readiness of this project. We encourage you to provide feedback and pull requests to this project. Please feel free to use Github's Issues to submit

  • Bug reports
  • Compliments
  • Proposals adjustments to the architecture that are more consistent with the philosophy of a Flux architecture or that work with a broader range of Flux implementations.

Our emphasis as an organization has not been on mastery of React architectures, feedback is very much appreciated.

Overview

It provides an interface to subscribe to both local and remote changes in any Queryable Layer data.

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 this and the Layer WebSDK to Flux: Queries act as Flux stores, Layer.Client acts as a dispatcher, and Layer WebSDK methods act as actions.

Queries allow you to subscribe to changes in the Layer.Client's data. All Layer WebSDK methods are asynchronous and optimistic updates are received 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 (defined below) 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.

Installation

npm install --save layer-websdk layer-react

API

<LayerReact.LayerProvider client/>

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.

Props

  • client: (Layer Client): An instance of the Layer client.
  • children: (ReactElement)

Usage

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.

connectQuery

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
getInitialQueryParams(props: object): object

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.

getQueries(props: object, queryParams: object): object

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
}

Usage

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}/>;
}

Usage as ES6 Decorator

import { connectQuery } from 'layer-react';

@connectQuery(getInitialQueryParams, getQueries)
class ConversationList extends Component {
  render() {
    ...
  }
}

...

render() {
  return <ConversationList client={client}/>;
}

WrappedComponent Props

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's this.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.

Usage

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}/>

createTypingIndicator

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

Usage

import { connectTypingIndicator } from 'layer-react';

var TypingIndicatorContainer = connectTypingIndicator()(TypingIndicator);

Usage as ES6 Decorator

import { connectTypingIndicator } from 'layer-react';

@connectTypingIndicator()
class MyTypingIndicator extends Component {
  render() {
    ...
  }
}

WrappedComponent Props

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.

Usage

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);

Credits

Layer React's API inspiration comes from Dan Abramov's React Redux library.

Contributing

Layer React is an Open Source project maintained by Layer, inc. Feedback and contributions are always welcome and the maintainers try to process patches as quickly as possible. Feel free to open up a Pull Request or Issue on Github.

Building from Source

In order to build and test your code run the following command:

npm run build

Code style

We enforce strict code style rules that conform to Airbnb Style Guide. Make sure you run eslint before submitting a Pull Request:

npm run lint

Contact

Layer React was developed in San Francisco by the Layer team. If you have any technical questions or concerns about this project feel free to reach out to engineers responsible for the development: