Giter Site home page Giter Site logo

Comments (3)

erikhaandrikman avatar erikhaandrikman commented on July 22, 2024

Hi!
This is indeed possible, lets say we have a _handleRight() method:

_handleRight() {
    // first create a reference to the component
    const slider = this.tag("MySliderComponent");
    // store total amount of items
    const total = slider.items.length - 1;
    // grab the current index
    const index = slider.realIndex;

    // if we're still below the max item index
    // we let the list jump to the next item
    if (index < total) {
        slider.setNext();
    } else {
        // if not, we do so some api requests and end up with a
        // new set of items we want to attach to our list
        const nextSet = [
            {type: MyListItem, item:{title:'a'}},
            {type: MyListItem, item:{title:'b'}},
            {type: MyListItem, item:{title:'c'}},
            {type: MyListItem, item:{title:'d'}},
            {type: MyListItem, item:{title:'e'}}
        ];

        // we use the a() method on the item list
        // and feed it with an array, this will create and add
        // an component for every item in the array.
        slider.itemList.a(nextSet);

        // after the items are added we force the slider to jump
        // to the next item
        slider.setNext();
    }
}

Off course you want your app to be in a loading state when it's doing some async request for the next items (and block remote control input) but i think you can build it with this functionality in mind.

the itemList inherits members from the ObjectList, you can read more about available methods and their implementation here: https://github.com/WebPlatformForEmbedded/Lightning/blob/master/src/tree/ObjectList.mjs

from lightning.

AndriyShpyra avatar AndriyShpyra commented on July 22, 2024

Thanks!

from lightning.

erikhaandrikman avatar erikhaandrikman commented on July 22, 2024

No problem!

from lightning.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.