mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* wip * restructure backend for new ui structure * new patchdb bootstrap, single websocket api, local storage migration, more * update db websocket * init apis * update patch-db * setup progress * feat: implement state service, alert and routing Signed-off-by: waterplea <alexander@inkin.ru> * update setup wizard for new types * feat: add init page Signed-off-by: waterplea <alexander@inkin.ru> * chore: refactor message, patch-db source stream and connection service Signed-off-by: waterplea <alexander@inkin.ru> * fix method not found on state * fix backend bugs * fix compat assets * address comments * remove unneeded styling * cleaner progress * bugfixes * fix init logs * fix progress reporting * fix navigation by getting state after init * remove patch dependency from live api * fix caching * re-add patchDB to live api * fix metrics values * send close frame * add bootId and fix polling --------- Signed-off-by: waterplea <alexander@inkin.ru> Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: waterplea <alexander@inkin.ru>
18 lines
468 B
HTML
18 lines
468 B
HTML
<section *ngIf="progress$ | async as progress">
|
|
<h1 [style.font-size.rem]="2.5" [style.margin.rem]="1">
|
|
Setting up your server
|
|
</h1>
|
|
<div class="center-wrapper" *ngIf="progress.total">
|
|
Progress: {{ (progress.total * 100).toFixed(0) }}%
|
|
</div>
|
|
|
|
<progress
|
|
tuiProgressBar
|
|
class="progress"
|
|
[style.max-width.rem]="40"
|
|
[style.margin]="'1rem auto'"
|
|
[attr.value]="progress.total"
|
|
></progress>
|
|
<p>{{ progress.message }}</p>
|
|
</section>
|