
Security News
Safari 18.4 Ships 3 New JavaScript Features from the TC39 Pipeline
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
@hwdtech/react-signalr
Advanced tools
A set of helper components to work with SignalR hub connections & streams
This package exposes a set of utility components to work with SignalR hub connections and streams. Storybook demo
npm install @hwdtech/react-signalr
Managing connections ins't easy, you have always to keep in mind when they should be closed, to prevent memory leaks and unnecessary resource allocations. React components on the other hand provides multiple ways to handle resources initialization and disposal: lifecycle hooks: componentDidMount
and componentWillUnmount
or new hooks API. These can be used to open and close underlying connections, so they can be used as disposable wrapper.
The same is true for Hub streams, since they are observables, so in order to get any value from them one have to subscribe. But subscriptions also have to be disposed.
Coming soon, meanwhile you can hack into the examples:
This library utilizes component lifecycle hooks to manage connections and provides a declarative way to open/close hub connections and uses React context API
import { HubConnectionBuilder } from "@aspnet/signalr";
import { createConnectionContext } from "@hwdtech/react-signalr";
const createHubConnection = () => {
/* build a connection instance here, for example */
return new HubConnectionBuilder().withUrl("/chathub").build();
};
const { Provider, Consumer } = createConnectionContext(createHubConnection);
/* later in the code */
<Provider>
<div>
{/* somewhere deep in the application tree */}
<Consumer>
{({ connection, connectionError }) => {
if (connection) return "Connected!";
if (connectionError) return "Connection failed!";
return "Connecting...";
}}
</Consumer>
</div>
</Provider>;
When Provider
component is mounted it attempts to open a connection the createHubConnection
factory return. When Provider
component is unmounted it attempt to close the connection it opened previously.
This library uses the same approach to dispose subscription as for closing hub connections.
const { Provider, Consumer, createStreamSubscriber } = createConnectionContext(createHubConnection);
/**
* createStreamSubscriber will return a react component which props will be mapped to a stream arguments.
* In other words, under the hood the following code will be invoked to setup a stream:
* <code>
* connection.stream('ObservableCounter', props.count, props.interval);
* </code>
*/
const CounterSubscriber = createStreamSubscriber(
'ObservableCounter', // hub stream name
props => [props.count, props.interval] // mapper function from component props to hub stream arguments
);
/* later in the code */
<Provider>
<div>
{/* somewhere deep in the application tree */}
<CounterSubscriber count={10} interval={1}>
{({ value, error, done }) => {
if (done) return 'Done!';
if (error) return error.message;
if (value != null) return value;
return Connecting...
}}
</CounterSubscriber>
</div>
</Provider>;
When CounterSubscriber
component is mounted it attempts to subscribe to a hub stream. The subscription will pass observable value to a children function. When CounterSubscriber
is unmounted it attempts to dispose active subscription. Also note that CounterSubscriber
don't need Consumer
wrapper, since it uses it under the hood.
Since the CounterSubscriber
takes children function as property you can create your own component that will handle hub stream side effects, like in the example
FAQs
A set of helper components to work with SignalR hub connections & streams
The npm package @hwdtech/react-signalr receives a total of 0 weekly downloads. As such, @hwdtech/react-signalr popularity was classified as not popular.
We found that @hwdtech/react-signalr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.
Research
Security News
The Socket Research Team investigates a malicious Python package that enables automated credit card fraud on WooCommerce stores by abusing real checkout and payment flows.
Security News
Python has adopted a standardized lock file format to improve reproducibility, security, and tool interoperability across the packaging ecosystem.