2023-11-29 20:29:25 +03:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2024-10-11 21:23:02 +03:00
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
type="text/css"
|
|
|
|
crossorigin
|
|
|
|
href="https://api.mapbox.com/mapbox-gl-js/v2.1.1/mapbox-gl.css"
|
|
|
|
/>
|
2023-11-29 20:29:25 +03:00
|
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
|
|
<!-- FIXME https://github.com/validator/validator/issues/917 -->
|
|
|
|
<!-- FIXME Security Vulnerabilities: https://github.com/enso-org/ide/issues/226 -->
|
|
|
|
<!-- NOTE `frame-src` section of `http-equiv` required only for authorization -->
|
2024-02-22 19:56:36 +03:00
|
|
|
<!-- NOTE [NP]: https://stripe.com/docs/security/guide#content-security-policy for Stripe.js -->
|
2023-11-29 20:29:25 +03:00
|
|
|
<meta
|
|
|
|
http-equiv="Content-Security-Policy"
|
|
|
|
content="
|
Fix various issues on the Dashboard (#10256)
- Fix React DevTools not working in Firefox
- Fix selection of asset names when editing them, not working at all in Firefox
- Convert tick/cross buttons when editing assets, and the "plus" and "reload" buttons on the "shared with" column, "labels" column, and keyboard shortcuts table, to match more with the rest of the design
- Update clip path when the container resizes, so that the icons for hidden columns never overlap the actual table header
- Fix #10184
- Fix renames being committed even when cancelling
- Fix duplicate name detection - previously, all asset types only checked folders with the same name, not assets with the same name
- I'm not 100% sure this is the correct behavior still
- Stop using `kbd` (`aria.Keyboard`) to display keyboard shortcuts, since they should not be displayed in a monospace font.
- Fix "plus" and "reload" buttons going past the right side of their parent table cell
- Limit length of `PermissionDisplay` - if the username of a user with permission is too long, it uses a tooltip instead
- Update the username dynamically for all permissions owned by self, when changing username in the settings.
- This avoids having to fully invalidate the directory tree every time the username changes, given that nothing changes about the assets' metadata themselves.
- Cache children in the Drive tree
- This avoids loading spinners when closing a folder and immediately reopening it.
- Note that children are still re-fetched on reopen to ensure freshness
# Important Notes
- This MAY be split into multiple smaller PRs. However, I think it's better to QA as a single PR, to avoid duplicating work checking behavior that may be changed by a sibling PR (assuming the PR was split into multiple).
2024-06-20 21:30:24 +03:00
|
|
|
default-src 'self';
|
|
|
|
frame-src 'self' data: https://js.stripe.com;
|
|
|
|
script-src 'self' 'unsafe-eval' data: https://*;
|
|
|
|
script-src-elem 'self' 'unsafe-inline' https://*;
|
|
|
|
style-src 'self' 'unsafe-inline' data: https://*;
|
|
|
|
connect-src 'self' data: ws://localhost:* ws://127.0.0.1:* http://localhost:* https://* wss://*;
|
|
|
|
worker-src 'self' blob:;
|
2024-11-15 15:12:55 +03:00
|
|
|
img-src 'self' blob: enso: data: https://*;
|
Fix various issues on the Dashboard (#10256)
- Fix React DevTools not working in Firefox
- Fix selection of asset names when editing them, not working at all in Firefox
- Convert tick/cross buttons when editing assets, and the "plus" and "reload" buttons on the "shared with" column, "labels" column, and keyboard shortcuts table, to match more with the rest of the design
- Update clip path when the container resizes, so that the icons for hidden columns never overlap the actual table header
- Fix #10184
- Fix renames being committed even when cancelling
- Fix duplicate name detection - previously, all asset types only checked folders with the same name, not assets with the same name
- I'm not 100% sure this is the correct behavior still
- Stop using `kbd` (`aria.Keyboard`) to display keyboard shortcuts, since they should not be displayed in a monospace font.
- Fix "plus" and "reload" buttons going past the right side of their parent table cell
- Limit length of `PermissionDisplay` - if the username of a user with permission is too long, it uses a tooltip instead
- Update the username dynamically for all permissions owned by self, when changing username in the settings.
- This avoids having to fully invalidate the directory tree every time the username changes, given that nothing changes about the assets' metadata themselves.
- Cache children in the Drive tree
- This avoids loading spinners when closing a folder and immediately reopening it.
- Note that children are still re-fetched on reopen to ensure freshness
# Important Notes
- This MAY be split into multiple smaller PRs. However, I think it's better to QA as a single PR, to avoid duplicating work checking behavior that may be changed by a sibling PR (assuming the PR was split into multiple).
2024-06-20 21:30:24 +03:00
|
|
|
font-src 'self' data: https://*"
|
2023-11-29 20:29:25 +03:00
|
|
|
/>
|
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="
|
|
|
|
width=device-width,
|
|
|
|
initial-scale = 1.0,
|
|
|
|
maximum-scale = 1.0,
|
|
|
|
user-scalable = no"
|
|
|
|
/>
|
2024-10-30 16:48:59 +03:00
|
|
|
<title>Enso %ENSO_IDE_VERSION%</title>
|
2023-11-29 20:29:25 +03:00
|
|
|
</head>
|
|
|
|
<body>
|
Dashboard improvements (from 24 September 2024 + 30 September 2024) (#11219)
- Close https://github.com/enso-org/cloud-v2/issues/1508
- :warning: Labels modal - add selection indicator where user can (de)select multiple labels
- Checkboxes currently still cause the dialog to (incorrectly) close
- Edit datalink -> select enso secret -> options are too narrow for enso path. Strip enso://Users(Teams), if possible make the options list longer on the left side
- Added (or rather, re-enabled via CSS) horizontal scroll instead
- Make Versions, Sessions, Settings as tabs similar to documentation panel in graph editor
- Edit description in context menu should open asset panel with description input active
- Edit secret should be moved to asset panel (same like datalink)
- Dim background when "edit description", "edit secret", or "edit datalink" are clicked/triggered via shortcut to highlight input
- Hide unused (= no backend support) columns and icons: accessed by projects and accessed data
- *Partial* frontend fixes for https://github.com/enso-org/cloud-v2/issues/1529
- (1) Fix settings title being horizontally centered and split on multiple lines
- (2) :x: backend issue
- (3) :x: out of scope
- (4) :x: backend issue
- (5) :x: out of scope
- (6) :x: out of scope
- (7) :x: backend issue
- (8) :x: already fixed in #11126
- (9) :x: out of scope (potentially requires a way to trigger a tooltip on a disabled button)
- (10) :x: out of scope
- (11) :x: out of scope
- (12) :x: out of scope
- (13) URL encode `enso://` URLs in "copy as path"
- (14) Double click on datalink make asset open and close (not sure if this has already been fixed)
- (15) Clicking anywhere on Asset Panel no longer deselects assets (not sure if this has already been fixed)
- (16) :x: addressed in #11268
- (17) Make list of labels in Asset Panel (right sidebar) horizontal instead of (incorrectly) vertical
- (18) Only show "Billing" settings tab for organization admins
- Use "workspace" instead of "network" icon for project tabs
- Other fixes:
- Fix Asset Panel (right sidebar) not being able to be toggled off if it is temporarily open (when triggered from editing description, or editing secret, or editing datalink)
- Make "cancel" and "reset" buttons default to outline variant, instead of ghost variant
- Fix style of dropdown
- Change Datalink editor dialog so that object keys are above inputs, not beside them. This gives inputs much more horizontal space for children of deeply nested objects.
Issues left to fix:
- Checkboxes currently still cause the dialog to (incorrectly) close
- "Edit description" actions etc. do not properly focus inputs
Issues left to do (out of scope):
- Show username of user currently using a project (possibly as tooltip?) if the project is currently disabled.
- Dropdown and autocomplete entries should be in their own dialog, so that they can escape the parent dialog if they are too long
# Important Notes
None
2024-10-09 12:10:49 +03:00
|
|
|
<div id="enso-spotlight" class="enso-spotlight"></div>
|
2023-11-29 20:29:25 +03:00
|
|
|
<div id="enso-dashboard" class="enso-dashboard"></div>
|
|
|
|
<div id="enso-chat" class="enso-chat"></div>
|
2024-05-31 12:59:25 +03:00
|
|
|
<div id="enso-portal-root" class="enso-portal-root"></div>
|
2024-10-11 21:23:02 +03:00
|
|
|
<script type="module" src="/src/entrypoint.ts"></script>
|
2023-11-29 20:29:25 +03:00
|
|
|
<noscript> This page requires JavaScript to run. Please enable it in your browser. </noscript>
|
|
|
|
</body>
|
|
|
|
</html>
|