Easy, zero-config, convention-based React components.
A component in Block Party is called a Block. Here is a simple Block:
export interface Props {
who: string
}
export default ({ who }: Props) => (
<h1>Hello, {who}!</h1>
)Create a new directory and paste the above into a file called index.tsx. You've just created your first Block!
Block Party includes a storybook-style UI for quick previews of your Blocks.
Just run npx blockparty from the directory containing your Block, or from a root directory, where each Block is in a different subdirectory. The preview will automatically update if changes are made to any of the Blocks' source code.
You may want to publish a static site build of the storybook UI, for instance during a CI run on a git repo.
To create a static site build of the storybook, run npx blockparty build from the root.
By default, the output goes into a dist directory, but you can specify a different path on the command line. For instance, if you are using GitHub Pages, you may want to put it in the docs directory:
npx blockparty build . docs
If the Block has a README.md file in its directory, frontmatter can be added to the beginning of the file to provide metadata:
---
name: Hello Component
description: Greets whomever is specified.
foo: bar
...
---
# Detailed documentation...
Blah blah blahIf the name or description fields are not present in the frontmatter, Block Party will extract them from the README content:
- Name: The first heading (
# Heading) in the document - Description: The first paragraph of text after the heading
For example:
# Hello Component
Greets whomever is specified.
## Usage
...Both of the above README.md files will yield the name, "Hello Component" and description, "Greets whomever is specified."
The name and description are displayed in the storybook UI.
You can add JSDoc comments to your props to provide helpful descriptions in the storybook UI:
export interface Props {
/**
* The person's name to greet
*/
who: string
/**
* Optional greeting message (default: 'Hello')
*/
greeting?: string
}
export default ({ who, greeting = 'Hello' }: Props) => (
<h1>{greeting}, {who}!</h1>
)The easiest way to style your Block is to just put styles right in the code:
export interface Props {
// .. snip ..
}
export default ({ who, greeting = 'Hello' }: Props) => {
const headingStyle: React.CSSProperties = {
fontSize: '24px',
color: '#111827',
fontFamily: '-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif'
}
return (
<h1 style={headingStyle}>{greeting}, {who}!</h1>
)
}You can also use a CSS module, which is a CSS file ending in .module.css.
.heading {
font-size: 24px;
color: #111827;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}For instance, if you name the above styles.module.css, you can import it in your code like so:
import styles from './styles.module.css'
export interface Props {
// .. snip ..
}
export default ({ who, greeting = 'Hello' }: Props) => {
return (
<h1 className={styles.heading}>{greeting}, {who}!</h1>
)
}To run the Block Party CLI command (e.g. npx blockparty) from within the git checkout, run:
npm run cli -- ...
Where everything after the hypens are arguments to the Block Party CLI.
npm test
- Bump the version:
npm version patch|minor|major
- Push the new git tag:
git push --tags
- Publish to NPM:
npm publish