How to Not Build a React App (Part IIII)

(Player) Handlers

Back to: Part I

Orientation

In the previous post I said there would be three main pages:

  1. The player.
  2. The queue.
  3. The library.

We only got to talking about the state for the player. This post should be simpler: I’m only going to implement the handler’s needed. Recall, our “handlers” are roughly an action builder and a reducer, for those familiar with Redux. They handle events in the browser, and update the state.

Next post, I’ll deal with the websocket, then the view for the player. I hope to get the player working before I move onto the queue and the library.

Some Renamings

From a domain perspective I’m going to rename MpdCommand to UserIntent. What that is capturing is what the user want’s to do, and it’s an implementation detail that they happen to map onto mpd commands. I’m avoiding the term “Action” since Redux uses that for something similar. I also hopefully made things more clear by using the term “player”.

Connection States.

The way I set up the state management I need an initial state before I can create a handler. I may go back and change this later, but I imagine I want some states involving the websocket connection. Something like “Disconnected”, “Connecting”, “Connected”. Where the state we talked about in the last post is really only for when we are connected. We also have a BaseState for data available regardless of the websocket status.

Also since we are using immutable.js note that we have Records for objects we want to change and Readonly otherwise.

export type State = ConnectedState | DisconnectedState | ConnectingState;

type BaseStateProps = {
  player?: PlayerStatus;
  pendingIntents: List<UserIntent>;
};

export type ConnectedState = RecordOf<
  BaseStateProps & {
    websocketStatus: "connected";
    sentIntents: List<UserIntent>;
    responseData: string;
  }
>;

type DisconnectedStateProps = BaseStateProps & {
  websocketStatus: "disconnected";
  failure?: RecordOf<{ time: Date; count: number }>;
};
export type DisconnectedState = RecordOf<DisconnectedStateProps>;

export type ConnectingState = RecordOf<
  BaseStateProps & {
    websocketStatus: "connecting";
  }
>;

8a3a531

The handlers

Apologies for number of higher order functions, but there’s a clear pattern where we want a handler that takes some data, produces a UserIntent and pushes that on the pending intents queue. This is:

type Handler<T extends unknown[]> = (...t: T) => void;
export const makeIntentHandler = <T extends unknown[]>(
  makeIntent: (...args: T) => UserIntent
): Handler<T> =>
  createHandler((s, ...args) => {
    const intent = makeIntent(...args);
    // We need the switch to make typescript happy
    switch (s.websocketStatus) {
      case "connected":
        return s.update("pendingIntents", (intents) => intents.push(intent));
      case "disconnected":
        return s.update("pendingIntents", (intents) => intents.push(intent));
      case "connecting":
        return s.update("pendingIntents", (intents) => intents.push(intent));
    }
  });

8a3a531

We can then make handlers for all the events we expect to handle from the UI:


export const pause = makeIntentHandler(() => ({ type: "pause" }));
export const stop = makeIntentHandler(() => ({ type: "stop" }));
export const nextTrack = makeIntentHandler(() => ({ type: "next_track" }));
export const previousTrack = makeIntentHandler(() => ({
  type: "previous_track",
}));
export const setVolume = makeIntentHandler((volume: number) => ({
  type: "set_volume",
  volume,
}));

8a3a531

Next: Part V (Better Record Types)