123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- import { pluck, distinctUntilChanged } from "rxjs/operators"
- import { Client as MQTTClient } from "paho-mqtt"
- import DispatchingStore, { defineDispatchers } from "./DispatchingStore"
- import {
- HoppRealtimeLog,
- HoppRealtimeLogLine,
- } from "~/helpers/types/HoppRealtimeLog"
- type HoppMQTTRequest = {
- endpoint: string
- }
- type HoppMQTTSession = {
- request: HoppMQTTRequest
- connectingState: boolean
- connectionState: boolean
- subscriptionState: boolean
- log: HoppRealtimeLog
- socket: MQTTClient | null
- }
- const defaultMQTTRequest: HoppMQTTRequest = {
- endpoint: "wss://test.mosquitto.org:8081",
- }
- const defaultMQTTSession: HoppMQTTSession = {
- request: defaultMQTTRequest,
- connectionState: false,
- connectingState: false,
- subscriptionState: false,
- socket: null,
- log: [],
- }
- const dispatchers = defineDispatchers({
- setRequest(
- _: HoppMQTTSession,
- { newRequest }: { newRequest: HoppMQTTRequest }
- ) {
- return {
- request: newRequest,
- }
- },
- setEndpoint(_: HoppMQTTSession, { newEndpoint }: { newEndpoint: string }) {
- return {
- request: {
- endpoint: newEndpoint,
- },
- }
- },
- setSocket(_: HoppMQTTSession, { socket }: { socket: MQTTClient }) {
- return {
- socket,
- }
- },
- setConnectionState(_: HoppMQTTSession, { state }: { state: boolean }) {
- return {
- connectionState: state,
- }
- },
- setConnectingState(_: HoppMQTTSession, { state }: { state: boolean }) {
- return {
- connectingState: state,
- }
- },
- setSubscriptionState(_: HoppMQTTSession, { state }: { state: boolean }) {
- return {
- subscriptionState: state,
- }
- },
- setLog(_: HoppMQTTSession, { log }: { log: HoppRealtimeLog }) {
- return {
- log,
- }
- },
- addLogLine(curr: HoppMQTTSession, { line }: { line: HoppRealtimeLogLine }) {
- return {
- log: [...curr.log, line],
- }
- },
- })
- const MQTTSessionStore = new DispatchingStore(defaultMQTTSession, dispatchers)
- export function setMQTTRequest(newRequest?: HoppMQTTRequest) {
- MQTTSessionStore.dispatch({
- dispatcher: "setRequest",
- payload: {
- newRequest: newRequest ?? defaultMQTTRequest,
- },
- })
- }
- export function setMQTTEndpoint(newEndpoint: string) {
- MQTTSessionStore.dispatch({
- dispatcher: "setEndpoint",
- payload: {
- newEndpoint,
- },
- })
- }
- export function setMQTTSocket(socket: MQTTClient) {
- MQTTSessionStore.dispatch({
- dispatcher: "setSocket",
- payload: {
- socket,
- },
- })
- }
- export function setMQTTConnectionState(state: boolean) {
- MQTTSessionStore.dispatch({
- dispatcher: "setConnectionState",
- payload: {
- state,
- },
- })
- }
- export function setMQTTConnectingState(state: boolean) {
- MQTTSessionStore.dispatch({
- dispatcher: "setConnectingState",
- payload: {
- state,
- },
- })
- }
- export function setMQTTSubscriptionState(state: boolean) {
- MQTTSessionStore.dispatch({
- dispatcher: "setSubscriptionState",
- payload: {
- state,
- },
- })
- }
- export function setMQTTLog(log: HoppRealtimeLog) {
- MQTTSessionStore.dispatch({
- dispatcher: "setLog",
- payload: {
- log,
- },
- })
- }
- export function addMQTTLogLine(line: HoppRealtimeLogLine) {
- MQTTSessionStore.dispatch({
- dispatcher: "addLogLine",
- payload: {
- line,
- },
- })
- }
- export const MQTTRequest$ = MQTTSessionStore.subject$.pipe(
- pluck("request"),
- distinctUntilChanged()
- )
- export const MQTTEndpoint$ = MQTTSessionStore.subject$.pipe(
- pluck("request", "endpoint"),
- distinctUntilChanged()
- )
- export const MQTTConnectingState$ = MQTTSessionStore.subject$.pipe(
- pluck("connectingState"),
- distinctUntilChanged()
- )
- export const MQTTConnectionState$ = MQTTSessionStore.subject$.pipe(
- pluck("connectionState"),
- distinctUntilChanged()
- )
- export const MQTTSubscriptionState$ = MQTTSessionStore.subject$.pipe(
- pluck("subscriptionState"),
- distinctUntilChanged()
- )
- export const MQTTSocket$ = MQTTSessionStore.subject$.pipe(
- pluck("socket"),
- distinctUntilChanged()
- )
- export const MQTTLog$ = MQTTSessionStore.subject$.pipe(
- pluck("log"),
- distinctUntilChanged()
- )
|