diff --git a/examples/getting-started-project-theme/.eslintrc.js b/examples/getting-started-project-theme/.eslintrc.js new file mode 100644 index 0000000..cbbe2ca --- /dev/null +++ b/examples/getting-started-project-theme/.eslintrc.js @@ -0,0 +1,22 @@ +module.exports = { + parserOptions: { + sourceType: 'module', + ecmaFeatures: { + jsx: true, + }, + }, + env: { + node: true, + es2021: true, + }, + extends: ['eslint:recommended', 'prettier', 'plugin:react/recommended'], + rules: { + 'react/react-in-jsx-scope': 'off', + 'react/prop-types': 'off', + }, + settings: { + react: { + version: '18.1', + }, + }, +}; diff --git a/examples/getting-started-project-theme/.gitignore b/examples/getting-started-project-theme/.gitignore new file mode 100644 index 0000000..b1ecb93 --- /dev/null +++ b/examples/getting-started-project-theme/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +hubspot.config.yml +dist diff --git a/examples/getting-started-project-theme/.node-version b/examples/getting-started-project-theme/.node-version new file mode 100644 index 0000000..8b0beab --- /dev/null +++ b/examples/getting-started-project-theme/.node-version @@ -0,0 +1 @@ +20.11.0 diff --git a/examples/getting-started-project-theme/.prettierrc b/examples/getting-started-project-theme/.prettierrc new file mode 100644 index 0000000..dc75c8a --- /dev/null +++ b/examples/getting-started-project-theme/.prettierrc @@ -0,0 +1,6 @@ +{ + "trailingComma": "all", + "tabWidth": 2, + "semi": true, + "singleQuote": true +} diff --git a/examples/getting-started-project-theme/README.md b/examples/getting-started-project-theme/README.md new file mode 100644 index 0000000..bc53dce --- /dev/null +++ b/examples/getting-started-project-theme/README.md @@ -0,0 +1,200 @@ +# Getting Started Example + +The getting started example within this directory covers a variety of key features/components of working with CMS React within a HubSpot website. This guide outlines the specifics of using CMS React primitives such as Modules, Fields, and Islands, as well as integrating third-party dependencies, styling, assets, and setting up local development tooling for your project. + +## Setup + +### Environment + +To set up your development environment to work with Project Themes, you’ll need the following: + +- A HubSpot account with CMS Free, Starter, Pro, or Enterprise access +- Node.js v20.0 or higher and the associated version of NPM + +## Creating and deploying a CMS React project + +Before we dive into running your first CMS React project, its important to understand the directory structure of this example: + +``` +getting-started-project-theme/ +├── package.json +├── hsproject.json +├── src/ +│ ├── getting-started-theme/ +│ │ ├── package.json +│ │ ├── tsconfig.json +│ │ ├── theme.json +│ │ └── ... +│ └── ... +└── ... +``` + +`getting-started-project-theme` is the root directory that contains your project configuration - `hsproject.json` - and the `src` directory. Also in this example we have a package.json file with some utility scripts for local development. The `src` directory contains your project's source code. Within the `src` directory you will find the `getting-started-theme` directory. This directory is where your HubL templates, HubL Modules, React Modules, and theme configuration lives. It is essentially a standard HubSpot theme, though within Project Themes you now have the ability to build React Modules which will live within the theme. + +> **Note** The directory naming convention mentioned above is not a requirement for your project Themes to work, but rather an example of how you could organize your project Themes. + +### Clone the `getting-started-project-theme` directory + +From your local directory for the following commands: + +```bash +git clone --filter=blob:none --no-checkout https://github.com/HubSpot/cms-react.git; +cd cms-react; +git sparse-checkout set --cone; +git checkout main; +git sparse-checkout set examples/getting-started-project-theme; +``` + +This will clone only the `getting-started-project-theme` directory from within cms-react repository down to your local file system. + +### Setting up your `hubspot.config.yaml` file + +In order to develop locally and deploy your code to your HubSpot portal. You will need to configure a `hubspot.config.yaml` file. Run `hs init` from the root of the repository and follow the prompts to setup your `hubspot.config.yaml` file. Keep in mind that when setting up JS assets for the first time, you will need to deactivate and regenerate your personal access key, ensuring it includes `CMS Pages`, `Design Manager` and `Developer Projects` permissions. See the [HubSpot CLI documentation](https://developers.hubspot.com/docs/cms/guides/getting-started-with-local-development) for more information. + +> **Warning:** If you are using an existing access key from a previous call to `hs init` or `hs auth`, you will need to deactivate and regenerate the access key to include new scopes necessary for local CMS React development. + +### Local development + +Now that our `hubspot.config.yaml` file is configured we can get to running and developing our project locally! Let's first install our dependencies. From the root of the `getting-started-project-theme` directory, run `npm install` in your terminal. This will install all your local dev tooling and any other dependencies found in your project's root package.json file. Next we will also need to run `npm install` from within the `/getting-started-theme` directory which will install all dependencies required for our CMS react code. With all of our deps installed, you can now run `npm run start` from the `getting-started-project-theme/src/getting-started-theme` directory. + +Once running, open up your browser to [https://hslocal.net:3000](https://hslocal.net:3000) to see the index page that links to all the modules associated to this project. Click on the "local version" of the "Weather" module to see a locally running instance of the module. The locally running instance will pick up any changes you make to your files instantly to streamline the feedback loop when iterating on your CMS components 🚀 + +Let's give this a test drive by opening up our `Weather` module found at `components/modules/Weather/index.tsx`. From within this file find the `` module field. That component has a `default` prop which signifies the starting value of the text field that a marketer will see in the page editor. Change the `default` prop's value to something else and save your changes. Take a look at your locally running instance of the [Weather` module](http://hslocal.net:3000/module/Weather) and it should now reflect your recent changes. + +### 4. Uploading and deploying to your portal + +With some changes in place, let's deploy our code to your HubSpot portal. Navigate back to the `/getting-started-project-theme/` directory and run `npm run deploy`. This will upload the `getting-started-project-theme` to your HubSpot account. Once uploaded, built, and deployed, you can create pages from the Templates, and use your React Modules within those pages. + +### Making more changes + +Let's say we want to show some default data on the initial load instead of forcing users to input a search before seeing weather data rendered. To do this, we can add a new module field for a `defaultCity` that a marketer can use within the context of the page editor to assign the module instance a default city to use at load time. + +To start, open the `/components/modules/Weather/index.tsx` in your code editor. Within this file you will see a `fields` variable that contains all of our module fields. These are the fields that a marketer can use to modify data for the Weather module from the WYSIWYG page editor. Since we already have a `TextField` component imported from `@hubspot/cms-components/fields` for our Weather Headline field, all we need to do is add a new `` for our defaultCity + +```js + +``` + +Once this is added, the `Component` export within this same file will now have access to the value of this new field via the `fieldValues` prop. since the `name` property on our `` component is `defaultCity` we can pull off this value from the `fieldValues` similarly to how we have for `headline` and add it to our island props like so: + +```js +const { defaultCity, headline } = fieldValues; +; +``` + +The final step is modify our `WeatherForecast` island component to enable the fetching weather data using the `defaultCity` value. To do this we have to make a couple updates: + +1. Include `defaultCity` in our props list +2. Update our `WeatherForecastProps` interface to include `defaultCity` +3. Add a `useEffect` that fetches the weather forecast with the `defaultCity` value +4. Add a loading state during a fetch + +The final component should resemble the following: + +```js +import { useEffect, useState } from 'react'; +import weatherStyles from '../../styles/weather.module.css'; +import { getWeatherForecast } from '../../utils.ts'; +import { WeatherForecast as WeatherForecastType } from '../../constants.ts'; +import { CurrentWeatherCard, UpcomingWeatherCard } from '../WeatherCards.tsx'; + +interface WeatherForecastProps { + headline: string; + defaultCity: string; // added defaultCity to the interface +} + +export default function WeatherForecast({ + headline, + defaultCity, // included defaultCity in props list +}: WeatherForecastProps) { + const [city, setCity] = useState(''); + const [weatherData, setWeatherData] = useState(); + + // adding useEffect to fetch weather forecast on component mount + useEffect(() => { + getWeatherForecast(defaultCity).then((data) => { + setWeatherData(data); + }); + }, []); + + const handleFetchWeather = () => { + getWeatherForecast(city).then((data) => { + setWeatherData(data); + }); + }; + + const isFetching: boolean = !weatherData; + const hasError: boolean = !isFetching && !!weatherData.error; + const hasWeatherData: boolean = + !isFetching && !hasError && !!weatherData.forecast; + const missingData = !isFetching && !hasWeatherData && !hasError; + + function WeatherForecast({ weatherData }) { + return ( + <> +
+ +
+
+ +
+ + ); + } + + return ( +
+

{headline}

+
+ setCity(event.target.value)} + /> + +
+
+ {isFetching &&

Loading...

} {/* add loading state during fetch */} + {hasError &&

Error occurred when fetching weather forecast

} + {hasWeatherData && } + {missingData && ( +

No results found for "{city}", please search another location

+ )} +
+
+ ); +} +``` + +Once you are satisfied with your changes, you only need to re-run `npm run deploy` in order to get the latest react module built and deployed to your portal. + +### 5. Previewing Local Changes on Proxied Pages + +In addition to locally viewing your modules, you can also preview your local CMS React components inside live HubL-rendered pages. To do this, create a page: + +- Go to Website Pages +- Click “Create”, then “Create Website Page" +- Write a page name and click “Create page” +- Switch your active theme to "CMS React - Getting Started Project Theme" and select the "Weather Forecast" template +- Name the page in the settings tab, then publish and preview it + +To proxy that page locally: + +- Run the local dev server as described above +- Visit the newly created page in your browser +- Open the sprocket menu and select `Open Local Dev Server` +- Your local JavaScript source changes will appear immediately in the context of the HubL page + +## Functionality + +This project includes templates, modules, module fields, and islands. Modules are the primary building block of the HubSpot CMS, and Islands enable client-side interactivity for React-powered modules. We have 3 modules: + +- **Header**: A React module without islands. +- **Footer**: Another example of a React module without islands. +- **Weather**: A module leveraging our island architecture to fetch and render data from an API client-side, enabling users to change the data they wish to fetch, and formatting dates using a third-party dependency. + +In addition to the above, we are using module css to scope our styles to a given file. For more styling options, check out our [Styling example](https://github.com/HubSpot/cms-react/tree/main/examples/styling). diff --git a/examples/getting-started-project-theme/hsproject.json b/examples/getting-started-project-theme/hsproject.json new file mode 100644 index 0000000..b1bf889 --- /dev/null +++ b/examples/getting-started-project-theme/hsproject.json @@ -0,0 +1,5 @@ +{ + "name": "getting-started-project-theme", + "srcDir": "src", + "platformVersion": "2023.2" +} diff --git a/examples/getting-started-project-theme/package.json b/examples/getting-started-project-theme/package.json new file mode 100644 index 0000000..f64d8ad --- /dev/null +++ b/examples/getting-started-project-theme/package.json @@ -0,0 +1,24 @@ +{ + "name": "getting-started-project-theme-example", + "description": "Getting started CMS Themes on Projects", + "license": "Apache-2.0", + "devDependencies": { + "@hubspot/cli": "latest", + "@hubspot/prettier-plugin-hubl": "latest", + "eslint": "^8.24.0", + "eslint-config-prettier": "^8.5.0", + "eslint-plugin-react": "^7.31.10", + "prettier": "^2.7.1", + "yarpm": "^1.2.0" + }, + "scripts": { + "start": "cd src/getting-started-theme && yarpm start", + "postinstall": "cd src/getting-started-theme && yarpm install", + "lint:js": "eslint . --ext .js,.jsx", + "prettier": "prettier . --check", + "deploy": "hs project upload ." + }, + "engines": { + "node": ">=16.0.0" + } +} diff --git a/examples/getting-started/src/getting-started-theme/Globals.d.ts b/examples/getting-started-project-theme/src/getting-started-theme/Globals.d.ts similarity index 100% rename from examples/getting-started/src/getting-started-theme/Globals.d.ts rename to examples/getting-started-project-theme/src/getting-started-theme/Globals.d.ts diff --git a/examples/getting-started/src/getting-started-theme/assets/clear.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/clear.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/clear.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/clear.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/cloudy.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/cloudy.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/cloudy.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/cloudy.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/fog.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/fog.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/fog.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/fog.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/rain.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/rain.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/rain.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/rain.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/snow.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/snow.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/snow.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/snow.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/sprocket.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/sprocket.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/sprocket.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/sprocket.svg diff --git a/examples/getting-started/src/getting-started-theme/assets/thunderstorm.svg b/examples/getting-started-project-theme/src/getting-started-theme/assets/thunderstorm.svg similarity index 100% rename from examples/getting-started/src/getting-started-theme/assets/thunderstorm.svg rename to examples/getting-started-project-theme/src/getting-started-theme/assets/thunderstorm.svg diff --git a/examples/getting-started/src/getting-started-theme/components/WeatherCards.tsx b/examples/getting-started-project-theme/src/getting-started-theme/components/WeatherCards.tsx similarity index 100% rename from examples/getting-started/src/getting-started-theme/components/WeatherCards.tsx rename to examples/getting-started-project-theme/src/getting-started-theme/components/WeatherCards.tsx diff --git a/examples/getting-started/src/getting-started-theme/components/islands/WeatherForecast.tsx b/examples/getting-started-project-theme/src/getting-started-theme/components/islands/WeatherForecast.tsx similarity index 100% rename from examples/getting-started/src/getting-started-theme/components/islands/WeatherForecast.tsx rename to examples/getting-started-project-theme/src/getting-started-theme/components/islands/WeatherForecast.tsx diff --git a/examples/getting-started/src/getting-started-theme/components/modules/Footer/index.tsx b/examples/getting-started-project-theme/src/getting-started-theme/components/modules/Footer/index.tsx similarity index 100% rename from examples/getting-started/src/getting-started-theme/components/modules/Footer/index.tsx rename to examples/getting-started-project-theme/src/getting-started-theme/components/modules/Footer/index.tsx diff --git a/examples/getting-started/src/getting-started-theme/components/modules/Header/index.tsx b/examples/getting-started-project-theme/src/getting-started-theme/components/modules/Header/index.tsx similarity index 100% rename from examples/getting-started/src/getting-started-theme/components/modules/Header/index.tsx rename to examples/getting-started-project-theme/src/getting-started-theme/components/modules/Header/index.tsx diff --git a/examples/getting-started/src/getting-started-theme/components/modules/Weather/index.tsx b/examples/getting-started-project-theme/src/getting-started-theme/components/modules/Weather/index.tsx similarity index 100% rename from examples/getting-started/src/getting-started-theme/components/modules/Weather/index.tsx rename to examples/getting-started-project-theme/src/getting-started-theme/components/modules/Weather/index.tsx diff --git a/examples/getting-started/src/getting-started-theme/constants.ts b/examples/getting-started-project-theme/src/getting-started-theme/constants.ts similarity index 100% rename from examples/getting-started/src/getting-started-theme/constants.ts rename to examples/getting-started-project-theme/src/getting-started-theme/constants.ts diff --git a/examples/getting-started/src/getting-started-theme/fields.json b/examples/getting-started-project-theme/src/getting-started-theme/fields.json similarity index 100% rename from examples/getting-started/src/getting-started-theme/fields.json rename to examples/getting-started-project-theme/src/getting-started-theme/fields.json diff --git a/examples/getting-started/src/getting-started-theme/layouts/base.hubl.html b/examples/getting-started-project-theme/src/getting-started-theme/layouts/base.hubl.html similarity index 100% rename from examples/getting-started/src/getting-started-theme/layouts/base.hubl.html rename to examples/getting-started-project-theme/src/getting-started-theme/layouts/base.hubl.html diff --git a/examples/getting-started/src/getting-started-theme/package.json b/examples/getting-started-project-theme/src/getting-started-theme/package.json similarity index 91% rename from examples/getting-started/src/getting-started-theme/package.json rename to examples/getting-started-project-theme/src/getting-started-theme/package.json index 826edda..241a74a 100644 --- a/examples/getting-started/src/getting-started-theme/package.json +++ b/examples/getting-started-project-theme/src/getting-started-theme/package.json @@ -16,7 +16,7 @@ "vitest": "^0.24.3" }, "scripts": { - "start": "hs-cms-dev-server .", + "start": "hs-cms-dev-server . --ssl", "test": "vitest" } } diff --git a/examples/getting-started/src/getting-started-theme/styles/footer.module.css b/examples/getting-started-project-theme/src/getting-started-theme/styles/footer.module.css similarity index 100% rename from examples/getting-started/src/getting-started-theme/styles/footer.module.css rename to examples/getting-started-project-theme/src/getting-started-theme/styles/footer.module.css diff --git a/examples/getting-started/src/getting-started-theme/styles/header.module.css b/examples/getting-started-project-theme/src/getting-started-theme/styles/header.module.css similarity index 100% rename from examples/getting-started/src/getting-started-theme/styles/header.module.css rename to examples/getting-started-project-theme/src/getting-started-theme/styles/header.module.css diff --git a/examples/getting-started/src/getting-started-theme/styles/weather.module.css b/examples/getting-started-project-theme/src/getting-started-theme/styles/weather.module.css similarity index 100% rename from examples/getting-started/src/getting-started-theme/styles/weather.module.css rename to examples/getting-started-project-theme/src/getting-started-theme/styles/weather.module.css diff --git a/examples/getting-started-project-theme/src/getting-started-theme/theme.json b/examples/getting-started-project-theme/src/getting-started-theme/theme.json new file mode 100644 index 0000000..1aac0c2 --- /dev/null +++ b/examples/getting-started-project-theme/src/getting-started-theme/theme.json @@ -0,0 +1,3 @@ +{ + "label": "CMS React - Getting Started Project Theme" +} diff --git a/examples/getting-started/src/getting-started-theme/tsconfig.json b/examples/getting-started-project-theme/src/getting-started-theme/tsconfig.json similarity index 100% rename from examples/getting-started/src/getting-started-theme/tsconfig.json rename to examples/getting-started-project-theme/src/getting-started-theme/tsconfig.json diff --git a/examples/getting-started/src/getting-started-theme/utils.ts b/examples/getting-started-project-theme/src/getting-started-theme/utils.ts similarity index 100% rename from examples/getting-started/src/getting-started-theme/utils.ts rename to examples/getting-started-project-theme/src/getting-started-theme/utils.ts diff --git a/examples/getting-started/src/getting-started-theme/weather.hubl.html b/examples/getting-started-project-theme/src/getting-started-theme/weather.hubl.html similarity index 100% rename from examples/getting-started/src/getting-started-theme/weather.hubl.html rename to examples/getting-started-project-theme/src/getting-started-theme/weather.hubl.html diff --git a/examples/getting-started/getting-started-project/getting-started-app/.env b/examples/getting-started/getting-started-project/getting-started-app/.env new file mode 100644 index 0000000..5fec21b --- /dev/null +++ b/examples/getting-started/getting-started-project/getting-started-app/.env @@ -0,0 +1 @@ +HS_TEST_SECRET=pears diff --git a/examples/getting-started/src/getting-started-theme/theme.json b/examples/getting-started/src/getting-started-theme/theme.json deleted file mode 100644 index 3e4f466..0000000 --- a/examples/getting-started/src/getting-started-theme/theme.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "label": "CMS React - Getting Started Theme" -}