Skip to content

feat(desktop-ui): refactor to standalone/signal, update angular to v20, new docs #657

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

Merged
merged 13 commits into from
Jun 26, 2025

Conversation

marcj
Copy link
Member

@marcj marcj commented Jun 23, 2025

Screenshot 2025-06-24 at 20 46 12

Updated all angular code to v20, @deepkit/desktop-ui is now standalone/signal based.

@marcj marcj merged commit a39d26c into master Jun 26, 2025
11 checks passed
@marcj
Copy link
Member Author

marcj commented Jun 26, 2025

Comment on lines +10 to +26
<dui-style />
<dui-window normalize-style>
<dui-window-header size="small">
<dui-window-toolbar>
<deepkit-header-logo title="API Console"></deepkit-header-logo>

<dui-window-toolbar-container name="main"></dui-window-toolbar-container>
<div class="top-right">
<div>
<a routerLink="/api">OVERVIEW</a>
</div>
<deepkit-header-status-bar></deepkit-header-status-bar>
</div>
</dui-window-toolbar>
</dui-window-header>
<dui-window-content [sidebarVisible]="sidebarVisible" class="no-padding">
<router-outlet></router-outlet>
</dui-window-content>
</dui-window>
<dui-window-toolbar-container name="main"></dui-window-toolbar-container>
<div class="top-right">
<div>
<a routerLink="/api">OVERVIEW</a>
</div>
<deepkit-header-status-bar [client]="client.client"></deepkit-header-status-bar>
</div>
</dui-window-toolbar>
</dui-window-header>
<dui-window-content [sidebarVisible]="sidebarVisible" class="no-padding">
<router-outlet></router-outlet>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I encourage consistent convention for self-closing tags:

  • uses self-closing
  • , , and use open/closing tags convention

Comment on lines +18 to +22
entryPoints = new LiveSubject<ApiEntryPoints>((subject) => {
this.api.getEntryPoints().then(v => subject.next(v));
});

public document = new LiveSubject<ApiDocument>((subject) => {
document = new LiveSubject<ApiDocument>((subject) => {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i'm pretty sure subjects are meant to be readonly in 99% of cases :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants