Single-page application (SPA) for StackRox Kubernetes Security Platform. This application was bootstrapped with Create React App.
Refer to the parent README.md for setting up dev env for the whole parent monorepo.
The documentation below is only specific to this package.
To start the local development server in watch mode, run yarn start.
The behavior of yarn start can be changed with the following environment variables:
YARN_START_TARGET will set the default endpoint that API requests are forwarded to from
the UI. By default the UI will forward API requests to https://localhost:8000.
YARN_START_TARGET=https://8.8.8.8:443 yarn startwill start the development server
and forward all API requests to https://8.8.8.8:443. Note that the protocol (https) is required to
be set for this option.
YARN_CUSTOM_PROXIES will override the endpoint that API requests are forwarded to for specific
endpoints that you define. The value of YARN_CUSTOM_PROXIES is a comma separated list of URL and
remote endpoint pairs. ('url1,endpoint1,url2,endpoint2...') This value can be combined with
YARN_START_TARGET and will take precedence over the latter for the endpoints that are defined.
YARN_CUSTOM_PROXIES='/v1/newapi,https://localhost:3030,/sso,https://localhost:9000' yarn startwill forward any requests from /v1/newapi to https://localhost:3030 and from /sso to https://localhost:9000. All
other requests will be forwarded to the default location of https://localhost:8000.
YARN_START_TARGET='https://8.8.8.8:443' YARN_CUSTOM_PROXIES='/v1/newapi,https://localhost:3030' yarn startwill forward any request from /v1/newapi to https://localhost:3030 and all other requests will be forwarded to
the value of YARN_START_TARGET: https://8.8.8.8:443.
Unlike ESLint 8 which auto-detects eslint.config.js flat config file, ESLint plugin for Visual Studio code editor does not (yet).
If stackrox/ui is your workspace root folder, you can create or edit stackrox/ui/.vscode/settings.json file to add the following properties:
{
"eslint.experimental.useFlatConfig": true,
"eslint.workingDirectories": ["apps/platform"]
}Use yarn test to run all unit tests and show test coverage. To run tests and
continuously watch for changes use yarn test-watch.
To bring up Cypress UI use yarn cypress-open. To
run all end-to-end tests in a headless mode use yarn test-e2e-local. To run
one test suite specifically in headless mode, use
yarn cypress-spec <spec-file>.
Given a feature flag environment variable "ROX_WHATEVER" in pkg/features/list.go:
// Whatever enables something wherever.
Whatever = registerFeature("Enable Whatever wherever", "ROX_WHATEVER", false)-
Add
'ROX_WHATEVER'to string enumeration typeFeatureFlagEnvVarin ui/apps/platform/src/types/featureFlag.ts -
To include frontend code when the feature flag is enabled, do any of the following:
-
Add
featureFlagDependency: 'ROX_WHATEVER'property in any of the following:- for integration tile in ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts
- for integration table column in ui/apps/platform/src/Containers/Integrations/utils/tableColumnDescriptor.ts
- for policy criterion in ui/apps/platform/src/Containers/Policies/Wizard/Step3/policyCriteriaDescriptors.tsx
-
Use
useFeatureFlagshook in a React component:-
Add
import useFeatureFlags from 'hooks/useFeatureFlags';in component file -
Add
const { isFeatureFlagEnabled } = useFeatureFlags();in component function -
Add
const isWhateverEnabled = isFeatureFlagEnabled('ROX_WHATEVER');assignment statement -
And then, do any of the following:
-
Add
ifstatement:-
For newer behavior only when feature flag is enabled
if (isWhateverEnabled) { /* Do whatever */ }
-
For older behavior only when feature flag is disabled use negative
!isWhateverEnabledcondition -
For alternative either/or behavior, add
elseblock toifstatement
-
-
Add conditional rendering:
-
For newer behavior only when feature flag is enabled
{isWhateverEnabled && ( <Whatever /> )}
-
For older behavior only when feature flag is disabled use negative
!isWhateverEnabledcondition -
For alternative either/or behavior, add newer elements and move older elements into ternary expression:
{isWhateverEnabled ? ( <Whatever /> ) : ( <WhateverItHasBeen /> )}
-
-
-
-
-
To skip integration tests:
-
Add
import { hasFeatureFlag } from '../…/helpers/features';in cypress/integration/…/whatever.test.js -
And then at the beginning of
describeblock do either or both of the following:-
To skip older tests which are not relevant when feature flag is enabled
before(function beforeHook() { if (hasFeatureFlag('ROX_WHATEVER')) { this.skip(); } });
-
Skip newer tests which are not relevant when feature flag is disabled
before(function beforeHook() { if (!hasFeatureFlag('ROX_WHATEVER')) { this.skip(); } });
-
-
-
To turn on a feature flag for continuous integration in branch and master builds:
- Add
ci_export ROX_WHATEVER "${ROX_WHATEVER:-true}"toexport_test_environmentfunction in tests/e2e/lib.sh - Add code below to
deploy_central_via_operatorfunction in tests/e2e/lib.sh
customize_envVars+=$'\n - name: ROX_WHATEVER' customize_envVars+=$'\n value: "true"'The value of feature flags for demo and release builds is in pkg/features/list.go
- Add
-
To turn on a feature flag for local deployment, do either or both of the following:
- Before you enter
yarn deploy-localcommand in ui directory, enterexport ROX_WHATEVER=truecommand - Before you enter
yarn cypress-opencommand in ui/apps/platform directory, enterexport CYPRESS_ROX_WHATEVER=truecommand
- Before you enter
Given a feature flag environment variable "ROX_WHATEVER" in pkg/features/list.go:
// Whatever enables something wherever.
Whatever = registerFeature("Enable Whatever wherever", "ROX_WHATEVER", false)-
Delete
'ROX_WHATEVER'from string enumeration typeFeatureFlagEnvVarin ui/apps/platform/src/types/featureFlag.ts -
In frontend code, do any of the following:
-
Delete
featureFlagDependency: 'ROX_WHATEVER'property in any of the following:- for integration tile in ui/apps/platform/src/Containers/Integrations/utils/integrationsList.ts
- for integration table column in ui/apps/platform/src/Containers/Integrations/utils/tableColumnDescriptor.ts
- for policy criterion in ui/apps/platform/src/Containers/Policies/Wizard/Step3/policyCriteriaDescriptors.tsx
-
For
useFeatureFlagshook in a React component:-
Delete
import useFeatureFlags from 'hooks/useFeatureFlags';in component file -
Delete
const { isFeatureFlagEnabled } = useFeatureFlags();in component function -
Delete
const isWhateverEnabled = isFeatureFlagEnabled('ROX_WHATEVER');assignment statement -
And then, do any of the following:
-
For
ifstatement:-
For newer behavior only when feature flag is enabled
Replace
if (isWhateverEnabled) {/* Do whatever */}with/* Do whatever */ -
For older behavior only when feature flag is disabled
- Delete
if (!isWhateverEnabled) {/* Do whatever it was */}
- Delete
-
For alternative either/or behavior
Replace
if (isWhateverEnabled) {/* Do whatever */} else {/* Do whatever it has been */}with/* Do whatever */
-
-
For conditional rendering:
-
For newer behavior only when feature flag is enabled
Replace
{isWhateverEnabled && (<Whatever />)}with<Whatever /> -
For older behavior only when feature flag is disabled
Delete
{!isWhateverEnabled && (<WhateverItHasBeen />)} -
For alternative either/or behavior
Replace
{isWhateverEnabled ? (<Whatever />) : (<WhateverItHasBeen />)}with<Whatever />
-
-
-
-
-
In integration tests:
-
Delete
import { hasFeatureFlag } from '../…/helpers/features';in cypress/integration/…/whatever.test.js -
And then at the beginning of
describeblock do either or both of the following:-
For older tests which were not relevant when feature flag is enabled
Delete obsolete
describeblock (or possibly entire test file) which has the following:before(function beforeHook() { if (hasFeatureFlag('ROX_WHATEVER')) { this.skip(); } });
-
For newer tests which were not relevant when feature flag is disabled
To run tests unconditionally, delete the following:
before(function beforeHook() { if (!hasFeatureFlag('ROX_WHATEVER')) { this.skip(); } });
-
-
-
For continuous integration:
- Delete
ci_export ROX_WHATEVER "${ROX_WHATEVER:-true}"fromexport_test_environmentfunction in tests/e2e/lib.sh
- Delete
Read and obey comments to add strings or properties in alphabetical order to minimize merge conflicts.
-
Edit ui/apps/platform/src/routePaths.ts file.
-
Add a path without params for link from sidebar navigation and, if needed, path with param for the
Routeelement.- Use a plural noun for something like clusters.
- Use a singular noun for something like compliance.
export const whateversBasePath = `${mainPath}/whatevers`; export const whateversPathWithParam = `${whateversBasePath}/:id?`;
-
Add a string to
RouteKeytype.| 'whatevers'
-
Add a property to
routeRequirementsMapobject.Specify a feature flag during development of a new route.
Specify minimum resource requirements. Component files might have conditional rendering for additional resources.
'whatevers': { featureFlagDependency: ['ROX_WHATEVERS'], resourceAccessRequirements: everyResource(['Whichever']), },
-
-
Edit ui/apps/platform/src/Containers/MainPage/Body.tsx file.
-
Import the path for the
Routeelement.whateversPathWithParam,
-
Add a property to
routeComponentMapobject.Specify the path to the root component of the asynchronously-loaded bundle file for the route (see step 4).
'whatevers': { component: asyncComponent( () => import('Containers/Whatevers/WhateversRoute') ), path: whateversPathWithParam, },
-
-
Edit ui/apps/platform/src/Containers/MainPage/Sidebar/NavigationSidebar.tsx file, if the route has a link.
- Import a path without params.
whateversBasePath,
- Add a child item for the link in the
navDescriptionsarray.
{ type: 'child', content: 'Whatevers', path: whateversBasePath, routeKey: 'whatevers', },
-
Add a folder and root component file (see step 2).
For example: ui/apps/platform/src/Containers/Whatevers/WhateversRoute.tsx
Given a change to a backend data structure:
-
Create or edit a corresponding file with camel case name in the ui/apps/platform/src/types folder:
- whateverService.proto.ts for request or response in proto/api/v1/whatever_service.proto
- whatever.proto.ts for storage/whatever.proto
- whatEver.proto.ts for storage/what_ever.proto
-
For type and property names:
- If a backend type is declared within the scope of a parent type or has a generic name, you might prefix the frontend type to prevent name collisions or increase specificity, for example:
ContainerSecurityContextorPolicySeverity - If a backend property has underscore case like
service_idthe frontend property has camelcase likeserviceId
- If a backend type is declared within the scope of a parent type or has a generic name, you might prefix the frontend type to prevent name collisions or increase specificity, for example:
-
For property types, follow existing examples of the correspondence between backend proto files and frontend TypeScript files
Given a change to a backend whatever_service.proto file in the proto/api/v1 folder:
-
Create or edit a corresponding file in the ui/apps/platform/src/services folder:
- Classic naming convention is title case and plural: WhateversService.ts
- Consistent naming convention is camel case and singular: whateverService.ts
-
For request and response types:
- Import from type files (described in the previous section)
- For function arguments and return types, follow existing examples of the correspondence between backend services and frontend functions