[2023-10-09] GUI Team Demo Day #7996
Replies: 9 comments
-
PRs merged:
Main focus: screen-recorder-mon-oct-09-2023-20-47-48.mp4Miscellaneous small PRs: |
Beta Was this translation helpful? Give feedback.
-
Worked on #7784 Worked with AST to make proper input interpretation. Added several helper functions. Not working yet, but I'm close. |
Beta Was this translation helpful? Give feedback.
-
code-editor-resize.mp4
|
Beta Was this translation helpful? Give feedback.
-
I finally finished all tasks presented in recent weeks:
Currently working on documentation panel for the new IDE (#7924), |
Beta Was this translation helpful? Give feedback.
-
And here is the big demo of the entire GUI promised last week: gui-demo-super-ultra-2023-10-09_15.39.21.mp4Important notice: to have it so flawlessly working, you must remove old metadata (even from freshly created project) leaving at least 3 newlines at the end. |
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
We have finally a huge progress with website. What has been done:
transformNode(
() => WORKBENCH.node1.current,
stage1_node1,
stage2_node1
),
createNode(() => WORKBENCH.node2.current, {
vizData: fileData.shopLocations(),
afterTypingEnd: [
{
fn: (t) => {
WORKBENCH.node2.current.modifyVizData((data) => {
const opacity = 1 - t * 0.5;
data.meta.columnOpacity = [
opacity,
opacity,
opacity,
opacity,
];
});
},
},
],
}),
selectOptions(
() => WORKBENCH.node2.current,
[1],
[
{
add: '"Latitude"',
fn: (t) => {
WORKBENCH.node2.current.modifyVizData((data) => {
const opacity = 0.5 + t * 0.5;
data.meta.columnOpacity[2] = opacity;
});
},
},
{
add: '"Longitude"',
fn: (t) => {
WORKBENCH.node2.current.modifyVizData((data) => {
const opacity = 0.5 + t * 0.5;
data.meta.columnOpacity[3] = opacity;
});
},
},
]
), Things to be done below. Based on the velocity last week, I'm very positive to have it this week:
Screen.Recording.2023-10-09.at.15.30.48.mov |
Beta Was this translation helpful? Give feedback.
-
Engine team is working on stability & reliability (including supporting new IDE requirements):
|
Beta Was this translation helpful? Give feedback.
-
I've been finishing #7884--the last part remaining is finishing resolution of a longstanding TODO to produce complete span info in the parser (#5449). At this point there are a few known unhandled cases, but most nodes should be working and I don't think any other changes will be needed on the TS side, so the PR should be ready to start integration; I will complete #5449 and write more comprehensive tests in a follow-up PR. |
Beta Was this translation helpful? Give feedback.
-
Peek.2023-10-05.17-19.mp4
Beta Was this translation helpful? Give feedback.
All reactions