mirror of
https://github.com/enso-org/enso.git
synced 2025-01-05 15:42:52 +03:00
67f7d33801
Closes #7200 Updating the looks of the project's top bar to the new design. - Project name moved from breadcrumbs to the left of the execution environment selector. - All components use auto-layout in most places, except for breadcrumbs (changing them means basically rewriting them from scratch, but we will use CB's breadcrumbs instead) - Components no longer rely on individual positioning but rather work as parts of the "project view top bar" abstraction (with the use of auto-layout) - We have a new debug scene for the project view top bar, replacing the debug scene for execution environment selector. - Most style parameters were moved to the stylesheet, except breadcrumbs. - Top bar is now fully managed by the Project View, not Graph Editor - Project name is no longer editable. There is no way to rename a project inside the IDE (the corresponding code is removed). It can react on mouse hovers, but the color will not change for now. - Current execution environment has extra bold font and is no longer capitalized. - **Breadcrumbs can be considered broken** from the design point of view. I have no intention of making them look as in the design because we want to reuse CB's breadcrumbs component instead. The functionality should be fully preserved, though. - The Play Icon on the execution environment selector is not updated to the newest design, I suggest creating a separate task for that (I think it is the first case of a rounded triangle in the application, and implementation would some time). https://github.com/enso-org/enso/assets/6566674/16747c02-15b2-4806-ace3-6f03c98040f1
44 lines
1.7 KiB
TOML
44 lines
1.7 KiB
TOML
[package]
|
|
name = "ide-view"
|
|
version = "0.1.0"
|
|
authors = ["Enso Team <contact@enso.org>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
ast = { path = "../language/ast/impl" }
|
|
parser = { path = "../language/parser" }
|
|
enso-config = { path = "../config" }
|
|
enso-frp = { path = "../../../lib/rust/frp" }
|
|
enso-prelude = { path = "../../../lib/rust/prelude" }
|
|
enso-shapely = { path = "../../../lib/rust/shapely" }
|
|
engine-protocol = { path = "../controller/engine-protocol" }
|
|
ensogl = { path = "../../../lib/rust/ensogl" }
|
|
ensogl-component = { path = "../../../lib/rust/ensogl/component" }
|
|
ensogl-derive-theme = { path = "../../../lib/rust/ensogl/app/theme/derive" }
|
|
ensogl-gui-component = { path = "../../../lib/rust/ensogl/component/gui" }
|
|
ensogl-text = { path = "../../../lib/rust/ensogl/component/text" }
|
|
ensogl-text-msdf = { path = "../../../lib/rust/ensogl/component/text/src/font/msdf" }
|
|
ensogl-hardcoded-theme = { path = "../../../lib/rust/ensogl/app/theme/hardcoded" }
|
|
ide-view-component-browser = { path = "component-browser" }
|
|
ide-view-execution-environment-selector = { path = "execution-environment-selector" }
|
|
ide-view-documentation = { path = "documentation" }
|
|
ide-view-graph-editor = { path = "graph-editor" }
|
|
ide-view-project-view-top-bar = { path = "project-view-top-bar" }
|
|
span-tree = { path = "../language/span-tree" }
|
|
js-sys = { workspace = true }
|
|
multi-map = { workspace = true }
|
|
nalgebra = { workspace = true }
|
|
ordered-float = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
uuid = { version = "0.8", features = ["serde", "v4", "wasm-bindgen"] }
|
|
wasm-bindgen = { workspace = true }
|
|
welcome-screen = { path = "welcome-screen" }
|
|
|
|
[dependencies.web-sys]
|
|
version = "0.3.4"
|
|
features = []
|