enso/app/gui2
somebody1234 062992bb8b
Fixes for GUI2 (#8310)
Addresses several issues found during book club.
- Add placeholder icons for visualizations (see screenshot)
- Also add the corresponding export to visualizations, and relevant support in the visualization store and visualization metadata DB.
- Show icon both on the visualization selector button, and in each visualization selector entry
- Adjust gaps between visualization selector entries
- Port table viz fixes (#8102) to Vue
- Fix height of table rows to avoid cutting off descenders on letters like `y` and `g`
- Make the space and enter keys work on visualization toolbar buttons, if they are selected
- `.blur()` code editor when clicking outside of it
- And similarly `.blur()` visualization selector
- Move selection brush on scroll by scaling the delta of `scrollTop` and `scrollLeft`
- Note that mouse position is technically still incorrect when scrolling past the end. I think this is fine - the new behavior is less broken, plus I am not aware of any way to fix this.

# Important Notes
None
2023-11-20 13:23:50 +00:00
..
.vscode [gui2] Language Server binary protocol, and loading of visualization data (#7873) 2023-10-07 20:57:47 +00:00
e2e [Gui2] Opening projects and language server connection (#7813) 2023-09-22 03:43:25 +00:00
parser-codegen line:col positions in parser (#8203) 2023-11-08 16:53:39 +00:00
public Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
rust-ffi Parser TS bindings (#7881) 2023-10-11 13:04:38 +00:00
scripts Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
shared enso-8194 Copy and pasting a single node (#8298) 2023-11-17 03:57:30 +00:00
src Fixes for GUI2 (#8310) 2023-11-20 13:23:50 +00:00
stories Magnet algorithm when dragging nodes. (#8224) 2023-11-07 15:51:30 +00:00
templates Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
ydoc-server [GUI2] Selection and rendering of basic node widgets (#8253) 2023-11-15 16:26:18 +00:00
.gitignore Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
.prettierignore Parser TS bindings (#7881) 2023-10-11 13:04:38 +00:00
.prettierrc.json [Gui2] Opening projects and language server connection (#7813) 2023-09-22 03:43:25 +00:00
env.d.ts [GUI2] Selection and rendering of basic node widgets (#8253) 2023-11-15 16:26:18 +00:00
env.story.d.ts [gui2] Component demos (#7945) 2023-10-29 19:02:07 +00:00
eslint.config.js Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
histoire.config.ts Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
index.html Fix Geo Map visualization (#8311) 2023-11-20 11:25:23 +00:00
node.env.d.ts [gui2] Language Server binary protocol, and loading of visualization data (#7873) 2023-10-07 20:57:47 +00:00
package.json Fixes for GUI2 (#8310) 2023-11-20 13:23:50 +00:00
playwright.config.ts Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
README.md Documentation Panel (#8118) 2023-10-30 00:27:40 +00:00
tsconfig.app.json Read custom visualizations (#8180) 2023-11-03 20:09:45 +00:00
tsconfig.app.vitest.json [GUI2] Fix and add tests for delta format translation. (#7968) 2023-10-04 10:53:54 +00:00
tsconfig.json [gui2] Component demos (#7945) 2023-10-29 19:02:07 +00:00
tsconfig.node.json [gui2] Component demos (#7945) 2023-10-29 19:02:07 +00:00
tsconfig.scripts.json [gui2] Component demos (#7945) 2023-10-29 19:02:07 +00:00
tsconfig.server.json [GUI2] Fix and add tests for delta format translation. (#7968) 2023-10-04 10:53:54 +00:00
tsconfig.server.vitest.json [GUI2] Fix and add tests for delta format translation. (#7968) 2023-10-04 10:53:54 +00:00
tsconfig.story.json [gui2] Component demos (#7945) 2023-10-29 19:02:07 +00:00
vite.config.ts Unify GUI2 headers (#8327) 2023-11-20 11:32:40 +00:00
vitest.config.ts Highlight matches in CB (#8098) 2023-10-19 15:08:56 +00:00

enso-ide

This template should help get you started developing with Vue 3 in Vite.

VSCode + Volar (and disable Vetur) + TypeScript Vue Plugin (Volar).

Type Support for .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

Customize configuration

See Vite Configuration Reference.

Project Setup

npm install

Compile and Hot-Reload for Development

npm run dev

Type-Check, Compile and Minify for Production

npm run build

Run Unit Tests with Vitest

npm run test:unit

Run End-to-End Tests with Playwright

# Install browsers for the first run
npx playwright install

# When testing on CI, must build the project first
npm run build

# Runs the end-to-end tests
npm run test:e2e
# Runs the tests only on Chromium
npm run test:e2e -- --project=chromium
# Runs the tests of a specific file
npm run test:e2e -- tests/example.spec.ts
# Runs the tests in debug mode
npm run test:e2e -- --debug

Lint with ESLint

npm run lint

Icons license

We use two Twemoji SVG icons for our documentation panel, you can find them at:

  • src/assets/icon-important.svg
  • src/assets/icon-info.svg

Twemoji SVG icons are licensed under CC-BY 4.0: https://creativecommons.org/licenses/by/4.0/. Copyright 2020 Twitter, Inc and other contributors.