James Kerr

Results 115 comments of James Kerr

I found a way to get this action to work on Centos 8 containers. Before running this action, install the unzip package using dnf. ``` dnf install -y unzip ```...

Hi @ivan-palatov, I'm so glad you are using react-arborist for this use case. I don't need to load data async yet for my use cases, but I've wondered how well...

Yes, this is how things will be going forward.

Thank you! That would be a great feature. You are welcome to build it and contribute a PR. If you do decide to, let's discuss on this issue a design...

Hi @mooijtech thanks for the question. I think you can accomplish what you want by using the [tree.selectById(id, true)](https://github.com/brimdata/react-arborist/blob/main/packages/react-arborist/src/tree-api.ts#L73) method, and the [state.isSelected](https://github.com/brimdata/react-arborist#handlers-prop) parts of the NodeRenderer's state. The tree...

I think defaultChecked will work for you case. And this seems like an okay workaround. I'm working on a version 2 that will clean this up.

Thank you for your kindly worded suggestion.I plan to work on this very soon. This also came up on hacker news.

Thanks @Pustelto! I'll reference that as I work on it.

Here's a todo list for this issue: ## Keyboard Events - [x] **Right Arrow** - [x] When focus is on a closed node, opens the node; focus does not move....

This makes it easy for the click handlers too. We can have a default handlers.click function that checks if it's an item and runs on select, or checks if it's...