Socket
Socket
Sign inDemoInstall

@redhat-cloud-services/frontend-components-utilities

Package Overview
Dependencies
9
Maintainers
6
Versions
139
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @redhat-cloud-services/frontend-components-utilities

Util functions for RedHat Cloud Services project.


Version published
Weekly downloads
4.3K
decreased by-19.96%
Maintainers
6
Install size
6.91 MB
Created
Weekly downloads
 

Readme

Source

RedHat Cloud Services frontend components - utils

npm version

This package exports common functions to be used in other packages.

Installation

With NPM

npm i -S @redhat-cloud-services/frontend-components-utilities

With yarn

yarn add @redhat-cloud-services/frontend-components-utilities

This package is dependent on @redhat-cloud-services/frontend-components it will automatically installed trough direct dependencies.

Migration guide

v2 -> v3

Import path change

Assets are no longer under /files directory but directly at the root of the build directory.

// v2
import { getRegistry } from '@redhat-cloud-services/frontend-components-utilities/Registry';

// v3
import { getRegistry } from '@redhat-cloud-services/frontend-components-utilities/Registry';
No UMD build

Utils package no longer provides UMD version of the build.

RowLoader

RowLoader component is no longer a part of helpers file but is now a stand-alone component. Import path has changed.

// v2
import { RowLoader } from '@redhat-cloud-services/frontend-components-utilities/helpers'
// v3
import RowLoader from '@redhat-cloud-services/frontend-components-utilities/RowLoader'
SCSS files

SCSS files are now under styles directory.

/** v2 */
@import '~@redhat-cloud-services/frontend-components-utilities/styles/all';
/** v3 */
@import '~@redhat-cloud-services/frontend-components-utilities/styles/all''

inventoryDependencies

This module is now deprecated. Use a new Inventory component compatible with chrome 2.0.

parseCvssScore

Function parseCvssScore has been moved to a stand-alone file. Import path has changed.

// v2
import { parseCvssScore } from '@redhat-cloud-services/frontend-components-utilities/helpers'
// v3
import parseCvssScore from '@redhat-cloud-services/frontend-components-utilities/parseCvssScore'

Additionaly it exports these utilities

  • AsyncComponent - class to load component via async calls
  • helpers - custom helper functions
  • MiddlewareListener - redux listener on actions, they can fire additional action or be cancelled
  • Registry - reducer registry
  • RouterParams - maps route to props
  • interceptors - to be used with axios clients
  • Styles - custom style functions in sass

FAQs

Last updated on 20 May 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc