Skip to content

Commit f1420dd

Browse files
Add ADR for programmatic columns UI/UX
This commit adds an ADR that contains the proposal for a UI/UX desgin for programmatic columns in the Theia Trace Extension. Signed-off-by: Hoang Thuan Pham <hoang.pham@calian.ca>
1 parent 88a3e53 commit f1420dd

19 files changed

+171
-0
lines changed

doc/adr/0007-programmatic-columns.md

+171
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,171 @@
1+
# 7. Programmatic columns
2+
3+
Date: 2022-09-29
4+
5+
## Status
6+
7+
Proposed
8+
9+
## Context
10+
11+
### Use case
12+
13+
#### The need for custom columns
14+
15+
When analyzing traces, it is helpful sometimes to aggregate data into a new column. For example, if a trace provides the start time and end time of the transmission of data packages over a network and the user is trying to figure out where latency occurs, a `Duration = end time - start time` column would be very useful for debugging.
16+
17+
#### Exporting/Importing columns
18+
19+
An important feature that works well with programmatic columns is exporting and importing column. When 2 users collaborate, it would be useful if they can view the same custom columns (calculations) of the same table so that they don't need to go through many steps to recreate data aggregation on each Trace Extension client.
20+
21+
### Goal
22+
23+
This ADR aims to provide a UI/UX prototype for the Theia Trace Extension that allows users to create programmatic columns by aggregating other columns.
24+
25+
### Constraints
26+
27+
The following constraints are required as this is the first prototype for the feature:
28+
29+
1. The number of mathematical operations allowed is limited. Only the following operators are allowed: `+ - * / and ( )`. No mathematical functions (e.g sum or average) are supported for now.
30+
2. This is only a UI/UX prototype. Hence, details regarding implementations (such as how the expressions are parsed) are to be discussed further.
31+
3. The diagrams are used to give a general idea of how the UI elements will be positioned and how users can interact with the new views. When implemented, the styling of the elements should follow Theia's styling.
32+
33+
### Vocabulary
34+
35+
The following terms are used interchangeably in this ADR: **programmatic column, calculated column, custom column, aggregated column**.
36+
37+
### Inspirations
38+
39+
There are a few applications on the market that already support such feature to add custom/calculated columns to a table. The following section analyzes the pros and cons of each application.
40+
41+
1. Excel
42+
43+
In Excel, we can add a function to a cell/column to perform some form of calculation. After selecting `Insert function`, the following UI is presented.
44+
45+
![current](0007/example-excel-function-selection.png)
46+
47+
Then users can select parameters, either by entering in the form below, or select them directly from the spreadsheet.
48+
49+
![current](0007/example-excel-parameters.png)
50+
51+
This UI requires users to interact with the spreadsheet to select the parameters of the function. However, the spreadsheet is hidden by the popup wizard, so the user might need to navigate around to select the parameter cells. The name of the columns are presented as a combination of X and Y coordinates, which does not really apply to the table views of the Trace Extension, where we have a meaningful name for each column. The overall UX is clunky and out-dated.
52+
53+
2. Microsoft Power BI
54+
55+
Microsoft Power BI has a different approach to add custom/calculated columns.
56+
57+
![current](0007/example-power-BI.png)
58+
59+
It divides the UI into 2 main areas:
60+
- On the left, a text area for entering the formula for the custom column [1].
61+
- On the right, a list of available columns [2].
62+
63+
When the user selects a column name from [2], they are added to [1] within square brackets.
64+
65+
This UI is better than Excel's because it provides the column names so that users can simply add them to the formula. Also, the formula is also visualized for the users. This is the example where the proposed prototyped will heavily based on.
66+
67+
3. Google
68+
69+
Google also uses a layout similar to Microsoft Power BI.
70+
71+
![current](0007/example-google.png)
72+
73+
Instead of the list of available columns (compared to Power BI), we have some filters. This is not relevant to the Trace Extension. The columns are displayed differently with a specialized UI element instead of using square brackets.
74+
75+
4. Plateau
76+
77+
Plateau also implements a similar layout to Microsoft Power BI.
78+
79+
![current](0007/example-tableau.png)
80+
81+
It also uses square brackets to indicate the columns used in formulas. However, instead of the list of column names on the right, the UI displays a list of functions that can be used.
82+
83+
## Decision
84+
85+
### Decisions
86+
87+
Combining the requirements and constraints of this ADR, the UI from Power BI is the most suitable for the Trace Extension. Since we are not planning to support aggregate functions, this eliminates Plateau and Google's UI that display the filters and functions. However, since Plateau, Google and Power BI use the same layout for its element, we will try to implement the same layout.
88+
89+
#### Manage columns UI
90+
91+
First, we need a view where users can manage all the columns in a table view. To open such view, we can add a new option in the hamburger menu that already exists in every table view.
92+
93+
![current](0007/manage-column-open.png)
94+
95+
Choosing the `Manage column` option will open the `Manage columns view`.
96+
97+
![current](0007/manage-column-view.png)
98+
99+
1: The `available columns` section lists the columns that are currently being displayed for a certain table. Programmatic columns are indicated by a calculator icon (see [4]). Only custom columns can be edited, or deleted (using the corresponding icons).
100+
101+
2: The plus icon allows user to [add new custom columns](#new-custom-column-view).
102+
103+
3: The column formula section displays the formula of a custom column. Mathematical operators are entered using the keyboard. Columns are indicated using square brackets. Formulas of default columns should be just the column name in square brackets.
104+
105+
4: A legend to help user understand the icon indicating the custom columns.
106+
107+
5: Links to [import](#importing-columns) and [export](#exporting-columns) custom columns.
108+
109+
6: Confirm/Cancel button.
110+
111+
#### New custom column view
112+
113+
After clicking on the add new column button in the [manage columns view](#manage-columns-ui), the add new column view will open.
114+
115+
![current](0007/add-column-view-1.png)
116+
117+
The following section describes the action flow of the user for adding a new custom column.
118+
119+
1. First the user enters the column name.
120+
121+
![current](0007/add-column-view-2.png)
122+
123+
2. Next the user can select a column from the available columns list by double clicking or using the insert button.
124+
125+
![current](0007/add-column-view-3.png)
126+
127+
3. Operators can then be entered using the keyboard, including brackets to group expressions.
128+
129+
![current](0007/add-column-view-4.png)
130+
131+
4. Then, the user selects the next parameter of the formula.
132+
133+
![current](0007/add-column-view-5.png)
134+
135+
5. Finally, the user selects OK, or presses Enter to add the new column to the view. A new column is then added to the table/view. The custom column can be removed directly from the table using the delete icon (or garbage bin icon).
136+
137+
![current](0007/add-column-view-6.png)
138+
139+
6. If there is an error while parsing the formula, an error message will be displayed under the formula text area.
140+
141+
![current](0007/add-column-view-error.png)
142+
143+
#### Editing an existing custom column
144+
145+
Only custom columns are editable by clicking on the `Edit` icon next to the column name in the [Manage columns view](#manage-columns-ui). The edit column view is similar to the add new column view, and the allowable actions are the same. However, users have the options to delete a column from here by using the `Delete` button at the bottom right of the view.
146+
147+
![current](0007/edit-column-view.png)
148+
149+
#### Importing columns
150+
151+
To import columns, simply click on the `Import column` link in the [Manage Column view](#manage-columns-ui). The following view is then presented.
152+
153+
![current](0007/import-column-view-1.png)
154+
155+
For now, we assume that we will use XML to import and export the column data, but this can change with any future iteration. The user can select any valid XML file that contains the column data. After selecting the file, the import column view will be shown.
156+
![current](0007/import-column-view-2.png)
157+
Similar to the `Manage column views`, there is a text area for viewing the column formulas. On the right, there is a checklist of columns to be imported. Users can click on the column name to view its formula and use the checkboxes to decide which column will be imported. Columns are not editable here.
158+
159+
There will also be buttons for users to select all, or deselect all columns. By default all columns will be selected for importing.
160+
161+
#### Exporting columns
162+
163+
To export columns, simply click on the `Export column` link in the [Manage Column view](#manage-columns-ui). The following view is then presented.
164+
165+
![current](0007/export-column-view.png)
166+
167+
Similar to the importing column view, we have a custom formula display element and a checklist of columns to export. Allowable user actions are also similar. Users can select columns to export from the checklist, then the file name and location of the exported file using the browse button. Finally, the user can click on the OK button to complete exporting the custom columns. A new XML file (for now) will be saved in the selected location.
168+
169+
## Consequences
170+
171+
The new UI/UX for custom columns will allow users to create columns that are calculated from other columns, helping users extract interesting and relevant information quickly, thus improving product quality, user experience and efficiency overall.

doc/adr/0007/add-column-view-1.png

12.6 KB
Loading

doc/adr/0007/add-column-view-2.png

13.1 KB
Loading

doc/adr/0007/add-column-view-3.png

25.1 KB
Loading

doc/adr/0007/add-column-view-4.png

17.1 KB
Loading

doc/adr/0007/add-column-view-5.png

26.7 KB
Loading

doc/adr/0007/add-column-view-6.PNG

30.6 KB
Loading
18.8 KB
Loading

doc/adr/0007/edit-column-view.png

13.8 KB
Loading
Loading
12.3 KB
Loading

doc/adr/0007/example-google.PNG

46.9 KB
Loading

doc/adr/0007/example-power-BI.png

57.1 KB
Loading

doc/adr/0007/example-tableau.png

19.5 KB
Loading

doc/adr/0007/export-column-view.png

15.3 KB
Loading

doc/adr/0007/import-column-view-1.png

26.3 KB
Loading

doc/adr/0007/import-column-view-2.png

15.2 KB
Loading

doc/adr/0007/manage-column-open.png

31.7 KB
Loading

doc/adr/0007/manage-column-view.png

22.4 KB
Loading

0 commit comments

Comments
 (0)