dees-catalog/ts_web/elements/dees-input-dropdown.ts

302 lines
8.4 KiB
TypeScript
Raw Normal View History

2023-12-08 17:15:40 +00:00
import {
customElement,
DeesElement,
type TemplateResult,
property,
state,
html,
css,
cssManager,
type CSSResult,
} from '@design.estate/dees-element';
2023-08-07 17:13:29 +00:00
import * as domtools from '@design.estate/dees-domtools';
2023-11-29 16:20:32 +00:00
import { demoFunc } from './dees-input-dropdown.demo.js';
2023-12-08 17:15:40 +00:00
import { DeesWindowLayer } from './dees-windowlayer.js';
2020-09-13 16:24:48 +00:00
2021-03-06 15:48:02 +00:00
declare global {
interface HTMLElementTagNameMap {
'dees-input-dropdown': DeesInputDropdown;
}
}
2020-09-13 16:24:48 +00:00
@customElement('dees-input-dropdown')
2022-01-24 00:39:47 +00:00
export class DeesInputDropdown extends DeesElement {
2023-12-08 17:15:40 +00:00
public static demo = demoFunc;
2020-12-09 23:05:13 +00:00
2021-08-19 22:25:14 +00:00
// INSTANCE
2023-10-23 15:26:03 +00:00
public changeSubject = new domtools.plugins.smartrx.rxjs.Subject();
2021-08-19 22:25:14 +00:00
2023-08-28 07:49:51 +00:00
@property({
type: String,
reflect: true,
})
2020-09-13 16:24:48 +00:00
public label: string = 'Label';
@property()
public key: string;
@property()
2023-12-08 17:15:40 +00:00
public options: { option: string; key: string; payload?: any }[] = [];
2020-09-13 16:24:48 +00:00
@property()
2023-12-08 17:15:40 +00:00
public selectedOption: { option: string; key: string; payload?: any } = null;
2020-09-13 16:24:48 +00:00
2021-08-25 11:51:55 +00:00
@property({
2023-12-08 17:15:40 +00:00
type: Boolean,
2021-08-25 11:51:55 +00:00
})
public required: boolean = false;
2021-08-26 19:30:35 +00:00
@property({
2023-12-08 17:15:40 +00:00
type: Boolean,
})
public enableSearch: boolean = true;
@property({
type: Boolean,
2021-08-26 19:30:35 +00:00
})
public disabled: boolean = false;
2023-12-08 17:15:40 +00:00
@state()
public opensToTop: boolean = false;
2023-03-25 16:30:41 +00:00
public static styles = [
cssManager.defaultStyles,
css`
* {
2023-12-08 17:15:40 +00:00
box-sizing: border-box;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
:host {
font-family: Roboto;
position: relative;
display: block;
color: ${cssManager.bdTheme('#222', '#fff')};
margin-bottom: 24px;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.maincontainer {
display: block;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.label {
font-size: 14px;
margin-bottom: 4px;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.selectedBox {
user-select: none;
cursor: pointer;
position: relative;
max-width: 420px;
height: 40px;
line-height: 40px;
padding: 0px 8px;
background: ${cssManager.bdTheme('#fafafa', '#222')};
box-shadow: ${cssManager.bdTheme('0px 1px 4px rgba(0,0,0,0.3)', 'none')};
border-radius: 3px;
border-top: ${cssManager.bdTheme('1px solid #CCC', '1px solid #444')};
border-bottom: ${cssManager.bdTheme('1px solid #CCC', '1px solid #333')};
transition: all 0.2s ease;
}
2023-03-25 19:56:12 +00:00
2023-12-08 17:15:40 +00:00
.accentTop {
border-top: 1px solid #e4002b;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.accentBottom {
border-bottom: 1px solid #e4002b;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.selectionBox {
will-change: transform;
pointer-events: none;
cursor: pointer;
transition: all 0.2s ease;
opacity: 0;
background: ${cssManager.bdTheme('#ffffff', '#222222')};
max-width: 420px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
min-height: 40px;
border-radius: 3px;
padding: 4px;
transform: scale(0.99, 0.99);
position: absolute;
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.selectionBox.show {
pointer-events: all;
opacity: 1;
transform: scale(1, 1);
}
2020-09-13 16:24:48 +00:00
2023-12-08 17:15:40 +00:00
.option {
transition: all 0.1s;
line-height: 40px;
padding: 0px 4px;
border-radius: 3px;
}
.option:hover {
color: #fff;
padding-left: 8px;
background: #0277bd;
}
.search {
padding: 8px;
}
.search input {
display: block;
width: 80%;
background: none;
border: none;
height: 24px;
color: inherit;
text-align: center;
font-size: 12px;
font-weight: 600;
background: ${cssManager.bdTheme('#00000010', '#ffffff08')};
border-radius: 16px;
margin: auto;
}
.search input:focus {
border: none;
outline: none;
}
`,
];
2023-03-25 16:30:41 +00:00
public render(): TemplateResult {
return html`
2020-09-13 16:24:48 +00:00
<div class="maincontainer">
2023-12-08 17:15:40 +00:00
${this.label ? html`<div class="label">${this.label}</div>` : html``}
2020-09-13 16:24:48 +00:00
<div class="selectionBox">
2023-12-08 17:15:40 +00:00
${this.enableSearch && !this.opensToTop
? html`
<div class="search">
<input type="text" placeholder="Search" />
</div>
`
: null}
${this.options.map((option) => {
2020-09-13 16:24:48 +00:00
return html`
2023-12-08 17:15:40 +00:00
<div
class="option"
@click=${() => {
this.updateSelection(option);
}}
>
${option.option}
</div>
`;
2020-09-13 16:24:48 +00:00
})}
2023-12-08 17:15:40 +00:00
${this.enableSearch && this.opensToTop
? html`
<div class="search">
<input type="text" placeholder="Search" />
</div>
`
: null}
</div>
<div
class="selectedBox"
@click="${(event) => {
if (!this.isElevated) {
this.toggleSelectionBox();
} else {
this.updateSelection(this.selectedOption);
}
}}"
>
${this.selectedOption?.option}
2020-09-13 16:24:48 +00:00
</div>
</div>
`;
}
firstUpdated() {
2023-12-08 17:15:40 +00:00
this.selectedOption = this.selectedOption || this.options[0] || null;
2020-09-13 16:24:48 +00:00
}
public async updateSelection(selectedOption) {
this.selectedOption = selectedOption;
2023-12-08 17:15:40 +00:00
this.dispatchEvent(
new CustomEvent('selectedOption', {
detail: selectedOption,
bubbles: true,
})
);
if (this.isElevated) {
this.toggleSelectionBox();
}
2021-08-19 22:25:14 +00:00
this.changeSubject.next(this);
2020-09-13 16:24:48 +00:00
}
2023-12-08 17:15:40 +00:00
private isElevated: boolean = false;
private windowOverlay: DeesWindowLayer;
public async toggleSelectionBox() {
const domtoolsInstance = await this.domtoolsPromise;
const selectedBox: HTMLElement = this.shadowRoot.querySelector('.selectedBox');
const selectionBox: HTMLElement = this.shadowRoot.querySelector('.selectionBox');
if (!this.isElevated) {
this.windowOverlay = await DeesWindowLayer.createAndShow({
blur: false,
});
const elevatedDropdown = new DeesInputDropdown();
elevatedDropdown.isElevated = true;
elevatedDropdown.label = this.label;
elevatedDropdown.enableSearch = this.enableSearch;
elevatedDropdown.required = this.required;
elevatedDropdown.disabled = this.disabled;
elevatedDropdown.style.position = 'fixed';
elevatedDropdown.style.top = this.getBoundingClientRect().top + 'px';
elevatedDropdown.style.left = this.getBoundingClientRect().left + 'px';
elevatedDropdown.style.width = this.clientWidth + 'px';
elevatedDropdown.options = this.options;
elevatedDropdown.selectedOption = this.selectedOption;
console.log(elevatedDropdown.selectedOption);
this.windowOverlay.appendChild(elevatedDropdown);
await domtoolsInstance.convenience.smartdelay.delayFor(0);
elevatedDropdown.toggleSelectionBox();
const destroyOverlay = async () => {
(elevatedDropdown.shadowRoot.querySelector('.selectionBox') as HTMLElement).style.opacity =
'0';
elevatedDropdown.removeEventListener('selectedOption', handleSelection);
this.windowOverlay.removeEventListener('clicked', destroyOverlay);
this.windowOverlay.destroy();
};
const handleSelection = async (event) => {
await this.updateSelection(elevatedDropdown.selectedOption);
destroyOverlay();
};
elevatedDropdown.addEventListener('selectedOption', handleSelection);
this.windowOverlay.addEventListener('clicked', destroyOverlay);
} else {
if (!selectionBox.classList.contains('show')) {
selectionBox.style.width = selectedBox.clientWidth + 'px';
selectionBox.classList.add('show');
const spaceData = selectedBox.getBoundingClientRect();
if (300 > window.innerHeight - spaceData.bottom) {
this.opensToTop = true;
selectedBox.classList.add('accentTop');
selectionBox.style.bottom = selectedBox.clientHeight + 2 + 'px';
} else {
selectedBox.classList.add('accentBottom');
this.opensToTop = false;
const labelOffset = this.label ? 24 : 0;
selectionBox.style.top = selectedBox.clientHeight + labelOffset + 'px';
}
await domtoolsInstance.convenience.smartdelay.delayFor(0);
const searchInput = selectionBox.querySelector('input');
searchInput.focus();
} else {
selectedBox.style.pointerEvents = 'none';
selectionBox.classList.remove('show');
selectedBox.style.opacity = '0';
}
}
2023-11-29 16:20:32 +00:00
}
2020-09-13 16:24:48 +00:00
}