Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

!!!FEATURE: Reform foundation and boot process of the UI #3682

Merged
merged 27 commits into from
Feb 2, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
72bd767
TASK: Load head scripts using `<script defer/>`
grebaldi Jan 8, 2024
966fe6a
TASK: Refactor the UI boot process
grebaldi Jan 8, 2024
a7992e2
TASK: Remove `discover` function from utility-helpers package
grebaldi Jan 8, 2024
a0e45c2
TASK: Remove `delay` function from utility-helpers package
grebaldi Jan 8, 2024
fc566d9
TASK: JSON.parse the initial data for the boot process...
grebaldi Jan 10, 2024
6c8ad06
TASK: Refactor fatal initlization error handling
grebaldi Jan 10, 2024
6ecf5e6
TASK: Group all initial data variables into a single view variable
grebaldi Jan 10, 2024
a2ec91b
TASK: Turn SplashScreen into a Fusion Component
grebaldi Jan 10, 2024
df20bf0
TASK: Remove `data-first-tab` attribute from #appContainer
grebaldi Jan 10, 2024
7a71ee6
TASK: Move fusion declaration of initial data into a separate prototype
grebaldi Jan 10, 2024
0e2a69c
TASK: Move fusion declaration of head stylesheets into a separate pro…
grebaldi Jan 10, 2024
05ce39d
TASK: Move fusion declaration of head icons into a separate prototype
grebaldi Jan 10, 2024
d515da3
TASK: Move fusion declaration of headScripts into a separate prototype
grebaldi Jan 10, 2024
2525214
FEATURE: Introduce `Neos.Neos.Ui:Application` prototype
grebaldi Jan 10, 2024
e0590e6
TASK: Use the `Neos.Neos.Ui:Application` prototype to render the UI
grebaldi Jan 10, 2024
6286533
TASK: Remove the `Backend/Index.html` Fluid template
grebaldi Jan 10, 2024
61559f3
TASK: Make fusion includes local to the prototypes that use them
grebaldi Jan 10, 2024
8875c24
TASK: Refactor controller to not use static fusion path
daniellienert Jul 5, 2021
85259f7
!!!FEATURE: Introduce `ApplicationView` to replace Fusion for bootstr…
grebaldi Jan 22, 2024
218a42c
TASK: Remove all backend-related Fusion code
grebaldi Jan 22, 2024
e092605
TASK: Remove `@neos/neos-ui/System/BOOT` redux action + dispatch
grebaldi Jan 22, 2024
4325fb0
TASK: Prevent duplication of `defer` attribute on `<script/>`-includes
grebaldi Jan 22, 2024
ae1e7ba
TASK: `terminateDueToFatalInitializationError` throw directly if no d…
mhsdesign Jan 23, 2024
4918ae2
BUGFIX: Avoid rendering unwanted variables in the view by scoping eve…
mhsdesign Jan 23, 2024
148e851
BUGFIX: Hide first level menus if `hideInMenu` set
mhsdesign Jan 23, 2024
d36a006
TASK: Move Providers to `InitialData` namespace
mhsdesign Jan 30, 2024
ba8cf91
TASK: Remove Views.yaml in favour of $defaultViewObjectName
mhsdesign Feb 2, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
TASK: Group all initial data variables into a single view variable
  • Loading branch information
grebaldi committed Jan 22, 2024
commit 6ecf5e66872bcf5a748a1c7bbcc7b767039bb584
Original file line number Diff line number Diff line change
@@ -60,5 +60,4 @@ prototype(Neos.Neos.Ui:Component.ModuleMenu) < prototype(Neos.Fusion:Map) {
}

@process.filterHiddenModules = ${Array.values(Array.filter(value, (x, index) => x != null))}
@process.json = ${Json.stringify(value)}
}
Loading