Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@redhat-cloud-services/frontend-components
Advanced tools
Common components for RedHat Cloud Services project.
This package consists of shared components required by RedHat Cloud Services team.
With npm
npm i -S @redhat-cloud-services/frontend-components
With yarn
yarn add @redhat-cloud-services/frontend-components
This package is dependent on @redhat-cloud-services/frontend-components-utilities and will automatically install it trough direct dependencies.
cjs
or esm
from your import paths.components
fragment from your import path// v2
import { Ansible } from '@redhat-cloud-services/frontend-components/components/cjs/Ansible';
// v3
import Ansible from '@redhat-cloud-services/frontend-components/Ansible';
/** OR */
import { Ansible } from '@redhat-cloud-services/frontend-components/Ansible';
Importing CSS for components is no longer required. Components import their styling whenever they are rendered for the first time.
-@import '~@redhat-cloud-services/frontend-components/index.css';
When importing a partial component like TextFilter
from ConditionalFilter
, use direct import shorthand from ConditionalFilter
. Do not import from TextFilter
file directly!
All imports must have at most only one level!
// OK
import { X } from '@redhat-cloud-services/frontend-components/<ModuleName>'
// Wrong!!
import X from '@redhat-cloud-services/frontend-components/<ModuleName>/X'
Deeper imports will break automatic csj/esm module resolution.
In order not to improve your bundle size you you should either import components trough direct imports or use babel plugin to change relative imports to direct imports. You can mix both direct imports and babel plugin, it's just convenient to use the babel plugin so you don't have to change all of your imports.
For speedy build times, you can use direct import paths For instance tableToolbar
can be imported as:
import TableToolbar from '@redhat-cloud-services/frontend-components/TableToolbar';
You can also use shorthand imports.
There are 2 plugins that can be used to change relative imports to direct imports
Since our components require a bit more setting up, we are recommending using babel-plugin-transform-imports
.
Change your babel config to be javascript config babel.config.js
so you can use JS functions to properly transform your imports.
Not every component has its own directory. You can use mapper to map component name to directory.
const FECMapper = {
SkeletonSize: 'Skeleton',
PageHeaderTitle: 'PageHeader'
};
module.exports = {
presets: [
// your presets go here
],
plugins: [
// your plugins
[
'transform-imports',
{
'@redhat-cloud-services/frontend-components': {
transform: (importName) =>
`@redhat-cloud-services/frontend-components/${FECMapper[importName] || importName}`,
preventFullImport: false,
skipDefaultConversion: true
}
},
'frontend-components'
]
// other plugins, for instance PF transform imports and such as well
]
};
As with direct imports you can choose between esm
and cjs
output.
// cjs
transform: (importName) =>`@redhat-cloud-services/frontend-components/${FECMapper[importName] || importName}`,
// esm
transform: (importName) =>`@redhat-cloud-services/frontend-components/esm/${FECMapper[importName] || importName}`,
FAQs
Common components for RedHat Cloud Services project.
The npm package @redhat-cloud-services/frontend-components receives a total of 3,983 weekly downloads. As such, @redhat-cloud-services/frontend-components popularity was classified as popular.
We found that @redhat-cloud-services/frontend-components demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.