New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mag-component-list

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mag-component-list

Base list implementation.

1.3.0
latest
Source
npm
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

List component

build status npm version dependencies status devDependencies status Gitter

List is a component to build user interface, an instance of Component module. May be associated with mag-data-cacher and stb-component-scrollbar.

Installation

npm install mag-component-list

Usage

Add the singleton to the scope:

var List = require('mag-component-list');

Create list instance:

var list = new List({
    cycle: false,
    className: 'list',

    data: [ 
        '0',
        '1',
        '2',
        '3',
        '4'
    ],

    // custom render function
    render: function ( $item, config ) {},
    // data provider to get visible part from all data, may use mag-data-cacher 
    provider: dataProvider,
    // associated ScrollBar component link, may use stb-component-scrollbar
    scroll: new ScrollBar({}),
    size: 3,
    focusIndex: 0,
    propagate: false,
    type: List.prototype.TYPE_HORIZONTAL,
    events: {
        'focus:item': function ( event ) {
            console.log(event);
        },
        'click:item': function ( event ) {
            console.log(event);
        }
    }
});

To change data after creation:

list.setData({
    focusIndex: 0,
    data: [
        'Item 0',
        'Item 1'
    ]
});

To change focus position by index:

list.focusIndex(index);

To change focus item:

list.focusItem($item);

To blur item:

list.blurItem($item);

To mark item:

list.markItem($item, true);

Development mode

There is a global var DEVELOP which activates additional consistency checks and protection logic not available in release mode.

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

mag-component-list is released under the MIT License.

Keywords

mag

FAQs

Package last updated on 24 May 2021

Did you know?

Socket

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.

Install

Related posts