gatsby-theme-codex
v0.3.0
Published
A Gatsby theme to bootstrap your own digital codex.
Downloads
6
Maintainers
Readme
gatsby-theme-codex 📖
A Gatsby theme to bootstrap your own digital codex.
Motivation
I created gatsby-theme-codex
after reading a very influential post from Tom Critchlow called Building a digital garden. This led me to other great pieces of writing, including Robin Sloan's Stock vs Flow.
Stock is the durable stuff. It’s the content you produce that’s as interesting in two months (or two years) as it is today. It’s what people discover via search. It’s what spreads slowly but surely, building fans over time.
gatsby-theme-codex
is a place to build your stock.
Why build stock anyway?
Before taking my word for it, I highly recommend reading the above blog posts.
I take a lot of notes on just about everything. You might do the same, whether it be in a digital notebook or a physical one. The idea of the codex is to share these notes with the world. Publish them in the open. Evolve them over time and watch them grow.
Why call it a codex?
This is just my name choice for a digital garden. It's inspired by Leonardo Da Vinci, who was esteemed for his detailed notebooks.
Other solutions
John Otander is building a project called gatsby-theme-digital-garden that I highly recommend you check out if you are at all interested in this concept. His livestream with Jason Lengstorf on Gatsby themes was super helpful, and he's building a much more robust version of a digital garden than this project. I decided to roll my own for learning purposes / less requirements / quicker turnaround.
Getting started
yarn add gatsby-theme-codex gatsby react react-dom
# or
npm install gatsby-theme-codex gatsby react react-dom
Add the following to your gatsby-config.js
file:
// gatsby-config.js
module.exports = {
plugins: ['gatsby-theme-codex']
}
Finally, create a codex
directory at the root of your project:
codex/
gatsby-config.js
package.json
Folder structure
The codex has the following structure:
codex/
├── topic-name/
└── entry-name-1.md
└── entry-name-2.mdx
gatsby-theme-codex
supports entries as .md
or .mdx
files.
Configuration options
src
You can optionally tell gatsby-theme-codex
where your entries are by adding a src
option. This is helpful if you don't want to have a codex
directory at the root of your project, or if you want to name it something different:
src/
├── notes/
gatsby-config.js
package.json
// gatsby-config.js
module.exports = {
__experimentalThemes: [
{
resolve: 'gatsby-theme-codex',
options: {
src: 'src/notes'
}
}
]
}
codexPath
By default, gatsby-theme-codex
will render your codex at www.yoursite.com/codex/:topic-name/:entry-name
. You can change the codex path by passing a codexPath
option inside of gatsby-config.js
:
// gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-theme-codex',
options: {
codexPath: '/custom-path' // make sure to include the forward slash! '/'
}
}
]
}
The example above would render your content at www.yoursite.com/custom-path/:topic-name/:entry-name
.
Shadowing components
Gatsby themes come with a feature known as component shadowing.
This feature allows users to override a component in order to customize its rendering.
gatsby-theme-codex
comes with 3 components, each of which can be shadowed. I encourage you to do so, as the default components rendered by gatsby-theme-codex
are too minimal - even for my taste!
Codex
The Codex
component is rendered at /:codexPath
, and can be shadowed in your project by adding a codex.js
file at src/gatsby-theme-codex/components/
. It receives the following props:
interace Codex {
topics: {
name: string;
url: string;
entryCount: number;
}[]
}
Topic
The Topic
component is rendered at /:codexPath/:topic-name
, and can be shadowed in your project by adding a topic.js
file at src/gatsby-theme-codex/components/
. It receives the following props:
interace Topic {
name: string;
entries: {
name: string;
url: string;
}[]
}
Entry
The Entry
component is rendered at /:codexPath/:topic-name/:entry-name
, and can be shadowed in your project by adding an entry.js
file at src/gatsby-theme-codex/components/
. It receives the following props:
interace Entry {
children: React.Node;
name: string;
topic: {
name: string;
url: string;
}
}
Note: The components above are each pages, therefore they receive page-specific props such as location
.
Project Goals
I plan on evolving this project over time to fit my needs. The goal here is to provide a minimal set of tools that allows the user to create awesome content for themselves, without getting bogged down with features and use cases.
Features may be added over time, but the goal will always be to let the content shine. The content should be prioritized above all else.