![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
react-redux-loading-bar
Advanced tools
A React component that provides Loading Bar (aka Progress Bar) for long running tasks.
Consists of:
See Demo or its source code.
npm install --save react-redux-loading-bar
Mount the LoadingBar
component anywhere in your application:
import LoadingBar from 'react-redux-loading-bar'
export default class Header extends React.Component {
render() {
return (
<header>
<LoadingBar />
</header>
)
}
}
Good news is that it doesn't include any positioning. You can attach it to the top of any block or the whole page.
You can even include multiple loading bars on the same page, that will render independently. They need to be provided with a scope so that you can adjust them independently.
import LoadingBar from 'react-redux-loading-bar'
export default class Header extends React.Component {
render() {
return (
<header>
<LoadingBar />
</header>
<section>
<LoadingBar scope="sectionBar" />
</section>
)
}
}
Install the reducer to the store:
import { combineReducers } from 'redux'
import { loadingBarReducer } from 'react-redux-loading-bar'
const reducer = combineReducers({
// app reducers
loadingBar: loadingBarReducer,
})
redux-promise-middleware
Apply middleware to automatically show and hide loading bar on actions with promises:
import { createStore, applyMiddleware } from 'redux'
import { loadingBarMiddleware } from 'react-redux-loading-bar'
import rootReducer from './reducers'
const store = createStore(
rootReducer,
// promise middleware
applyMiddleware(loadingBarMiddleware())
)
You can configure promise type suffixes that are used in your project:
import { createStore, applyMiddleware } from 'redux'
import { loadingBarMiddleware } from 'react-redux-loading-bar'
import rootReducer from './reducers'
const store = createStore(
rootReducer,
applyMiddleware(
loadingBarMiddleware({
promiseTypeSuffixes: ['REQUEST', 'SUCCESS', 'FAILURE'],
})
)
)
import { createStore, applyMiddleware } from 'redux'
import { loadingBarMiddleware } from 'react-redux-loading-bar'
import rootReducer from './reducers'
const store = createStore(
rootReducer,
applyMiddleware(
loadingBarMiddleware({
scope: 'sectionBar',
})
)
)
If you're not using redux-promise-middleware
or any other promise middleware, you can skip installing the loadingBarMiddleware()
and dispatch SHOW
/HIDE
actions manually. The other option is to write your own middleware that will be similar to the bundled one.
You can dispatch SHOW
/HIDE
actions wherever you want by importing the corresponding action creators:
import { showLoading, hideLoading } from 'react-redux-loading-bar'
dispatch(showLoading())
// do long running stuff
dispatch(hideLoading())
You need to dispatch HIDE
as many times as SHOW
was dispatched to make the bar disappear. In other words, the loading bar is shown until all long running tasks complete.
You need to provide the scope to the actions:
import { showLoading, hideLoading } from 'react-redux-loading-bar'
dispatch(showLoading('sectionBar'))
// do long running stuff
dispatch(hideLoading('sectionBar'))
redux-saga
Install the loadingBarReducer()
and mount Loading Bar in your application.
You can import and dispatch showLoading
and hideLoading
from your sagas.
import { showLoading, hideLoading } from 'react-redux-loading-bar'
export function* fetchData() {
try {
yield put(showLoading())
const payload = yield call(API, params)
// payload processing
} finally {
yield put(hideLoading())
}
}
immutable-js
You can change component import line if your top level redux store object is immutable
.
import { ImmutableLoadingBar as LoadingBar } from 'react-redux-loading-bar'
// Mount LoadingBar component as usual
If you happen to use jQuery for Ajax requests, you can dispatch SHOW
/HIDE
actions on ajaxStart
/ajaxStop
global events:
$(document).on('ajaxStart', this.props.actions.showLoading)
$(document).on('ajaxStop', this.props.actions.hideLoading)
See a demo or checkout the code.
Pass direction="rtl"
to make Loading Bar simulate progress from right to left:
<LoadingBar direction="rtl" />
You can apply custom styling right on the LoadingBar
component. For example you can change the color and height of the loading bar:
<LoadingBar style={{ backgroundColor: 'blue', height: '5px' }} />
Alternatively, you can specify your own CSS class.
Please note that will disable default styling (which is background-color: red; height: 3px; position: absolute;
).
<LoadingBar className="loading" />
Don't forget to set height
, background-color
and position
for the loading
class in your CSS files.
You can change updateTime (by default 200ms), maxProgress (by default 90%) and progressIncrease (by default 5%):
<LoadingBar updateTime={100} maxProgress={95} progressIncrease={10} />
By default, the Loading Bar will only display if the action took longer than updateTime
to finish. This helps keep things feeling snappy, and avoids the annoyingness of showing a Loading Bar for fractions of seconds. If you want to show Loading Bar even on quickly finished actions you can pass the showFastActions
prop:
<LoadingBar showFastActions />
You can dispatch the resetLoading
action to ultimately hide Loading Bar even when multiple long running tasks are still in progress.
npm test
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.
To see what has changed in recent versions of Loading Bar, see the CHANGELOG.
Licensed MIT. Copyright 2016-current Anton Mironov.
5.0.8
FAQs
Simple Loading Bar for Redux and React
The npm package react-redux-loading-bar receives a total of 20,017 weekly downloads. As such, react-redux-loading-bar popularity was classified as popular.
We found that react-redux-loading-bar 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.