Loading data...
Data loaded.
Loading data failed.
<!--
Copyright IBM Corp. 2016, 2018
This source code is licensed under the Apache-2.0 license found in the
LICENSE file in the root directory of this source tree.
-->
<!-- Loading Success State -->
<div data-inline-loading class="bx--inline-loading" role="alert" aria-live="assertive">
<div class="bx--inline-loading__animation">
<div data-inline-loading-spinner class="bx--loading bx--loading--small">
<svg class="bx--loading__svg" viewBox="-75 -75 150 150">
<circle class="bx--loading__background" cx="0" cy="0" r="26.8125" />
<circle class="bx--loading__stroke" cx="0" cy="0" r="26.8125"/>
</svg>
</div>
<svg focusable="false" preserveAspectRatio="xMidYMid meet" style="will-change: transform;" xmlns="http://www.w3.org/2000/svg" class="bx--inline-loading__checkmark-container" hidden="" data-inline-loading-finished="" width="16" height="16" viewBox="0 0 16 16" aria-hidden="true"><path d="M8,1C4.1,1,1,4.1,1,8c0,3.9,3.1,7,7,7s7-3.1,7-7C15,4.1,11.9,1,8,1z M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z"></path><path d="M7,11L4.3,8.3l0.9-0.8L7,9.3l4-3.9l0.9,0.8L7,11z" data-icon-path="inner-path" opacity="0"></path></svg>
<svg focusable="false" preserveAspectRatio="xMidYMid meet" style="will-change: transform;" xmlns="http://www.w3.org/2000/svg" class="bx--inline-loading--error" hidden="" data-inline-loading-error="" width="20" height="20" viewBox="0 0 32 32" aria-hidden="true"><path d="M2,16H2A14,14,0,1,0,16,2,14,14,0,0,0,2,16Zm23.15,7.75L8.25,6.85a12,12,0,0,1,16.9,16.9ZM8.24,25.16A12,12,0,0,1,6.84,8.27L23.73,25.16a12,12,0,0,1-15.49,0Z"></path></svg>
</div>
<p data-inline-loading-text-active class="bx--inline-loading__text">Loading data...</p>
<p data-inline-loading-text-finished hidden class="bx--inline-loading__text">Data loaded.</p>
<p data-inline-loading-text-error hidden class="bx--inline-loading__text">Loading data failed.</p>
</div>
<button data-inline-loading-demo-button class="bx--btn bx--btn--primary">Toggle
state</button>
import { InlineLoading } from 'carbon-components';
carbon-components.min.js
)var InlineLoading = CarbonComponents.InlineLoading;
// `#my-inline-loading` is an element with `[data-inline-loading]` attribute
InlineLoading.create(document.getElementById('my-inline-loading'));
Name | Type | Description |
---|---|---|
states | Object | The loading states. Contains INACTIVE , ACTIVE and FINISHED properties. |
Name | Params | Description |
---|---|---|
release |
Deletes the instance | |
setState |
state : string |
Sets the active/inactive/finished state |
// `#my-inline-loading` is an element with `[data-inline-loading]` attribute
var inlineLoadingInstance = InlineLoading.create(
document.getElementById('my-inline-loading')
);
inlineLoadingInstance.setState(InlineLoading.states.FINISHED);
Option | Default Selector | Description |
---|---|---|
selectorInit |
[data-inline-loading] |
The CSS selector to find the inline loading components |
selectorSpinner |
[data-inline-loading-spinner] |
The CSS selector to find the spinner |
selectorFinished |
[data-inline-loading-finished] |
The CSS selector to find the "finished" icon |
selectorTextActive |
[data-inline-loading-text-active] |
The CSS selector to find the text describing the active state |
selectorTextFinished |
[data-inline-loading-text-finished] |
The CSS selector to find the text describing the finished state |
classLoadingStop |
.bx--loading--stop |
The CSS class for spinner's stopped state |