Wes Hatch

front-end developer

Using Schemas

tl;dr Ideally, top-level components (page / wrapper / what-have-you) should be thin and lightweight. Schemas are one trick to help minimize code complexity, allowing one to quickly understand the organization and function of a page.

What follows is a novel way to dynamically generate large static objects at runtime. It’s geared towards Vue, but the ideas can be leveraged agnostically with any framework + store pattern.

The why: managing complexity

We have a lot of complexity in our client-side applications these days. Luckily, we have a number of top-notch frameworks to help us manage it. However, while these frameworks are great for managing architectural complexity, they take somewhat of an un-opinionated stance on how we leverage the tools on offer; how we manage state, what we put into a component, and how we abstract functionality away are left to the devices of the developer.

While JS frameworks encourage the organization of logical concerns through the creation of child-components, when it comes to data structures the choices become a little murkier. Without some guardrails in your app, though, you’ll likely bear witness to spaghetti code and structures finding their way into the codebase. One approach for managing code complexity that has worked extremely well for me is schema-ifying all the things.

The what: some guardrails

So, what is a schema (in this context), exactly? Essentially, a large-ish object or data structure that is used by the app at runtime. It’s not stateful, yet in some situations it might be dynamically instantiated at page-load using the state. Candidates include ancillary data, set-up data, or configuration structures that define how the application should behave at runtime. Once created, it’s essentially static, though.

A few specific examples that we’ll look at in turn, are:

The how: some code

As the objective is to clean up our components and simplify the organization of our app, we can keep schemas in a folder next to where they’re used. I use the following folder structure:

pages/
├── MyPage/
│ ├── schemas/
│ │ ├── filters.js
│ │ ├── validation.js
│ │ └── sorting.js
│ ├── mypage.js
│ └── mypage.css
├── ...

As for the schema itself, the basic idea is simple: a function that returns an object on demand. A simple sorting schema would look like:

export function sortSchema() {
return Object.freeze({
asc: { sortBy: 'name', label: 'ascending' },
desc: { sortBy: 'name', label: 'descending', sortDesc: true },
// ...
Note
  • we use Object.freeze to ensure that the object remains static
  • If we wanted we could also apply other transformations here, such as internationalizing the copy
Tip If you use TypeScript, you might do something like:
import { ISchemaItem } from '@/types';
export function exampleSchema(): Readonly<ISchemaItem[]> {
  // ...

This works fine if the structure is always known and deterministic, while also allowing for minor adjustments to the fields if needed. However, sometimes the fields or nested data themselves are determined from the current application state. In these cases, we can inject the state and use it to derive the required structure.

// schema.js
import store from '@/store';

export function exampleSchema() {
const { user } = store.state;

return Object.freeze({
// do something with the `state`, here
});
}
Note
  • the exampleSchema function receives state upon instantiation
  • we can then generate a dynamic schema structure as needed. A detailed example is shown below

Then, we leverage the schema-function in a component. In Vue, we can simply add it as a computed function:

// myPage.vue
import { exampleSchema } from '@/path/to/schema';

export default {
computed: {
exampleSchema,
// ...
Note
  • because it's a function that depends on state, we import it under computed
  • be aware: using Object.freeze will make Vue skip "reactifying" its contents

Let’s see a few concrete examples.

Sorting and Filtering

The ability to sort or filter on any moderately complex data-set, by specific fields or nested data, is a core piece of functionality in an app. If we do it client-side, the sorting criteria and filtering options must correspond to the fields on hand. These are usually different for each record.

Let’s generate a filtering schema for a “company page”. Each company might have unique licenses or sales reps:

import store from '@/store';

export function filterSchema() {
const { company } = store.state;

return Object.freeze([
{
label: 'Licenses',
filterBy: 'licenseId',
type: 'select',
attributes: {
multiple: true,
options:
company.licenses.map((l) => ({
...l,
name: `${l.name} (${l.id})`,
})),
},
}
}, {
label: 'Sales Rep',
filterBy: 'salesRepId',
type: 'select',
fn: (selectedfilters, items) => {
return !!selectedfilters.filter((f) => items.includes(f)).length;
},
attributes: {
multiple: true,
options: company.salesReps
},
}
]);
Note
  • this function generates options and filtering logic to be consumed by a set of filters
  • we may filter by "licenseId" and "salesRepId" fields
  • the filter options are generated dynamically from company state data: company.license and company.salesRep are arrays of objects (Not shown is the structure of each, though)
  • the type of the filter is defined as a <select> in both cases
  • we define attributes for the actual filter component (<select>)
  • there is a custom fn filter function in the second item

Validation

Client-side validation and, specifically, form validation often uses a schema-based approach to define the validation rules on a page. There are a many different approaches, here.

Borrowing from a popular validation library, an example validation schema might look something like:

export const schema = {
username: {
required,
minLength: minLength(3),
},
email: {
required,
email,
},
password: {
required,
},

I will talk more about this in a future post


* Note this is a liberal defintion of the word schema. Not the application state directly, but a blue-print from which a lot of the data is defined and hydrated at runtime.