brimdata / zui

Zui is a powerful desktop application for exploring and working with data. The official front-end to the Zed lake.
https://www.brimdata.io/download/
Other
1.79k stars 132 forks source link

Pay Tech Debt in Right Click Menu Building Code #1866

Open jameskerr opened 3 years ago

jameskerr commented 3 years ago

The right click menu building code is duplicated, spread across many files, and difficult to understand.

We need to design something easier to test, maintain, and extend.

It would be good to build something like other apps that have extendable context menus.

jameskerr commented 3 years ago

I'd love to have it be like vs code where all options are json objects.

{
  label: "Filter == value",
  action: "append-query-filter",
  when: "$field in $columns" // a mini language we can use to determine to show or hide it
}