enso/app/gui2
somebody1234 e875781e29
Vue widgets (#7728)
Adds widgets:
- Checkbox (with sorting)
- Numeric slider
- Dropdown (accepting a list of strings)
- Closes #7731
- Placeholder (underscore - has no actions)

# Important Notes
The widgets are currently added to every node, but are not synced with the yjs representation. This is intentional, as (afaict) the format for the AST representation is not yet finalized.

There are a number of design differences, for practical reasons:
- The dropdown now has a scrollbar.
- As a side effect, the sort button needed to be moved left, to avoid overlapping with the scrollbar.
- Note that it is *not* centered in the 8px horizontal padding. It is 4px wide, and has 1px left and 3px right padding: `.||||...`. (Note that the 8px horizontal padding from the design is retained.
- 4px of vertical padding has been inserted, so that there is *some* padding between the bubble for the selected item, and the outer dropdown container, when the first item is selected. Note that this is different to the 8px
- 16px of right margin has been inserted after every item. This is the same amount of padding that is added by the bubble. This means that the dropdown does not change in width when a long item is selected.

Design issues:
- The sort button for the dropdown overlaps the text
2023-09-13 10:06:24 +00:00
..
e2e Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
public Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
rust-ffi Gui2: integrate rust Enso parser (#7753) 2023-09-07 12:54:01 +00:00
shared Gui2: integrate rust Enso parser (#7753) 2023-09-07 12:54:01 +00:00
src Vue widgets (#7728) 2023-09-13 10:06:24 +00:00
.eslintrc.cjs Gui2: integrate rust Enso parser (#7753) 2023-09-07 12:54:01 +00:00
.gitignore Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
.prettierignore Vue project title, execution mode selector, and breadcrumbs (#7726) 2023-09-07 15:02:55 +00:00
.prettierrc.json Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
env.d.ts Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
index.html Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
package-lock.json Vue project title, execution mode selector, and breadcrumbs (#7726) 2023-09-07 15:02:55 +00:00
package.json Vue project title, execution mode selector, and breadcrumbs (#7726) 2023-09-07 15:02:55 +00:00
playwright.config.ts Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
postcss.config.js Gui2: integrate rust Enso parser (#7753) 2023-09-07 12:54:01 +00:00
README.md Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
tsconfig.app.json Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
tsconfig.json Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
tsconfig.node.json Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
tsconfig.vitest.json Add Vue gui project (#7696) 2023-09-04 22:27:33 +00:00
vite.config.ts Gui2: integrate rust Enso parser (#7753) 2023-09-07 12:54:01 +00:00
vitest.config.ts Add Vue gui project (#7696) 2023-09-04 22:27:33 +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