-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
243 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,103 +1,72 @@ | ||
# TSDX User Guide | ||
# gatsby-source-store | ||
|
||
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it. | ||
Plugin for sourcing the store-api data layer into Gatsby. | ||
|
||
> This TSDX setup is meant for developing libraries (not apps!) that can be published to NPM. If you’re looking to build a Node app, you could use `ts-node-dev`, plain `ts-node`, or simple `tsc`. | ||
> If you’re new to TypeScript, checkout [this handy cheatsheet](https://devhints.io/typescript) | ||
## Commands | ||
|
||
TSDX scaffolds your new library inside `/src`. | ||
|
||
To run TSDX, use: | ||
|
||
```bash | ||
npm start # or yarn start | ||
## Install | ||
``` | ||
|
||
This builds to `/dist` and runs the project in watch mode so any edits you save inside `src` causes a rebuild to `/dist`. | ||
|
||
To do a one-off build, use `npm run build` or `yarn build`. | ||
|
||
To run tests, use `npm test` or `yarn test`. | ||
|
||
## Configuration | ||
|
||
Code quality is set up for you with `prettier`, `husky`, and `lint-staged`. Adjust the respective fields in `package.json` accordingly. | ||
|
||
### Jest | ||
|
||
Jest tests are set up to run with `npm test` or `yarn test`. | ||
|
||
### Bundle Analysis | ||
|
||
[`size-limit`](https://github.com/ai/size-limit) is set up to calculate the real cost of your library with `npm run size` and visualize the bundle with `npm run analyze`. | ||
|
||
#### Setup Files | ||
|
||
This is the folder structure we set up for you: | ||
|
||
```txt | ||
/src | ||
index.tsx # EDIT THIS | ||
/test | ||
blah.test.tsx # EDIT THIS | ||
.gitignore | ||
package.json | ||
README.md # EDIT THIS | ||
tsconfig.json | ||
yarn add @vtex/gatsby-source-vtex @vtex/store-api | ||
``` | ||
|
||
### Rollup | ||
|
||
TSDX uses [Rollup](https://rollupjs.org) as a bundler and generates multiple rollup configs for various module formats and build settings. See [Optimizations](#optimizations) for details. | ||
|
||
### TypeScript | ||
|
||
`tsconfig.json` is set up to interpret `dom` and `esnext` types, as well as `react` for `jsx`. Adjust according to your needs. | ||
|
||
## Continuous Integration | ||
|
||
### GitHub Actions | ||
|
||
Two actions are added by default: | ||
|
||
- `main` which installs deps w/ cache, lints, tests, and builds on all pushes against a Node and OS matrix | ||
- `size` which comments cost comparison of your library on every pull request using [`size-limit`](https://github.com/ai/size-limit) | ||
|
||
## Optimizations | ||
|
||
Please see the main `tsdx` [optimizations docs](https://github.com/palmerhq/tsdx#optimizations). In particular, know that you can take advantage of development-only optimizations: | ||
|
||
# How to use | ||
```js | ||
// ./types/index.d.ts | ||
declare var __DEV__: boolean; | ||
// In your gatsby-config.js | ||
const { getSchema } = require('@vtex/store-api') | ||
|
||
// inside your code... | ||
if (__DEV__) { | ||
console.log('foo'); | ||
const options = { | ||
platform: 'vtex', | ||
account: 'my-vtex-account', | ||
environment: 'vtexcommercestable' | ||
} | ||
``` | ||
|
||
You can also choose to install and use [invariant](https://github.com/palmerhq/tsdx#invariant) and [warning](https://github.com/palmerhq/tsdx#warning) functions. | ||
|
||
## Module Formats | ||
|
||
CJS, ESModules, and UMD module formats are supported. | ||
|
||
The appropriate paths are configured in `package.json` and `dist/index.js` accordingly. Please report if any issues are found. | ||
|
||
## Named Exports | ||
|
||
Per Palmer Group guidelines, [always use named exports.](https://github.com/palmerhq/typescript#exports) Code split inside your React app instead of your React library. | ||
module.exports = { | ||
plugins: [ | ||
// other plugins ... | ||
{ | ||
resolve: '@vtex/gatsby-source-store', | ||
options: { | ||
getSchema: () => getSchema(options) | ||
} | ||
}, | ||
], | ||
} | ||
``` | ||
|
||
## Including Styles | ||
# Options | ||
This plugin brings additional options for you to control how the nodes are sourced. | ||
| Options | type | effect | | ||
|:-----------------:|:-------:|:-----------------------------------:| | ||
| sourceProducts | boolean | false for not sourcing products | | ||
| sourceCollections | boolean | false for not sourcing collections | | ||
| maxNumProducts | number | max number of products to source | | ||
| maxNumCollections | number | max number of collections to source | | ||
|
||
There are many ways to ship styles, including with CSS-in-JS. TSDX has no opinion on this, configure how you like. | ||
> Tip: While sourcing large ecommerces, add the maxNumProducts and maxNumCollections so you can develop whithout waiting for the whole dataset to be downloaded. Maybe try something like: | ||
```js | ||
const { getSchema } = require('@vtex/store-api') | ||
|
||
For vanilla CSS, you can include it at the root directory and add it to the `files` section in your `package.json`, so that it can be imported separately by your users and run through their bundler's loader. | ||
const options = { | ||
platform: 'vtex', | ||
account: 'my-vtex-account', | ||
environment: 'vtexcommercestable' | ||
} | ||
|
||
## Publishing to NPM | ||
const isProduction = process.env.NODE_ENV === 'production' | ||
|
||
module.exports = { | ||
plugins: [ | ||
// other plugins ... | ||
{ | ||
resolve: '@vtex/gatsby-source-store', | ||
options: { | ||
getSchema: () => getSchema(options) | ||
// Source less products is development for better DX | ||
maxNumProducts: isProduction ? undefined : 100, | ||
maxNumCollections: isProduction ? undefined : 100, | ||
} | ||
}, | ||
], | ||
} | ||
``` | ||
|
||
We recommend using [np](https://github.com/sindresorhus/np). | ||
## How to contribute | ||
Feel free to open issues in our repo. Also, there is a general contributing guideline in there |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import type { IPaginationAdapter } from 'gatsby-graphql-source-toolkit' | ||
|
||
const DEFAULT_PAGE_SIZE = 99 | ||
|
||
export interface IRelayPage { | ||
edges: Array<{ cursor: string; node: unknown | null }> | ||
pageInfo: { hasNextPage: boolean } | ||
} | ||
|
||
export const RelayForward = ( | ||
maxItems: number | ||
): IPaginationAdapter<IRelayPage, unknown> => ({ | ||
name: 'RelayForward', | ||
expectedVariableNames: [`first`, `after`], | ||
start() { | ||
return { | ||
variables: { first: DEFAULT_PAGE_SIZE, after: undefined }, | ||
hasNextPage: true, | ||
} | ||
}, | ||
next(state, page) { | ||
const tail = page.edges[page.edges.length - 1] | ||
const first = Number(state.variables.first) ?? DEFAULT_PAGE_SIZE | ||
const after = tail?.cursor | ||
|
||
return { | ||
variables: { first, after }, | ||
hasNextPage: Boolean( | ||
page?.pageInfo?.hasNextPage && Number(after) < maxItems | ||
), | ||
} | ||
}, | ||
concat(acc, page) { | ||
return { | ||
...acc, | ||
edges: { | ||
...acc.edges, | ||
...page.edges, | ||
}, | ||
pageInfo: page.pageInfo, | ||
} | ||
}, | ||
getItems(pageOrResult) { | ||
return pageOrResult.edges.map((edge) => (edge ? edge.node : null)) | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,37 @@ | ||
import type { SourceNodesArgs } from 'gatsby' | ||
|
||
import { sourceStoreType } from './sourceStore' | ||
import type { Options } from './gatsby-node' | ||
|
||
export const sourceCollections = async (_: SourceNodesArgs, __: Options) => {} | ||
export const sourceCollections = async ( | ||
gatsbyApi: SourceNodesArgs, | ||
options: Options | ||
) => { | ||
const { maxNumCollections = Infinity } = options | ||
const gatsbyNodeTypes = [ | ||
{ | ||
remoteTypeName: `StoreCollection`, | ||
queries: ` | ||
query LIST_COLLECTIONS($first: Int!, $after: String!) { | ||
allCollections(first: $first, after: $after) { | ||
edges { | ||
node { | ||
..._CollectionFragment_ | ||
} | ||
cursor | ||
} | ||
pageInfo { | ||
hasNextPage | ||
} | ||
} | ||
} | ||
fragment _CollectionFragment_ on StoreCollection { | ||
id | ||
__typename | ||
} | ||
`, | ||
}, | ||
] | ||
|
||
await sourceStoreType(gatsbyApi, options, gatsbyNodeTypes, maxNumCollections) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,37 @@ | ||
import type { SourceNodesArgs } from 'gatsby' | ||
import { | ||
buildNodeDefinitions, | ||
compileNodeQueries, | ||
generateDefaultFragments, | ||
createSchemaCustomization as toolkitCreateSchemaCustomization, | ||
sourceAllNodes, | ||
} from 'gatsby-graphql-source-toolkit' | ||
import { execute, parse } from 'graphql' | ||
import type { ISourcingConfig } from 'gatsby-graphql-source-toolkit/dist/types' | ||
|
||
import { sourceStoreType } from './sourceStore' | ||
import type { Options } from './gatsby-node' | ||
|
||
export const sourceProducts = async ( | ||
gatsbyApi: SourceNodesArgs, | ||
options: Options | ||
) => { | ||
// Step1. Set up remote schema: | ||
const schema = await options.getSchema() | ||
|
||
// Step2. Configure Gatsby node types | ||
const { maxNumProducts = Infinity } = options | ||
const gatsbyNodeTypes = [ | ||
{ | ||
remoteTypeName: `Product`, | ||
remoteTypeName: `StoreProduct`, | ||
queries: ` | ||
# Write your query or mutation here | ||
query LIST_PRODUCTS($first: number, $after: number) { | ||
allProducts { | ||
products { | ||
..._ProductFragment_ | ||
query LIST_PRODUCTS($first: Int!, $after: String!) { | ||
allProducts(first: $first, after: $after) { | ||
edges { | ||
node { | ||
..._ProductFragment_ | ||
} | ||
cursor | ||
} | ||
pageInfo { | ||
hasNextPage | ||
} | ||
} | ||
} | ||
fragment _ProductFragment_ on Product { | ||
fragment _ProductFragment_ on StoreProduct { | ||
id: productID | ||
__typename | ||
} | ||
`, | ||
}, | ||
] | ||
|
||
// Step3. Provide (or generate) fragments with fields to be fetched | ||
const fragments = generateDefaultFragments({ schema, gatsbyNodeTypes }) | ||
|
||
// Step4. Compile sourcing queries | ||
const documents = compileNodeQueries({ | ||
schema, | ||
gatsbyNodeTypes, | ||
customFragments: fragments, | ||
}) | ||
|
||
const config: ISourcingConfig = { | ||
gatsbyApi, | ||
schema, | ||
execute: async (args) => | ||
execute({ ...args, document: parse(args.query), schema }), | ||
gatsbyTypePrefix: ``, | ||
gatsbyNodeDefs: buildNodeDefinitions({ gatsbyNodeTypes, documents }), | ||
} | ||
|
||
// Step5. Add explicit types to gatsby schema | ||
await toolkitCreateSchemaCustomization(config) | ||
|
||
// Step6. Source nodes | ||
await sourceAllNodes(config) | ||
await sourceStoreType(gatsbyApi, options, gatsbyNodeTypes, maxNumProducts) | ||
} |
Oops, something went wrong.