Fix Et2LinkAdd still tried to use Lion slots

This commit is contained in:
nathan 2024-07-11 16:36:27 -06:00
parent 928eed8c69
commit c363cc7180
3 changed files with 103 additions and 155 deletions

View File

@ -130,7 +130,7 @@ export const ButtonMixin = <T extends Constructor>(superclass : T) => class exte
/* Override primary styling - we use variant=primary on first dialog button */ /* Override primary styling - we use variant=primary on first dialog button */
.button--standard.button--primary { .button--standard.button--primary {
background-color: hsl(240deg 5% 96%); background-color: var(--sl-color-gray-100);
border-color: var(--sl-color-gray-400); border-color: var(--sl-color-gray-400);
color: var(--sl-input-color-hover); color: var(--sl-input-color-hover);
} }

View File

@ -1,14 +1,18 @@
import {Et2InputWidget} from "../Et2InputWidget/Et2InputWidget"; import {Et2InputWidget} from "../Et2InputWidget/Et2InputWidget";
import {css, html, LitElement, PropertyValues} from "lit"; import {css, html, LitElement, nothing} from "lit";
import {Et2LinkAppSelect} from "./Et2LinkAppSelect"; import {Et2LinkAppSelect} from "./Et2LinkAppSelect";
import {LinkInfo} from "./Et2Link"; import {LinkInfo} from "./Et2Link";
import {Et2Button} from "../Et2Button/Et2Button"; import {Et2Button} from "../Et2Button/Et2Button";
import {customElement} from "lit/decorators/custom-element.js";
import {property} from "lit/decorators/property.js";
import {classMap} from "lit/directives/class-map.js";
/** /**
* Find and select a single entry using the link system. * Find and select a single entry using the link system.
* *
* *
*/ */
@customElement("et2-link-add")
export class Et2LinkAdd extends Et2InputWidget(LitElement) export class Et2LinkAdd extends Et2InputWidget(LitElement)
{ {
static get styles() static get styles()
@ -16,75 +20,34 @@ export class Et2LinkAdd extends Et2InputWidget(LitElement)
return [ return [
...super.styles, ...super.styles,
css` css`
:host { .form-control {
display: block; display: flex;
border: solid var(--sl-input-border-width) var(--sl-input-border-color); align-items: center;
border-radius: var(--sl-input-border-radius-medium); flex-wrap: wrap;
}
.form-control-input {
display: flex;
flex: 1 1 auto;
position: relative;
max-width: 100%;
} }
` `
]; ];
} }
static get properties()
{
return {
...super.properties,
/** /**
* Either an array of LinkInfo (defined in Et2Link.ts) or array with keys to_app and to_id * Either an array of LinkInfo (defined in Et2Link.ts) or array with keys to_app and to_id
*/ */
value: {type: Object}, @property({type: Object})
/** value : LinkInfo[] & { to_app : string, to_id : string }
* Limit to just this application - hides app selection
*/
application: {type: String},
/** /**
* Limit to the listed applications (comma seperated) * Limit to the listed applications (comma seperated)
*/ */
applicationList: {type: String} @property()
} applicationList : string
}
get slots()
{
return {
...super.slots,
app: () =>
{
const app = <Et2LinkAppSelect>document.createElement("et2-link-apps");
app.appIcons = false;
if(this.application)
{
app.onlyApp = this.application;
}
else if(typeof this._value !== "undefined" && this._value.app)
{
app.value = this._value.app;
}
if(this.applicationList)
{
app.applicationList = this.applicationList;
}
return app;
},
button: () =>
{
const button = <Et2Button>document.createElement("et2-button");
button.id = this.id + "_add";
button.label = this.egw().lang("Add");
button.noSubmit = true;
return button;
}
}
}
/** /**
* We only care about this value until render. After the sub-nodes are created,
* we take their "live" values for our value.
*
* N.B.: Single underscore! Otherwise we conflict with parent __value
*
* @type {LinkInfo} * @type {LinkInfo}
* @private * @private
*/ */
@ -97,98 +60,35 @@ export class Et2LinkAdd extends Et2InputWidget(LitElement)
this.handleButtonClick = this.handleButtonClick.bind(this); this.handleButtonClick = this.handleButtonClick.bind(this);
} }
connectedCallback() /**
{ * Limit to just this application - hides app selection
super.connectedCallback(); */
@property()
// Clear initial value, no longer needed
this._value = undefined;
this._bindListeners();
}
updated(changedProperties : PropertyValues)
{
super.updated(changedProperties);
if(changedProperties.has("readonly"))
{
this._appNode.readonly = this.readonly;
}
// Pass some properties on to app selection
if(changedProperties.has("only_app"))
{
this._appNode.only_app = this.only_app;
}
if(changedProperties.has("applicationList"))
{
this._appNode.applicationList = this.applicationList;
}
if(changedProperties.has("app_icons"))
{
this._appNode.app_icons = this.app_icons;
}
}
set application(app) set application(app)
{ {
app = app || ""; app = app || "";
// If initial value got set before only_app, it still needs app in pre-render value // If initial value got set before only_app, it still needs app in pre-render value
if(this._value && app) if(this.value && app)
{ {
this._value.app = app; this.value.app = app;
}
if(this._appNode)
{
this._appNode.value = app;
} }
this.requestUpdate("application")
} }
get application() get application()
{ {
if(this._value) return this.value.app;
{
return this._value.app;
}
if(this._appNode)
{
return this._appNode.value;
}
} }
get _appNode() : Et2LinkAppSelect get _appNode() : Et2LinkAppSelect
{ {
return this.querySelector("[slot='app']"); return this.shadowRoot.querySelector("et2-link-apps");
} }
get _buttonNode() : Et2Button get _buttonNode() : Et2Button
{ {
return this.querySelector("[slot='button']"); return this.shadowRoot.querySelector("et2-button");
}
/**
* @return {TemplateResult}
* @protected
*/
_inputGroupInputTemplate()
{
return html`
<div class="input-group__input">
<slot name="app"></slot>
<slot name="button"></slot>
</div>
`;
}
protected _bindListeners()
{
//this._appNode.addEventListener("change", this._handleAppChange);
this._buttonNode.addEventListener("click", this.handleButtonClick)
}
protected _unbindListeners()
{
this._buttonNode.removeEventListener("click", this.handleButtonClick)
} }
/** /**
@ -199,6 +99,55 @@ export class Et2LinkAdd extends Et2InputWidget(LitElement)
{ {
this.egw().open(this.value.to_app + ":" + this.value.to_id, this._appNode.value, 'add'); this.egw().open(this.value.to_app + ":" + this.value.to_id, this._appNode.value, 'add');
} }
}
customElements.define("et2-link-add", Et2LinkAdd); render()
{
const hasLabel = this.label ? true : false;
const hasHelpText = this.helpText ? true : false;
const isEditable = !(this.disabled || this.readonly);
return html`
<div
part="form-control"
class=${classMap({
'link-add': true,
'link-add__readonly': !isEditable,
'vlink-add__disabled': this.disabled,
'form-control': true,
'form-control--medium': true,
'form-control--has-label': hasLabel,
'form-control--has-help-text': hasHelpText
})}
>
<label
id="label"
part="form-control-label"
class="form-control__label"
aria-hidden=${hasLabel ? 'false' : 'true'}
>
<slot name="label">${this.label}</slot>
</label>
<div part="form-control-input" class="form-control-input">
<slot part="prefix" name="prefix"></slot>
<et2-link-apps
onlyApp=${this.application || nothing}
applicationList=${this.applicationList || nothing}
?disabled=${this.disabled}
?readonly=${this.readonly}
.value=${this.value?.app}
></et2-link-apps>
<et2-button
id=${this.id + "_add"}
image="add"
aria-label=${this.egw().lang("Add entry")}
?disabled=${this.disabled}
?readonly=${this.readonly}
noSubmit
@click=${this.handleButtonClick}
></et2-button>
<slot part="suffix" name="suffix"></slot>
</div>
</div>
`;
}
}

View File

@ -1,4 +1,3 @@
import sl_css from '@shoelace-style/shoelace/dist/themes/light.styles.js';
import {css} from "lit"; import {css} from "lit";
import {registerIconLibrary} from '@shoelace-style/shoelace/dist/utilities/icon-library.js'; import {registerIconLibrary} from '@shoelace-style/shoelace/dist/utilities/icon-library.js';
@ -38,7 +37,7 @@ if(typeof egw !== "undefined" && typeof egw.image == "function")
* Customise shoelace styles to match our stuff * Customise shoelace styles to match our stuff
* External CSS & widget styles will override this * External CSS & widget styles will override this
*/ */
export default [sl_css, css` export default [css`
:root, :root,
:host, :host,
.sl-theme-light { .sl-theme-light {
@ -54,9 +53,9 @@ export default [sl_css, css`
--indicator-color: #696969; --indicator-color: #696969;
--sl-input-focus-ring-color: #26537C; --sl-input-focus-ring-color: #26537C;
--sl-focus-ring-width: 2px; --sl-focus-ring-width: 2px;
--sl-color-gray-150: #f0f0f0; --sl-color-gray-150: hsl(240, 4.9%, 92.5%);
} }
.tab-group--top .tab-group__tabs { .tab-group--top .tab-group__tabs {
--track-width: 3px; --track-width: 3px;
} }