Welcome to the Spark Design System, a product of Rocket Mortgage.
Spark Design System is where we collect our best solutions for how to design and build unified digital experiences for the Rocket brands.
- Spark contains the basic patterns and components that make up the visual and interaction design of the Rocket Mortgage family of Fintech products. If your application is expected to look and behave like a Rocket Mortgage application, this package is the starting point. When the Spark Sass and JS setup files are imported into an application you will receive code for all of Spark.
Spark assumes your project is using Sass for styling and also that your project has a JavaScript build step that will transpile ES6+ and polyfill appropriately for browser support.
-
Install the npm package.
npm install --save-dev @sparkdesignsystem/spark
-
Import the Sass setup file in your Sass build.
@import "node_modules/@sparkdesignsystem/spark-styles/spark.scss";
This will bring all Spark Sass patterns into your build. The Spark classes are namespaced so they don't affect any existing CSS.
-
Import the JS setup file in your JS build.
import spark from "node_modules/@sparkdesignsystem/spark/spark";
This will bring all Spark JS into your build.
Spark is managed as a monorepo. All of the Spark source code lives in a single repo, but is released as separate packages.
This repo consists of the design system packages, wrapped in an instance of Gatsby. Spark uses Gatsby for our main documentation site and Storybook for our component previews and developer documentation.
In the root there are three directories, react
, angular
and html
. These house the files
that are published to npm.
If you want to run a copy of Gatsby locally:
- Navigate to the root directory of the project.
- Run
npm install
. - Run
npm start
. - Open your browser to
http://localhost:8000/
.
If you want to run a copy of Gatsby and Storybook locally:
- Navigate to the root directory of the project.
- Run
npm run installall
. - Run
npm start
to start Gatsby then open your browser tohttp://localhost:8000/
. - Run
(cd react/ ; npm run storybook)
to start Storybook for React. - Run
(cd angular/ ; npm run storybook)
to start Storybook for Angular. - Run
(cd html/ ; npm run storybook)
to start Storybook for HTML.
Spark uses the Jest test framework for unit tests. To run unit tests in Spark:
- Navigate to the framework directory of your choice from the root
cd react
,cd angular
, orcd html
. - Run
npm install
if you have not already. - Run
npm test
. - See test output in terminal to determine number of passing or failed tests.
Spark follows specific coding styles for HTML, CSS and JavaScript to ensure maintainability and scalability.
- Two spaces for indentation.
- For better code readability the attributes of elements should each be on their own line when the number of attributes makes that element exceed a line length of 80 characters.
- Two spaces for indentation.
- CSS is written in Sass and preprocessed into CSS.
- Class Naming Conventions can be found here.
- Stylelint is used to lint Sass files and all of Spark Sass coding conventions can be found in the Stylelint configuration file .
- Two spaces for indentation.
- Spark JS will use new features from ESNext and assumes applications using Spark have a JavaScript compiler setup.
- Spark uses ESLint for JS linting.
- ESLint is setup to use the Airbnb JavaScript Style Guide and Spark JS coding conventions come from there.
- Data attributes on DOM elements is the chosen method for DOM selection.
- For
additionalClasses
properties use the naming conventionelementAdditionalClasses
for other elements that we offer additional classes support on besides the main element.
Coming Soon