Skip to content

Commit

Permalink
Merge pull request quarkusio#40407 from phillip-kruger/dev-ui-web-loc…
Browse files Browse the repository at this point in the history
…ator-cosmetic

Dev UI: Small cosmetic update to Web depenendency locator screen
  • Loading branch information
cescoffier authored May 2, 2024
2 parents 63e8c95 + 8ef53d5 commit 931d8f3
Showing 1 changed file with 19 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {LitElement, html, css} from 'lit';
import {webDependencyLibraries} from 'build-time-data';
import '@vaadin/tabsheet';
import '@vaadin/tabs';
import '@vaadin/grid';
import '@vaadin/icon';
Expand All @@ -13,37 +12,48 @@ import {columnBodyRenderer} from '@vaadin/grid/lit.js';
export class QwcWebDependencyLocatorLibraries extends LitElement {

static styles = css`
:host {
display: flex;
height: 100%;
padding: 10px;
gap: 20px;
}
.full-height {
height: 100%;
}
.tabcontent {
height: 100%;
width: 100%;
}
`;

static properties = {
_webDependencyLibraries: {},
_selectedWebDependency: {state: true}
};

constructor() {
super();
this._webDependencyLibraries = webDependencyLibraries;
this._selectedWebDependency = this._webDependencyLibraries[0];
}

render() {
return html`
<vaadin-tabsheet class="full-height">
<vaadin-tabs slot="tabs">
<vaadin-tabs @selected-changed="${this._tabSelectedChanged}" orientation="vertical">
${this._webDependencyLibraries.map(webDependency => html`
<vaadin-tab id="${webDependency.webDependencyName}">
${webDependency.webDependencyName + " (" + webDependency.version + ")"}
</vaadin-tab>`)}
</vaadin-tabs>
${this._webDependencyLibraries.map(webDependency => this._renderLibraryAssets(webDependency))}
</vaadin-tabsheet>
${this._renderLibraryAssets(this._selectedWebDependency)}
`;
}

_tabSelectedChanged(e){
this._selectedWebDependency = this._webDependencyLibraries[e.detail.value];
}

_renderLibraryAssets(library) {
const dataProvider = function (params, callback) {
if (params.parentItem === undefined) {
Expand All @@ -54,7 +64,7 @@ export class QwcWebDependencyLocatorLibraries extends LitElement {
};

return html`
<div tab="${library.webDependencyName}" class="full-height">
<div tab="${library.webDependencyName}" class="tabcontent">
<vaadin-grid .itemHasChildrenPath="${'children'}" .dataProvider="${dataProvider}"
theme="compact no-border" class="full-height">
<vaadin-grid-tree-column path="name"></vaadin-grid-tree-column>
Expand Down

0 comments on commit 931d8f3

Please sign in to comment.