Image stack with steps
Extension ui.image-stack-steps
displays and manages image stacks with steps. Each step includes a title, image stack and a footer. You dynamically add, update and delete steps.
Connection
JS (ES6)
import { ImageStackSteps } from 'ui.image-stack-steps'; const options = { steps: [ { id: 'step1', header: { type: 'text', data: { text: 'Step title 1' } }, stack: { images: [ { type: 'image', data: { src: 'image1.jpg', title: 'Image 1' } } ], status: { type: 'ok' } }, footer: { type: 'text', data: { text: 'Step footer 1' } } } ] }; const imageStack = new ImageStackSteps(options); imageStack.renderTo(document.getElementById('container'));
JS (ES5)
var ImageStackSteps = require('ui.image-stack-steps').ImageStackSteps; var options = { steps: [ { id: 'step1', header: { type: 'text', data: { text: 'Step title 1' } }, stack: { images: [ { type: 'image', data: { src: 'image1.jpg', title: 'Image 1' } } ], status: { type: 'ok' } }, footer: { type: 'text', data: { text: 'Step footer 1' } } } ] }; var imageStack = new ImageStackSteps(options); imageStack.renderTo(document.getElementById('container'));
PHP
<php use Bitrix\Main\Loader; use Bitrix\Main\UI\Extension; Loader::includeModule('ui'); Extension::load('ui.image-stack-steps'); ?> <div id="container"><div> <script> BX.ready(function() { var options = { steps: [ { id: 'step1', header: { type: 'text', data: { text: 'Step title 1' } }, stack: { images: [ { type: 'image', data: { src: 'image1.jpg', title: 'Image 1' } } ], status: { type: 'ok' } }, footer: { type: 'text', data: { text: 'Step footer 1' } } } ] }; var imageStack = new BX.UI.ImageStackSteps(options); imageStack.renderTo(document.getElementById('container')); }); </script>
Parameters
Main parameters
Parametertype | Description | Required |
---|---|---|
stepsArray<StepType> | Array with steps to be displayed in the component | Да |
StepType parameter
Parametertype | Description | Required |
---|---|---|
idString | Step unique ID | Да |
progressBoxObject | Object, describing a progress-box and containing a title | No |
headerHeaderType | Step title, defined by type and data | Yes |
stackStackType | Image stack, containing images and their status | Yes |
footerFooterType | Step footer, defined by type and data | Yes |
stylesObject | Step styles. For example, minimal length | No |
HeaderType parameter
Parametertype | Description | Required |
---|---|---|
typeString | Header type | Yes |
dataObject | Header data | Yes |
stylesObject | Header styles | Нет |
StackType parameter
Parametertype | Description | Required |
---|---|---|
imagesArray<ImageType> | Array with images | Yes |
statusStackStatusType | Stack status | No |
ImageType parameter
Parametertype | Description | Required |
---|---|---|
typeString | Image type | Yes |
dataObject | Image data | Yes |
FooterType parameter
Parameterstype | Description | Required |
---|---|---|
typeString | Footer type | Yes |
dataObject | Footer data | Yes |
stylesObject | Footer styles | No |
ImageStackSteps class
Class ImageStackSteps
provides methods for managing image stacks and steps. These methods allow dynamically changing steps in the component.
Class methods
Method | Description | Parameters | Returned value |
---|---|---|---|
renderTo(node: HTMLElement) | Renders component indicated in the DOM element | node — DOM element used to render the component | — |
getSteps(): Array<StepType> | Returns array with the following steps. Each step returns as a copy to avoid source data changes | — | Array with objects StepType |
addStep(stepData: StepType): boolean | Addes a new step into the stack. If step data is incorrect, step won't be added | stepData — new step data | true , if step is added successfully, otherwise returnsfalse |
updateStep(stepData: StepType, stepId: string): boolean | Updates step data with specified stepId . If data is incorrect, step won't be updated | stepData — new step data.stepId — step identifier to be updated | true , if step was updated successfully, otherwise returnsfalse |
deleteStep(stepId: string): boolean | Deletes the step with specified stepId | stepId — step identifier to be deleted | true , if step was successfully deleted, otherwise returns false |
destroy() | Destroys component, freeing up resources and disconnecting it from DOM | — | — |
Examples
Simple stack with a single step
const options = { steps: [ { id: 'step1', header: { type: 'text', data: { text: 'Step 1 header' } }, stack: { images: [ { type: 'image', data: { src: 'image1.jpg', title: 'Image 1' } } ], status: { type: 'ok' } }, footer: { type: 'text', data: { text: 'Step 1 footer' } } } ] }; const imageStack = new ImageStackSteps(options); imageStack.renderTo(document.getElementById('container'));
How to add a step dynamically
const newStep = { id: 'step2', header: { type: 'text', data: { text: 'Step 2 header' } }, stack: { images: [ { type: 'image', data: { src: 'image2.jpg', title: 'Image 2' } } ], status: { type: 'wait' } }, footer: { type: 'text', data: { text: 'Step 2 footer' } } }; imageStack.addStep(newStep);
Additional information
- Extension uses
EventEmitter
for update notifications. For example, you can subscribe to the eventUI.ImageStackSteps.onUpdateSteps
, to track step updates. - To work with the extension, you need to have to connect libraries
main.core
,main.core.events
andui.vue3
. - Extension supports various image types, including user avatars, icons and counters.
- To customize external appearance, you can use the parameters
styles
in steps, headers and footers.
© «Bitrix24», 2001-2025