npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@adactive/arc-loading-screen

v2.5.3

Published

Adsum Loading Screen Component

Downloads

105

Readme

react-badge touch-badge

Loading Screen

Screenshot of LoadingScreen component

Getting started

npm i --save @adactive/arc-loading-screen

OR

yarn add @adactive/arc-loading-screen

How to use

Just add the component as below:


import * as React from 'react';

/*...*/

// import LoadingScreen component and Actions
import LoadingScreen, { LoadingScreenActions } from '@adactive/arc-loading-screen';

import ACA from '@adactive/adsum-utils/services/ClientAPI';
import deviceConfig from './services/Config';

/*...*/

class App extends React.Component<PropsType, StateType> {
    state = {
        configLoaded: false,
        mapLoaded: false,
    };

    /*...*/

    componentDidMount() {
        // use setPercentage to dispatch LoadingScreen action
        const { setPercentage } = this.props;

        deviceConfig.init()
            // 10 %
            .then((): void => setPercentage(10))
            .then((): void => ACA.init(deviceConfig.config.api))
            // 25 %
            .then((): void => setPercentage(25))
            .then((): void => ACA.load())
            // 75 %
            .then((): void => setPercentage(75))
            .then(() => {
                this.awm = new AdsumWebMap({/*...*/});

                // 90 %
                setPercentage(90);
                this.setState({ configLoaded: true });
            });
    }

    componentDidUpdate() {
        // use setPercentage to dispatch LoadingScreen action
        const { mapState, setPercentage } = this.props;
        const { mapLoaded, configLoaded } = this.state;

        if (configLoaded && !mapLoaded && mapState === 'idle') {
            // 100 %, because app will be ready when mapLoaded set to true
            setPercentage(100);
            this.setState({ mapLoaded: true });
        }
    }

    renderMap = () => {/*...*/};

    render(): Element<'div'> {
        return (
            <div className="App">
                <LoadingScreen />

                <Header logo={logo} />

                { this.renderMap() }
            </div>
        );
    }
}
    
const mapStateToProps = (state: AppStateType): MappedStatePropsType => ({
    mapState: state.map.state,
    /*...*/
});

const mapDispatchToProps = (dispatch: *): MappedDispatchPropsType => ({
    // allow us to dispatch LoadingScreen setPercentage action
    setPercentage: (percentage: ?number): void => {
        dispatch(LoadingScreenActions.setPercentage(percentage));
    },
    /*...*/
});

export default connect(
    mapStateToProps,
    mapDispatchToProps,
)(App);

Do not forget to link the reducer to your app root reducer in rootReducer.js:


import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
 
/*...*/

// import LoadingScreen reducer
import loadingScreen from '@adactive/arc-loading-screen/src/LoadingScreenReducer';
// import LoadingScreen reducer type
import type { LoadingScreenReducerType } from '@adactive/arc-loading-screen/src/LoadingScreenReducer';

export type AppStateType = {|
    /*...*/
    loadingScreen: LoadingScreenReducerType,
|};

const appState: AppStateType = {
    /*...*/
    loadingScreen,
};

export default combineReducers(appState);

Be sure to have adsum-logo.png in your public/assets/img/ folder if you want the default logo

Optional props


type OwnPropsType = {|
    open?: boolean,
    hideLogo?: boolean,
    hidePercentage?: boolean,
    hideBar?: boolean,
    transition?: ?string,
    minPercentage?: ?number,
    mainColor?: string,
    barColor?: string,
    logo?: Object | string,
|};

open

Control the opening of the loading screen. Note that Loading Screen closes automatically when it reaches 100%, so NO NEED to link mapLoaded to open prop as below if you set percentage to 100% at some point in your code:


<LoadingScreen
    open={!mapLoaded} // not needed
/>

hideLogo

Hide Logo in the Loading Screen when set to true.

hidePercentage

Hide Percentage number in the Loading Screen when set to true.

hideBar

Hide Loading Bar in the Loading Screen when set to true.

transition

Set transition of the Loading Bar width. Can be useful to adjust transition duration: if Loading Screen is going to be displayed for a long time, we have enough time to set a bigger transition duration for a prettier design. On the contrary, timing needs to be low when Loading Bar loads quickly.

minPercentage

Set minPercentage. Set percentage in redux store is used only when greater than minPercentage. This is a sort of design workaround for the rounded radius and padding getting messed up when Loading Bar is too small.

mainColor

Set Loading Screen background color.

barColor

Set Loading Bar & percentage color.

logo

Set displayed logo. Better effect with a PNG file with transparent background.

Redux


type LoadingScreenReducerStateType = {|
    percentage: ?number,
|};

The only value in the Loading Screen redux store is percentage.

2 actions are available:

  • setPercentage: set percentage to the given value.

    LoadingScreenActions.setPercentage(80); // set percentage to 80 %
  • addPercentage: add the given value to the current percentage.

    LoadingScreenActions.setPercentage(10); // set percentage to 10 %

    /*...*/

    LoadingScreenActions.addPercentage(20); // percentage is now 30 %

Default props


static defaultProps = {
    open: true,
    hideLogo: false,
    hidePercentage: false,
    hideBar: false,
    transition: 'width .1s ease-in-out',
    minPercentage: 10,
    mainColor: '#6EC8F1', // same blue color as splashscreen in Adsum AdLoader
    barColor: 'white',
    logo: '/assets/img/adsum-logo.png',
};

Copy component inside your project src folder

It will copy the component inside your project, in src/components/adsum-loading-screen/.

npx @adactive/arc-loading-screen copy