mirror of
https://github.com/enso-org/enso.git
synced 2024-12-23 07:51:56 +03:00
2cd3912402
Closes #7823 We set fallback color for components without an assigned group, use a color defined in the group, or otherwise derive the color from the group name. All group colors are available in the graph editor as CSS variables so that they can be dynamically edited and debugged via dev tools. For deriving the color, we use [murmurhash](https://www.npmjs.com/package/murmurhash), which quickly produces sufficiently uniformly distributed 32-bit values and [oklch](https://evilmartians.com/chronicles/oklch-in-css-why-quit-rgb-hsl) colorspace. We will still have *some* hash collisions between different groups, but it shouldn't matter that much. I have also tried a few other hashes (namely `cybr53` and Java's string hashing), and the results were more or less similar. `oklch` is rather a new thing in CSS, but it is available starting with Chrome 111, which is exactly the version we're using in Electron. https://github.com/enso-org/enso/assets/6566674/7177f041-93e9-4536-b19f-6b67a2da8b7e |
||
---|---|---|
.. | ||
e2e | ||
public | ||
rust-ffi | ||
shared | ||
src | ||
ydoc-server | ||
.gitignore | ||
.prettierignore | ||
.prettierrc.json | ||
env.d.ts | ||
eslint.config.js | ||
index.html | ||
node.env.d.ts | ||
package.json | ||
playwright.config.ts | ||
README.md | ||
tsconfig.app.json | ||
tsconfig.app.vitest.json | ||
tsconfig.json | ||
tsconfig.node.json | ||
tsconfig.server.json | ||
tsconfig.server.vitest.json | ||
vite.config.ts | ||
vitest.config.ts |
enso-ide
This template should help get you started developing with Vue 3 in Vite.
Recommended IDE Setup
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:
- Disable the built-in TypeScript Extension
- Run
Extensions: Show Built-in Extensions
from VSCode's command palette - Find
TypeScript and JavaScript Language Features
, right click and selectDisable (Workspace)
- Run
- 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