Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
76 changes: 31 additions & 45 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,52 @@
# HubSpot CMS React

## Documentation

Check out an expanded documentation page at <a href="https://github.hubspot.com/cms-react/" target="_blank">https://github.hubspot.com/cms-react/</a>

## Welcome!

Thank you for taking the time to learn about HubSpot CMS React. As always our goal is to solve for our customers so we welcome any and all feedback. Chat away in [\#cms-react](https://hubspotdev.slack.com/archives/C04AY1H2204) with other HubSpot developers who are pushing forward with developing with React on the Hubspot CMS. If you do not have access to the developer slack, you can request access [here](https://developers.hubspot.com/slack).

## How do React modules on the CMS work?

CMS React Modules and Partials are building blocks you can use to write React and JavaScript instead of HubL inside the HubSpot CMS. Note this doesn’t mean you will switch entirely away from HubL, rather we want to provide a pathway to begin writing React to render on both on the server and client. JS modules and partials are built from React components and can directly be referenced via HubL tags in your templates.

## Can I use React modules on my CMS account?
A collection of CMS React examples for building on the HubSpot CMS.

Yes! Working with React modules is generally available and can be used with all tiers of the CMS, including free.
## Table of Contents

## [Default React modules](default-react-modules)
- [Overview](#overview)
- [Documentation](#documentation)
- [Examples](#examples)
- [Contributing](#contributing)
- [Support](#support)

This directory contains a copy of all of our internal default React modules. As React modules do not appear in the Design manager, we made them available within this public repository so you can make your own copy and edit as you like. The modules you find in this directory are synced up with our internal code to ensure we keep them up to date.
---

### What if I don't see a default React module in this repo but that is available for use within Hubspot?
Some default React modules contain code that is internal to Hubspot and thus cannot be used in a general way by external developers. If you are are seeking to utilize one of these modules, or otherwise get a better sense of how it works, please reach out to a developer advocate for more information.
## Overview

## [React module boilerplate](react-module-boilerplate)
This repo demonstrates how to build React modules and "islands" for the HubSpot CMS. You'll find step-by-step examples, best practices, and customizable boilerplates to get you up and running quickly.

If you'd like to get started with your own React module or one of our defaults, we have provided a boilerplate project for you to pick up and get started right away. This boilerplate comes complete with a Sample module so you can test working with this repo with only a few steps on your part. In order to get working with this boilerplate you simply have to:

- Become familiar with working with our CLI, if you are not already, with our [Hubspot CLI documentation](https://developers.hubspot.com/docs/cms/guides/getting-started)
- Run `hs init` and select your portal.
- Within the react-module-boilerplate/src run `yarn deploy` or `npm deploy`, which is a helper script we offer which runs the `hs project upload` CLI command.
- You will be prompted to create this project in your portal. Confirm and the project will be created.
- Wait a few moments for the deploy to finish. You can view the projects within your portal at `https://app.hubspot.com/developer-projects/{YOUR_PORTAL_ID}`
## Documentation

Once the module is uploaded you should be able to see it when you go to edit a page, adding it like any other module.
- Official HubSpot CMS React guide:
https://developers.hubspot.com/docs/guides/cms/react/overview

## Examples
Each folder under `examples/` is a standalone example focused on a specific use case or feature. If you are just getting started with CMS React, the following examples are the best places to start:

In this repository is example usage of some of key features of React modules. These examples are are best understood alongside our official <a href="https://github.hubspot.com/cms-react/" target="_blank">docs</a>. You can quickly try things out without any local setup by [opening this repo in Codesandbox.io](https://codesandbox.io/p/sandbox/stoic-pateu-g20chg?file=%2Fcms-react%2FREADME.md).

### [Getting Started](examples/getting-started)

The "Getting Started" example is the most up to date example of CMS React basics. It illustrates the definition and development of Modules with React, uses 3rd party dependencies, islands, and CSS Modules.

### [Hello World](examples/hello-world)

**NOTE:** this is an older example, and [Getting Started](getting-started) is a better first example
- **[getting-started-project-theme](examples/getting-started-project-theme)**
Building a CMS theme with React and Projects
- **[getting-started](examples/getting-started)**
Building a standalone Project with React modules that can be used across CMS themes

The "Hello World" example combines partials, modules, islands and CSS modules for styling to show a more cohesive yet straightforward example of how CMS React components and APIs work together.
If you want to bootstrap a new Project with CMS React you can run `npx @hubspot/create-cms-theme@latest` which will create a Project starting point for you to build upon. [Learn More](https://www.npmjs.com/package/@hubspot/create-cms-theme)

### [Styling](examples/styling)
---

In this example, we take a look at three different approaches to styling React components. This is not an exhaustive list and there are many ways that styles can be organized and implemented.
## Contributing

### [Islands](examples/islands)
We welcome bug reports and PRs to update or add new examples:

Islands are a key concept for React modules in HubSpot. In addition to stitching server-rendered React components into the HTML generated by HubL, JS modules and partials support client-side interactivity with islands. Similar to the islands concept from [Astro](https://astro.build/), [Fresh](https://fresh.deno.dev/), and others, you can add an `<Island />` inside your JS module or partial to automatically code-split and render a component on both the server and client. In addition to allowing you to reuse JavaScript code between the server and browser, islands help you write performant websites by giving you precise control over what JavaScript is shipped to the browser and when it runs.
1. Fork this repo
2. Create a feature branch (`git checkout -b my-new-example`)
3. Commit your changes (`git commit -m "Add amazing example"`)
4. Open a PR

### [Graphql + Storybook](examples/graphql-storybook)
---

GraphQL is the future for querying HubSpot data in your CMS pages. As part of JS Modules, a developer can export a GraphQL query string and the Module's root component will then be passed the query result. Additionally we show how a Module that uses GraphQL can be developed using our Storybook integration. This integration will automatically understand the field types of a module and generate controls for a Storybook story.
## Support

### [Todo MVC](examples/todo-mvc)
Chat with the community on Slack:
https://developers.hubspot.com/docs/getting-started/slack/developer-slack

It seems with every new FE technology on the web comes an implemetation of TodoMVC. We didn't want to be left out and ported a recent version that made use of React and React hooks to work as a JS Module with Islands. Additionally there is an example of our `sharedIslandReducer` which provides a redux like interface for sharing state across islands.
---
103 changes: 3 additions & 100 deletions docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
@@ -1,113 +1,16 @@
import { defineConfig } from 'vitepress';
import fieldTypesSidebar from '../field-types/typedoc-sidebar.json';

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: 'HubSpot - CMS React',
description: 'Documentation for HubSpot CMS React',
description: 'Archived documentation site for HubSpot CMS React',
base: '/cms-react/',
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{
text: 'Getting Started',
link: 'https://github.com/HubSpot/cms-react/tree/main/examples/hello-world',
},
{ text: 'API Reference', link: '/reference/project-structure' },
{ text: 'Appendix', link: '/appendix' },
{ text: 'Official Docs', link: 'https://developers.hubspot.com/docs/guides/cms/react/overview' },
{ text: 'Examples', link: 'https://github.com/HubSpot/cms-react/tree/main/examples' },
{ text: 'Release Log', link: 'release-log' },
],

sidebar: {
'/': [
{
text: 'Documentation',
items: [
{
text: 'Getting started',
link: 'https://github.com/HubSpot/cms-react/tree/main/examples/hello-world',
},
{ text: 'API reference', link: '/reference/project-structure' },
{ text: 'Field types', link: '/field-types/' },
{ text: 'Appendix', link: '/appendix' },
{ text: 'Release Log', link: 'release-log' },
],
},
],
'/reference/': {
base: '/reference/',
items: [
{
text: 'API Reference',
items: [
{
text: 'Project Structure',
link: 'project-structure',
},
{ text: 'React Partials', link: 'js-partials' },
{
text: 'React Modules',
link: 'js-modules',
items: [
{
text: 'Directory Structure',
link: 'js-modules#directory-structure-requirements',
},
{
text: 'Module Fields',
link: 'js-modules#module-fields',
},
{ text: 'GraphQL', link: 'js-modules#graphql' },
{ text: 'hublDataTemplate', link: 'js-modules#hubldatatemplate' },
],
},
{ text: 'Islands', link: 'islands' },
{ text: '@hubspot/cms-components', link: 'cms-components' },
{ text: '@hubspot/cms-dev-server', link: 'cms-dev-server' },
{ text: 'Styling', link: 'styling' },
{ text: 'Static assets', link: 'static-assets' },
{
text: 'Third-party dependencies',
link: 'dependencies',
},
{ text: 'Prerendering', link: 'prerendering' },
{ text: 'Testing', link: 'testing' },
{ text: 'Data Fetching', link: 'data-fetching' },
{ text: 'Secrets', link: 'secrets' },
{ text: 'Working with Serverless', link: 'serverless' },
{ text: 'Build Health Checks', link: 'build-healthchecks' },
],
},
{
text: 'Module field types',
link: '../field-types/',
},
],
},
'/field-types/': {
base: '/field-types/',
items: fieldTypesSidebar.map((sidebarItem) => {
// remove nesting in sidebar, at least while it doesn't include
// anything
const { items, collapsed, ...rest } = sidebarItem;
if (items.length === 0) {
return rest;
}
return sidebarItem;
}),
},
},

socialLinks: [
{
icon: 'github',
link: 'https://github.com/HubSpot/cms-react/',
},
],

search: {
provider: 'local'
}
},
});
Loading
Loading