Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Roadmap #419

Open
Xhale1 opened this issue Aug 28, 2022 · 7 comments
Open

Roadmap #419

Xhale1 opened this issue Aug 28, 2022 · 7 comments
Assignees

Comments

@Xhale1
Copy link
Collaborator

Xhale1 commented Aug 28, 2022

This issue will serve as a living document of our short and long-term goals for this project.

In no particular order:

  • Design a new documentation site using Docusaurus
  • Remove redux connected api in favor of redux hooks
  • Add new examples to storybook
    • MUI
    • react-virtuoso
    • Tailwind
    • AntD
    • More (?)
  • [long-term] support grid layout
@Xhale1 Xhale1 pinned this issue Aug 28, 2022
@100terres
Copy link
Collaborator

100terres commented Aug 29, 2022

Good 👌

Could we also add an item to the roadmap to improve the developper experience. We could investigate a way to introduce new hooks to create draggables and droppables instead of using render function e.g.

Current render function API

<Draggable draggableId={item.id} index={index}>
  {(
    dragProvided: DraggableProvided,
    dragSnapshot: DraggableStateSnapshot,
  ) => (
    <Item
      key={item.id}
      item={item}
      isDragging={dragSnapshot.isDragging}
      isGroupedOver={Boolean(dragSnapshot.combineTargetFor)}
      provided={dragProvided}
    />
  )}
</Draggable>

What a hooks API could look like

const {
  draggableProvided
  draggableStateSnapshot,
} = useDraggable({ draggableId: item.id, index });

<Item
  key={item.id}
  item={item}
  isDragging={dragSnapshot.isDragging}
  isGroupedOver={Boolean(dragSnapshot.combineTargetFor)}
  provided={dragProvided}
/>

EDIT: This could serves has an inspiration: https://github.com/thisbeyond/solid-dnd#how-do-i-get-started-

@100terres
Copy link
Collaborator

100terres commented Aug 29, 2022

An other item could be to investigate how we could leverage GitHub discussions.

EDIT: Just saw that it was already open! 🎉 #417

@100terres
Copy link
Collaborator

Could also be nice to observe/watch the code coverage of the library.

@spheroidic
Copy link

spheroidic commented Dec 30, 2022

Hello - I am having trouble using @atlaskit/trees in my project. I'm a newbie coder, but the errors I'm getting are with out of date dependencies. I am already using RBD (soon switching to RFD), and I'd love to implement trees using the package. Do you folks have implementing trees as a feature anywhere on your radar?

@uffou
Copy link

uffou commented Oct 27, 2023

Tree & Grid would be awesome additions

@0-don
Copy link

0-don commented Dec 29, 2023

yes tree grid is a really good example

@hsavit1
Copy link

hsavit1 commented Jun 22, 2024

What's the plan for the tree grid?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants