Giter VIP home page Giter VIP logo

Comments (2)

tlietz avatar tlietz commented on June 2, 2024

It doesn't seem like there is a way to accomplish the frozen functionality with the native API.

However, changing grid._items when a layoutStart event is emitted from the grid changes the resultant layout. For example, this swaps the first two items of the grid whenever an item is dragged and a sort should occur:

grid.on('layoutStart', function(items, isInstant) {
    [grid._items[0], grid._items[1]] = [grid._items[1], grid._items[0]]
});

My idea now is to keep track of grid._items before and after every layoutStart event, take a diff, then determine whether the items that have been moved to a different index of grid._items should be put back where they belong before the sort animation occurs, based on if they are frozen.

Is there a better way to do this? I have also considered changing the source code to make it better suited for freezing items.

from muuri.

tlietz avatar tlietz commented on June 2, 2024

Muuri is very well architected, and written. Reading the source was the most pleasurable experience I have ever had with vanilla js.

I ended up changing some of the source code, specifically the grid.move and grid.swap functions, along with a public prototype method to set the frozenIndexes safely. The changes are on this fork of muuri.

Note that this is not the most performant or ergonomic way to accomplish this. For my usecase, each grid has at max 8 items, so performance doesn't really matter.

Also, it has not been tested on 2D grids.

from muuri.

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.