
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
react-npm-result-status-label
Advanced tools
A react component to display an analysis or observation result in a coloured label
A React component to display an analysis or observation result in a coloured label according to result status.
A minimal usage will just display the result using default background colours.
let statusResult = "PASS";
<ResultStatusLabel>{statusResult}</ResultStatusLabel>;
Other options can be passed in as params like so:
let params = {
'bgColorMap' : {
'pass' : '#3cb521',
'ok' : '#3cb521',
'fail' : '#cd0200',
'alert' : '#d47500',
'inc' : '#d47500',
'flag' : '#474949',
'label' : '#ffffff'
},
'textColorMap' : {
'pass' : '#ffffff',
'ok' : '#ffffff',
'fail' : '#ffffff',
'alert' : '#ffffff',
'inc' : '#ffffff',
'flag' : '#ffffff',
'label' : '#000000'
},
cssClass: ['class1', 'class2']
};
<ResultStatusLabel params=params>PASS</ResultStatusLabel>;
If the bgColorMap is not specified, the following default colours should be used:
| Value | bgColorMap | textColorMap |
|---|---|---|
pass | #3cb521 | #ffffff |
ok | #3cb521 | #ffffff |
fail | #cd0200 | #ffffff |
alert | #d47500 | #ffffff |
inc | #d47500 | #ffffff |
flag | #474949 | #ffffff |
label | #ffffff | #000000 |
This colourMap can contains one or more flags. If a given status flag is provided, then it should override that status colour only. All others will remain as the default colour.
The statusResult (value given in this.props.children) is case insensitive, and can only be one of the following values:
pass - Display as is, in uppercasefail - Display as is, in uppercasealert - Display as is, in uppercaseflag - Display as is, in uppercaseinc - Display with a period appended in uppercase, EG: INC.ok - Display with a non breaking space prepended and appended in uppercase, EG: OK ????import React,{Component} from 'react';
import ReactDOM from 'react-dom';
import ResultStatusLabel from './component/result_status_label'
class App extends Component {
constructor(props){
super(props);
}
render() {
let params = {
'bgColorMap' : {
'pass' : '#fff521',
'ok' : '#3cb521',
'fail' : '#cd0200',
'alert' : '#d47500',
'inc' : '#3cb521',
'flag' : '#474949',
'label' : '#ffffff'
},
'textColorMap' : {
'pass' : '#ffffff',
'ok' : '#ffffff',
'fail' : '#ffffff',
'alert' : '#ffffff',
'inc' : '#cd0200',
'flag' : '#ffffff',
'label' : '#ffffff'
},
'cssClass': ['bold', 'center']
};
return(
<div>
<h2>Lable Status</h2>
<ResultStatusLabel>ok</ResultStatusLabel>
<br />
<ResultStatusLabel>fail</ResultStatusLabel>
<br />
<ResultStatusLabel params={params}>inc</ResultStatusLabel>
</div>
);
}
}
ReactDOM.render(<App />,document.querySelector('.container'));
This example would render: "OK" label with default background "#3cb521" and color "#ffffff". "FAIL" label with default background "#cd0200" and color "#ffffff". "INC." label with background "#3cb521" and color "#cd0200".
Clone the repo as a new project:
git clone https://github.com/lobdev/react-npm-result-status-label <result-status-label>
Start Server:
First you have to replace the lib/component/result_status_label.js to server.js in package.json
cd result-status-label
npm i
npm start
Run App:
npm start command automatically initiate browser at 3000 port
http:://localhost:3000
Run tests:
cd result-status-label
npm i
npm test
Make sure you configure your editor/IDE to use:
.editorconfig
.eslintrc
FAQs
A react component to display an analysis or observation result in a coloured label
The npm package react-npm-result-status-label receives a total of 1 weekly downloads. As such, react-npm-result-status-label popularity was classified as not popular.
We found that react-npm-result-status-label demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.