Skip to content

A browser-based interface for the SpaceTraders API, built with React and TypeScript. Wayfarer is intended as a living reference for a number of key patterns and technologies.

License

Notifications You must be signed in to change notification settings

benweier/wayfarer

Repository files navigation

Wayfarer is a browser-based interface for v2 of the SpaceTraders API. Just as the API itself is a work-in-progress under active development, Wayfarer is a work-in-progress intended for demonstration purposes of a number of key patterns and technologies.

Features

Current implementation state of SpaceTraders features:

  • Registration and login/logout
  • View System and Waypoint lists
  • View System and Waypoint details
  • Buy and Sell Cargo at Waypoint Markets
  • View Fleet list
  • View Ship details
    • cargo / loadout / fuel / crew / navigation state
  • Dock/Orbit at Waypoints
  • Navigate Ship between Waypoints in a System
  • Warp Ship to Waypoints in other Systems
  • Jump Ship to other Systems
  • Refuel Ship
  • Survey Waypoints and Extract resources
  • Refine raw materials
  • Jettison cargo

Tech

Wayfarer depends on just a handful of open-source projects and is, at its core, a standard client-side rendered React application built with Vite. It uses TanStack Router for routing, TanStack Query for data fetching, TailwindCSS for styling, Zustand and Jotai for state management, and React Hook Form for form handling. It is tested with Vitest and deployed to Cloudflare Pages.

Obviously there are more libraries in use than just those above, but are generally used to flesh out UI functionality or improve the development experience than form the core "architecture" (this includes Tailwind plugins, icons, validation, headless UI components, etc).

Primary Goal

Building on top of these libraries, is an obsessively extreme use of Suspense and Concurrent features of React. It lifts knowledge, inspiration, and examples from Alan Alickovic's Bulletproof React, Dominic Dorfmeister's Practical React Query, Tyler McGinnis' Complete Guide to React Router, and Kent C. Dodds.

A non-meta framework

Wayfarer is not a framework, a library, or boilerplate. Instead, it embraces and leans into the core tenet of React:

A JavaScript library for building User Interfaces

With this in mind, Wayfarer's focus is on building a UI for the SpaceTraders API using React and the ecosystem of tools that have grown around it, and not a framework that abstracts away the underlying technologies. This is not to say that frameworks are bad, but rather that they are not the only way to build a React application. Next, Gatsby, Remix, et al. have (re)popularised server-side rendering and static generation of late; built and marketed as "batteries included" meta-frameworks (or at the very least "batteries npm-installable") for solving the specific challenges of SSR/SSG. This project, however, intentionally presents an opposing stance where React is (still/also) a client-side rendering library and remains a perfectly suitable approach.

Wayfarer is not built around documentation or theoretical app tutorials that can be worked through in a weekend. Preferring a concrete, implementation-first approach over isolated, hypothetical code snippets, or arbitrarily contrived "demo" sandboxes that skip critical tooling or standards for the sake of simplicity. It is a collection of real-world patterns/practices I have come to rely on that can be applied to projects of any size, and is largely a distillation of my own experiences and opinions on how to build a performant, responsive, and accessible React application.

Leveraging some of the best tools of the ecosystem from the ground up, the patterns expressed within may serve as a reference regardless of Wayfarers' actual state of "feature-completeness" with the SpaceTraders API. Hopefully, it is a useful resource for others who are interested in learning about these features and how to utilise them in their own projects.

Architecture

Wayfarer's opinionated architecture is intended to be flexible and maintainable, whether or not I have succeeded probably remains to be proven. These conventions aren't set in stone and - like any application - can be structured in whatever way makes the most sense. However, there are a few guiding principles that should be followed (until they aren't):

Composition over Inheritance and Inversion of Control

Wayfarer's most powerful features are built on top of React's composition model and general inversion of control patterns.

Path Routes are (almost always) lazy-loaded

Routes are considered "pages" in a traditional sense, but they are not necessarily 1:1 with a URL. Route elements do little more than orchestrate the components inside a layout, such as passing around dynamic path segments. The page features are responsible for fetching data/consuming prefetched data, handling errors, and rendering fallback states. This is where Suspense and Error Boundaries are used to their fullest extent.

Routes may have a loader prop that initiates data prefetching

A loader in TanStack Router is able to return a Promise that resolves to some data, or nothing at all. In Wayfarer, while it could use the useLoaderData hook, the loader doesn't handle caching or deduplication of external requests so it is used simply to initiate prefetching with TanStack Query's ensureQueryData. This helps to keep the interface feeling snappy and responsive during route transitions (see perceived performance),

TanStack Query is always used to fetch/cache/mutate server state

Although loaders/actions can achieve similar results, TanStack Query is such an amazing library that I have a hard time letting it go. It is used for all server state and is the primary source of truth for the application. It enables Optimistic Updates, makes Mutations and Query Invalidation a snap, and caches data for reasonable amounts of time.

Suspense and Error Boundaries are always used to handle fallback/error states

About

A browser-based interface for the SpaceTraders API, built with React and TypeScript. Wayfarer is intended as a living reference for a number of key patterns and technologies.

Resources

License

Stars

Watchers

Forks

Languages