
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
compose-loader
Advanced tools
This is a simple system for displaying loading indicators with state. This exists to unify the system for displaying a loading state, reusing the same elements with standardized classnames and message defaults.
var Loader = require( 'compose-loader' )
// Use default styles and messages
Loader.loading( [message] ) // Show loading state; message default: "Hang tight…"
Loader.success( [message] ) // Show success state; message default: "Got it!"
Loader.failure( [message] ) // Show failure state; message default: "Hold up!"
// Show loading message, overriding more options
Loader.loading({
message: 'Saving profile…', // change the message
className: 'saving-loader', // Use a special classname
removeAfter: 1000 // Remove automatically after 1000ms
})
// Manually remove loader from DOM (required for `loading` style message
// which doesn't auto remove by default
Loader.remove()
This will inject a div into the DOM at the end of body
element unless you overwrite the parent
selector for the loader.
<div class='loader'></div>
Here are the default options.
{
parent : 'body', // Selector for inserting loader html
className : 'loader', // Base classname
loading : 'Loading…', // class name for loading state
success : 'Success!', // class name for success state
failure : 'An error occurred', // class name for failure state
removeAfter : 800 // Milliseconds to auto remove success and failure messages
}
You can change the defaults for loader like this:
// Override defaults, changing base classname for all future instances of loader
Loader.defaults( { className: 'loader-widget' } )
// Override loading message for only this instance of the loader
var widget = Loader.new( { Loading: 'Hang tight…' } )
FAQs
A simple system for displaying a loading indicator
We found that compose-loader 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.
Product
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.