The React client for @sphinx-software/station
npm install --save @sphinx-software/antennaTo start using this library, you'll need initialize a firebase application at first.
import React from 'react'
import firebase from 'firebase/app'
import 'firebase/firestore'
import 'firebase/auth'
const firebaseApp = firebase.initializeApp({})Now, let's create a firestore transport
import { firestore } from '@sphinx-software/antenna'
///
export default firestore({
firebase: firebaseApp,
handshake: async () => {
// Resolve to firebase custom token here.
// Usually, you'll make an API call.
return customToken
},
authorize: async (channel) => {
// Request subscription permission to the server
}
})Wrap your React application by AntennaProvider component
import { AntennaProvider } from '@sphinx-software/antenna'
import transport from './transport'
/// App component
const App = () => {
return (
<AntennaProvider
transport={transport}
fallback={<div>Signaling ...</div>}
>
{/* Your application code */}
</AntennaProvider>
)
}Now, you are ready to receive the signal 📡
import { useAntenna } from '@sphinx-software/antenna'
import React, { useEffect, useState } from 'react'
export default () => {
const antenna = useAntenna()
const [lastMessage, setLastMessage] = useState(null)
useEffect(() => {
return antenna.subscribe('channel-name', (message) => setLastMessage(message))
}, [antenna])
return (
<div>
{JSON.stringify(lastMessage)}
</div>
)
}Components using the useAntenna hook will be suspended while the antenna is handshaking to the server.
Remember to wrap it with Suspense component to prevent errors.
In real world application, you will have to manage rather complex state than the above demo.
This is where the Subscription component shining.
Subscription component can automatically subscribe & unsubscribe to a channel - thanks to useEffect hook.
Each subscription will have its own state, and can update the state according to the message it received.
You have complete control over that state by providing a reducer to it.
// chatReducer.js
export default (state, action) => {
switch (action.type) {
// ...
// When transport receives a message, it will dispatch an action with this format: { type: 'the message type', payload: { ... the message payload }}
case 'chat.message': {
return {
...state,
unreads: [...state.unreads, action.payload],
messages: [...state.messages, action.payload]
}
}
case 'chat.join': {
return {
...state,
members: [...state.members, action.payload]
}
}
case 'chat.leave': {
return {
...state,
members: state.members.filter(member => member.id !== action.payload.id)
}
}
// You can certainly define your custom action type
case 'chat.markAsRead': {
return {
...state,
unreads: state.unreads.filter(message => message.id !== action.messageId)
}
}
default: return state
}
}// Chat.js
import React, { Suspense } from 'react'
import { Subscription } from '@sphinx-software/antenna'
import chatReducer from './chatReducer'
const INITIAL_CHAT_STATE = { unreads: [], members: [], messages: [] }
export default () => {
return (
<Suspense fallback='...'>
<Subscription channel='channel_chat' initialState={INITIAL_CHAT_STATE} reducer={chatReducer}>
{/* TODO */}
</Subscription>
</Suspense>
)
}Subscription component will be suspended while the antenna is handshaking to the server.
Remember to wrap it with Suspense component to prevent errors.
You can use the useSubscription hook to interact with the subscription state
import React from 'react'
import { useSubscription } from '@sphinx-software/antenna'
const Messages = () => {
const [ state, dispatch ] = useSubscription()
return (
<ul>
{
state.messages.map(message => {
return (
<li
onClick={() => dispatch({ type: 'chat.markAsRead', messageId: message.id})}
key={message.id}>{message.content}
</li>
)
})
}
</ul>
)
}Then place your Messages component into the Subscription context:
// Chat.js
import React, { Suspense } from 'react'
import { Subscription } from '@sphinx-software/antenna'
import chatReducer from './chatReducer'
import Messages from './Messages'
const INITIAL_CHAT_STATE = { unreads: [], members: [], messages: [] }
export default () => {
return (
<Suspense fallback='...'>
<Subscription channel='channel_chat' initialState={INITIAL_CHAT_STATE} reducer={chatReducer}>
{/* Place your Messages component here */}
<Messages/>
</Subscription>
</Suspense>
)
}You also can use the Subscriber HoC to archive the same functionality
const Messages = ({ state, dispatch }) => {
return (
<ul>
{
state.messages.map(message => {
return (
<li
onClick={() => dispatch({ type: 'chat.markAsRead', messageId: message.id})}
key={message.id}>{message.content}
</li>
)
})
}
</ul>
)
}// Chat.js
import React, { Suspense } from 'react'
import { Subscription, Subscriber } from '@sphinx-software/antenna'
import chatReducer from './chatReducer'
import Messages from './Messages'
const INITIAL_CHAT_STATE = { unreads: [], members: [], messages: [] }
export default () => {
return (
<Suspense fallback='...'>
<Subscription channel='channel_chat' initialState={INITIAL_CHAT_STATE} reducer={chatReducer}>
{/* Place your Messages component here */}
<Subscriber component={Messages} />
</Subscription>
</Suspense>
)
}To subscribe to a private channel, you can pass the isPrivate channel prop to the Subscription component.
// ....
<Subscription isPrivate channel='channel_chat' initialState={INITIAL_CHAT_STATE} reducer={chatReducer}>
{/* ... */}
</Subscription>Under the hood, if the subscription is subscribing to the private channel, antenna will
trigger the authorize() callback that you have passed from the config.
While authorization process is running, the Subscription component will be suspended.
💡
Since
Subscriptionhas its state, you can consider it as a boundary of the channel data (the Subscription state). Its child component can and should be well aware about such data.You can add as many
Subscriberas you want inside aSubscription.You can have multiple
Subscriptioncomponents sharing the same channel. All of them will receive messages from the channel. This approach is very useful when you want to have various ways of presenting the channel data.
That's all! Happy signaling ❤️
MIT © monkey-programmer
