Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artsy/palette-docs
Docs for Palette, Artsy's Design System
https://github.com/artsy/palette-docs
design-system react styled-system
Last synced: 28 days ago
JSON representation
Docs for Palette, Artsy's Design System
- Host: GitHub
- URL: https://github.com/artsy/palette-docs
- Owner: artsy
- License: mit
- Created: 2022-06-07T22:47:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-19T17:01:10.000Z (over 1 year ago)
- Last Synced: 2024-11-10T12:35:16.765Z (3 months ago)
- Topics: design-system, react, styled-system
- Language: TypeScript
- Homepage: https://palette.artsy.net/
- Size: 5.92 MB
- Stars: 2
- Watchers: 19
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Palette Docs
Docs for [Palette](https://github.com/artsy/palette), built on top of [Gatsby](https://www.gatsbyjs.org/).
## Meta
- Docs URL: [https://palette.artsy.net](https://palette.artsy.net)
- Palette Github Repo: [https://github.com/artsy/palette](https://github.com/artsy/palette)
- Storybook: [https://palette-storybook.artsy.net](https://palette-storybook.artsy.net)
- Point People: [@damassi](https://github.com/damassi), [@dzucconi](https://github.com/dzucconi)### Development
```sh
yarn startopen http://localhost:8000
open http://localhost:8000/___graphql
open http://localhost:8000/admin
```### Deployment
Merges to `main` are automatically deployed to https://palette.artsy.net.
### Docs Architecture
Gatsby API Details
1. **`gatsby-browser.js`**: This file is where Gatsby expects to find any usage
of the [Gatsby browser APIs](https://www.gatsbyjs.org/docs/browser-apis/)
(if any). These allow customization/extension of default Gatsby settings
affecting the browser.
1. **`gatsby-config.js`**: This is the main configuration file for a Gatsby
site. This is where you can specify information about your site (metadata)
like the site title and description, which Gatsby plugins you’d like to
include, etc. (Check out the
[config docs](https://www.gatsbyjs.org/docs/gatsby-config/) for more
detail).
1. **`gatsby-node.js`**: This file is where Gatsby expects to find any usage of
the [Gatsby Node APIs](https://www.gatsbyjs.org/docs/node-apis/) (if any).
These allow customization/extension of default Gatsby settings affecting
pieces of the site build process.
1. **`gatsby-ssr.js`**: This file is where Gatsby expects to find any usage of
the
[Gatsby server-side rendering APIs](https://www.gatsbyjs.org/docs/ssr-apis/)
(if any). These allow customization of default Gatsby settings affecting
server-side rendering.### Docs Search
Search within the Palette docs is implemented with [Algolia DocSearch](https://docsearch.algolia.com/). How?
1. The Palette docs are decorated with markers for Algolia's crawler. (See [here](https://github.com/artsy/palette-docs/blob/main/src/layouts/MainLayout.tsx#L35-L36), [here](https://github.com/artsy/palette-docs/blob/main/src/layouts/MainLayout.tsx#L51), and [here](https://github.com/artsy/palette-docs/blob/main/src/layouts/MainLayout.tsx#L63).)
2. The Palette docs site is configured to be crawled by Algolia in [their `algolia/docsearch-configs` project](https://github.com/algolia/docsearch-configs/blob/master/configs/artsy_palette.json).
3. The [search box](https://github.com/artsy/palette-docs/blob/main/src/components/Sidebar/SearchBox.tsx#L13) on the docs site sends search text through Algolia's JavaScript, to hit the index built by crawling the Palette docs. See [this implementation PR](https://github.com/artsy/palette/pull/642).
4. The search results are styled by [overriding Algolia's default styles](https://github.com/artsy/palette-docs/blob/main/src/components/Sidebar/algolia.css#L15).