Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
1940bbc
feat(client): add import dropdown options and modal
May 7, 2024
fd15602
feat(client): restructure new modal based on consolidated figma
May 8, 2024
d9aa7d1
Merge remote-tracking branch 'origin' into 505-ui-builder-notebook-ad…
May 14, 2024
f7a0179
feat(client): populate database dropdown with user dbs from be
May 14, 2024
098a575
feat(client): structure useform for addable removable query elements …
May 15, 2024
349b060
feat(client): databases selectable and populating tables selectfrom b…
May 16, 2024
dfdbc01
feat(client): table preview retrieving and displaying correct vals fr…
May 18, 2024
913be9b
feat(client): preview working for all dbs and tables edit columns par…
May 20, 2024
e57d7fa
feat(client): preview and column editing fully working and tracked in…
May 21, 2024
b604ac6
feat(client): add import data cell with user defined sql from column …
May 22, 2024
5bb9ace
feat(client): style edits on import data modal form and cell
May 24, 2024
2ba5de2
feat(client): basic styling and import data cell functionality complete
May 28, 2024
3898eb3
feat(client): remove old import data modal and continue styling colum…
May 29, 2024
de58697
feat(client): add functinoality and styling to column edit interface
May 30, 2024
d71d816
feat(client): add starter stack component for join builder
May 31, 2024
8e37ba2
Merge remote-tracking branch 'origin' into 505-ui-builder-notebook-ad…
Jun 4, 2024
49379c2
feat(client): merge with dev and add notes for restructure to accomod…
Jun 4, 2024
518fa30
feat(client): restructure init load to fetch edges with db struct and…
Jun 5, 2024
af6e866
feat(client): start implementing redesign
Jun 7, 2024
66472e6
feat(client): all tables cols rendering in editor useform partially w…
Jun 13, 2024
80b9abc
feat(client): new useform and usefieldarray structure working rederin…
Jun 19, 2024
df144cf
feat(client): restructure and clean up old elements vars etc for new …
Jun 24, 2024
77bcece
feat(client): create tracker for user alias repeats and update on che…
Jun 25, 2024
dff275f
feat(client): repeat alias flag and submit prevention fully working a…
Jun 26, 2024
387db8e
feat(client): add partial logic for tracking table and joins edges lo…
Jun 28, 2024
bf9adcc
feat(client): tables rendering based on available joins working needs…
Jun 28, 2024
81a95d9
feat(client): checkbox and table rendering bugs addressed with state …
Jul 1, 2024
23e2abf
feat(client): automatic join logic built out adding stack partially w…
Jul 1, 2024
ac1370c
feat(client): joins behavior working and organized in form data
Jul 3, 2024
f5b92f2
feat(client): joins bug fixed added new remove logic
Jul 3, 2024
4ff903a
feat(client): new reactor pixel working and new preview working
Jul 4, 2024
c7e028c
feat(client): joins logic working and cell saving runnable pixel
Jul 8, 2024
d586011
feat(client): preview crashes fixed and cell running correctly with w…
Jul 9, 2024
5207083
feat(client): style joins stack elements to match figma
Jul 10, 2024
eb5cf9b
Merge remote-tracking branch 'origin' into 505-ui-builder-notebook-ad…
Jul 10, 2024
d18da3f
feat(client): add test params for styled cell view with pixel toggle
Jul 11, 2024
6a05554
feat(client): styled cell diplay working for joins and tables with ad…
Jul 12, 2024
917e9f5
feat(client): style cell view and start edit modal
Jul 15, 2024
02a6853
feat(client): all data integrated to cell params passing to new edit …
Jul 16, 2024
10c6823
feat(client): fully style and transfer functionality to edit modal an…
Jul 17, 2024
2450bfe
feat(client): checkboxes and joins prepoulating correctly still debug…
Jul 18, 2024
1beb6a0
feat(client): cell edits displaying and persisting when saved for tab…
Jul 19, 2024
5fbae6c
feat(client): reset and re add changes from local branch add and edit…
Jul 31, 2024
618f963
feat(client): consolidate edit and create into single modal component…
Jul 31, 2024
a689644
feat(client): add join type select fully functional
Aug 13, 2024
8d54f22
feat(client): test patch and refactor pixel view and formatting for c…
Aug 14, 2024
8e6d14b
feat(client): refactor import form modal
Aug 14, 2024
4bb4bbf
feat(client): fix jointype select idx bug and refactor
Aug 15, 2024
3f05da7
feat(client): add loading component and disable preview and edit coll…
Aug 15, 2024
304a0c7
feat(client): refactor and remove all sx and style tags
Aug 15, 2024
529f773
feat(client): refactor and checkall partially working
Aug 15, 2024
07723bc
feat(client): add documentation comments descriptions ts interfaces a…
Aug 16, 2024
87a4d3b
Merge remote-tracking branch 'origin' into 505-ui-builder-notebook-ad…
Aug 16, 2024
ea2a41e
feat(client): fix update bugs refactor and remove unused functions ty…
Aug 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
"files.exclude": {
"**/*.rollup.cache": true,
"**/dist": true,
"**/target": true
}
"**/target": true,
},
"editor.folding": true,
"editor.foldingStrategy": "indentation",
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const CodeCellConfig: CellConfig<CodeCellDef> = {
},
view: CodeCell,
toPixel: ({ type, code }) => {
console.log({ type, code });
code = typeof code === 'string' ? code : code.join('\n');
if (type === 'r') {
return `R("<encode>${code}</encode>");`;
Expand Down
Loading