A shared component library for Red Hat Insights projects, specifically designed for Advanced Cluster Management (ACM) and OpenShift Cluster Manager (OCM).
This repository provides reusable React components built with PatternFly that serve the common needs of both ACM and OCM applications. The components are designed to be generic enough to accommodate both products while maintaining consistency and reducing code duplication.
- Shared Components: Reusable React components for ACM and OCM
- PatternFly Integration: Built on top of PatternFly React components
- TypeScript Support: Fully typed components with TypeScript
- Storybook: Interactive component documentation and development environment
- Testing: Comprehensive unit tests with Jest and React Testing Library
- Modern Tooling: Vite, modern JavaScript features, and fast HMR
View our live component documentation and examples at:
https://redhatinsights.github.io/nxtcm-components/
The documentation site is automatically updated when changes are merged to the main branch and provides interactive examples of all components.
- Node.js (version 20 recommended - see
.nvmrc) - npm (comes with Node.js)
# Clone the repository
git clone https://github.com/RedHatInsights/nxtcm-components.git
cd nxtcm-components
# Install dependencies
npm install
# Start development server
npm start
# Or start Storybook
npm run storybook-
Clone the repository:
git clone https://github.com/RedHatInsights/nxtcm-components.git cd nxtcm-components -
Install dependencies:
npm install
Once published, you can install this package in your project:
npm install nxtcm-componentsTo develop and test components in isolation:
npm run storybookThis will start Storybook on http://localhost:6006 where you can interact with components and see their documentation.
To build the library for production:
npm run buildThis creates a dist folder with the compiled components.
Run all unit tests:
npm testRun tests in watch mode:
npm test:watchRun playwright tests:
npx playwright testRun playwright component tests:
npm run test-ctRun TypeScript type checking:
npm run type-checkFormat code with Prettier:
npm run prettier:fixStart the Vite development server:
npm startPreview the production build:
npm run previewnxtcm-components/
├── .github/ # GitHub configuration files
│ ├── REVIEW_PROCESS.md # PR review guidelines
│ └── pull_request_template.md
├── .storybook/ # Storybook configuration
├── public/ # Public assets
├── src/ # Source code
│ ├── index.ts # Main entry point
│ └── index.scss # Global styles
├── babel.config.js # Babel configuration (for Jest)
├── jest.config.js # Jest test configuration
├── jest.setup.js # Jest setup file
├── tsconfig.json # TypeScript configuration
└── vite.config.ts # Vite configuration
After installation, import components in your React application:
import { YourComponent } from 'nxtcm-components';
function App() {
return <YourComponent />;
}This library requires PatternFly CSS. Import it in your application:
// In your main application entry file (e.g., index.ts or App.tsx)
import '@patternfly/react-core/dist/styles/base.css';
import '@patternfly/patternfly/patternfly.css';Or include it in your HTML:
<link rel="stylesheet" href="node_modules/@patternfly/patternfly/patternfly.css">The components are designed to work seamlessly with both ACM and OCM projects. They use PatternFly's flexible design system to accommodate different requirements while maintaining consistency.
We welcome contributions! Please follow these guidelines:
- Fork the repository and create a feature branch
- Follow coding standards: Pre-commit hooks will automatically check your code
- Write tests: Add unit tests for new components or features
- Update documentation: Add or update Storybook stories
- Fill out the PR template: Provide clear description and testing steps
- Request reviews: Tag appropriate team members
See our Pull Request Template for detailed submission guidelines.
This repository uses Husky and lint-staged to automatically check code quality before every commit:
What happens when you commit:
- ✅ ESLint runs on staged TypeScript files and auto-fixes issues
- ✅ Prettier formats staged files automatically
- ✅ Only checks files you're committing (fast!)
- ❌ Commit is blocked if unfixable errors are found
Setup (Automatic):
npm install # Installs Git hooks automaticallyExample workflow:
# Make changes
vim src/components/MyComponent.tsx
# Stage changes
git add src/components/MyComponent.tsx
# Commit (hooks run automatically!)
git commit -m "feat: add MyComponent"
# → ESLint checks MyComponent.tsx
# → Prettier formats MyComponent.tsx
# → If all pass, commit succeeds ✅Bypass hooks (emergency only):
git commit --no-verify -m "emergency fix"--no-verify sparingly, as it bypasses all quality checks.
To test components in ACM or OCM applications:
- Build the component library:
npm run build - Link the package locally:
npm link
- In your ACM/OCM project:
npm link nxtcm-components
Alternatively, wait for the package to be published to npm and install it normally.
Components in this library follow these principles:
- Shared Foundation: Built on PatternFly components to ensure consistency
- Flexible but Opinionated: Generic enough for both ACM and OCM, but specific enough to provide value beyond raw PatternFly components
- Well-Tested: Every component includes unit tests
- Well-Documented: Storybook stories demonstrate usage and variants
- Accessible: Follow WCAG accessibility standards
- TypeScript First: Full type safety and IntelliSense support
- React 18: Modern React with hooks
- TypeScript: Type-safe component development
- PatternFly: Red Hat's open source design system
- Storybook: Component documentation and development
- Jest: Unit testing framework
- React Testing Library: Testing utilities
- Playwright: End-to-end and component testing
- Vite: Lightning-fast build tool and dev server
- ESLint: Code linting with React, TypeScript, and a11y rules
- Prettier: Code formatting
- Husky: Git hooks for pre-commit quality checks
- lint-staged: Run linters only on staged files
- SASS: CSS preprocessing
The repository includes the following configuration files:
| File | Purpose |
|---|---|
.eslintrc.json |
ESLint configuration with React, TypeScript, and accessibility rules |
.prettierrc |
Prettier code formatting rules |
.prettierignore |
Files to exclude from Prettier formatting |
.npmignore |
Files to exclude from npm package |
.nvmrc |
Node.js version specification (v20) |
.husky/pre-commit |
Pre-commit Git hook (runs lint-staged) |
package.json → lint-staged |
Configuration for running linters on staged files |
tsconfig.json |
TypeScript compiler configuration |
vite.config.ts |
Vite build tool configuration |
jest.config.js |
Jest testing framework configuration |
playwright.config.ts |
Playwright E2E testing configuration |
.github/workflows/ci.yml |
GitHub Actions CI/CD pipeline |
This project uses GitHub Actions for CI/CD. On every pull request and push to main, the following checks run automatically:
- ✅ Lint: ESLint and Prettier checks
- ✅ Type Check: TypeScript compilation
- ✅ Unit Tests: Jest tests with coverage
- ✅ Build: Library build verification
- ✅ E2E Tests: Playwright end-to-end tests
- ✅ Storybook Build: Documentation build verification
See .github/workflows/ci.yml for the complete workflow configuration.
| Command | Description |
|---|---|
npm start |
Start Vite dev server on port 4004 |
npm run storybook |
Start Storybook dev server on port 6006 |
npm run preview |
Preview production build locally |
| Command | Description |
|---|---|
npm run build |
Build library for production (outputs to dist/) |
npm run build-storybook |
Build static Storybook site |
| Command | Description |
|---|---|
npm run type-check |
Run TypeScript type checking without emitting files |
npm run lint |
Check code for linting errors (ESLint) |
npm run lint:fix |
Auto-fix linting errors where possible |
npm run prettier:check |
Check if files are formatted correctly |
npm run prettier:fix |
Auto-format code with Prettier |
| Command | Description |
|---|---|
npm test |
Run all unit tests with Jest |
npm run test:watch |
Run tests in watch mode |
npm run test:coverage |
Run tests with coverage report |
npm run test:e2e |
Run Playwright end-to-end tests |
npm run test:ct |
Run Playwright component tests |
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
For questions, issues, or contributions:
- Issues: GitHub Issues
- Pull Requests: GitHub PRs
- Review Process: See REVIEW_PROCESS.md