My package description
Project description
Brython.Dragdrop
A library for your Brython apps to implement drag-and-drop UX (User Experience), without needing to deal with low level drag or drop event callbacks.
Usage
Here comes some high level description.
-
You create a board game's board using html tags, such as TABLE's TD.
-
You create individual pieces by using normal html tags, and then you combine them with
brython_dragdrop.DraggableMixin. For example:class Card(brython_dragdrop.DraggableMixin, html.SPAN): pass
Then create as many cards as you like, and make them visible in your UI.
-
You declare some area to be droppable, by defining rules. For example:
brython_dragdrop.make_droppable(BOARD, rules={ (Card, Card): brython_dragdrop.swap, (Card, html.TD): brython_dragdrop.occupy, })
Predefined rules include:
swapwhich will swap two draggable piecesjoinwhich will append dragged piece into the landing area, so that the landing area may contain more and more dragged pieces.occupywhich will swap the existing piece (if any) with dragged piece, or place dragged piece into the empty landing area. So that the landing area will contain up to one draggable piece.
Sample: todo.
Roadmap
- More sophisticated API to support on-the-spot logic calculation before drop.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file brython-dragdrop-0.1.0.tar.gz.
File metadata
- Download URL: brython-dragdrop-0.1.0.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
185c3210ccb2bc00ce1c1719e3c64feeb11765a43644bd9cf7dca13e612a354d
|
|
| MD5 |
5719b37e767ca1daa59180be7eb5424f
|
|
| BLAKE2b-256 |
36aa32dd63567562ea0dc30fb08a7ce49ec7dd5022e6d779c719ad0ddd445f9f
|
File details
Details for the file brython_dragdrop-0.1.0-py3-none-any.whl.
File metadata
- Download URL: brython_dragdrop-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25a704b2b487f2f590f412ab741434a03f01e1321e01f763c1f139a4d903defb
|
|
| MD5 |
dd1798edb9df739b349a9a3bd98bd642
|
|
| BLAKE2b-256 |
9358300224b65c1d11337cebe54c91e1400fda4927a0a264cd66ed47569a892a
|