chore: fix combobox extension demos

This commit is contained in:
Thijs Louisse 2023-05-30 19:13:30 +02:00
parent b66662931f
commit 8293059fea
9 changed files with 272 additions and 264 deletions

View file

@ -46,48 +46,56 @@ export const Github = () => html`
## Whatsapp
```js preview-story
export const Whatsapp = () => html`
<wa-combobox name="combo" label="Filter chats">
<wa-option
title="Barack Obama"
text="Yup, let's try that for now👍"
time="15:02"
is-user-text
is-user-text-read
image="https://pbs.twimg.com/profile_images/822547732376207360/5g0FC8XX_400x400.jpg"
.choiceValue=${'Barack Obama'}
></wa-option>
<wa-option
title="Donald Trump"
text="Take care!"
time="14:59"
is-user-text
image="https://pbs.twimg.com/profile_images/874276197357596672/kUuht00m_400x400.jpg"
.choiceValue=${'Donald Trump'}
></wa-option>
<wa-option
title="Joe Biden"
text="Hehe😅. You too, man, you too..."
time="yesterday"
image="https://pbs.twimg.com/profile_images/1308769664240160770/AfgzWVE7_400x400.jpg"
.choiceValue=${'Joe Biden'}
></wa-option>
<wa-option
title="George W. Bush"
time="friday"
text="You bet I will. Let's catch up soon!"
image="https://pbs.twimg.com/profile_images/828483922266877954/ljYUWUCu_400x400.jpg"
.choiceValue=${'George W. Bush'}
></wa-option>
<wa-option
title="Bill Clinton"
time="thursday"
text="Dude...😂 😂 😂"
image="https://pbs.twimg.com/profile_images/1239440892664086529/iY0Z83Dr_400x400.jpg"
.choiceValue=${'Bill Clinton'}
></wa-option>
</wa-combobox>
`;
export const Whatsapp = () => {
const obamaImgUrl = new URL('../src/wa-combobox/assets/obama.jpeg', import.meta.url).href;
const trumpImgUrl = new URL('../src/wa-combobox/assets/trump.jpeg', import.meta.url).href;
const bidenImgUrl = new URL('../src/wa-combobox/assets/biden.jpeg', import.meta.url).href;
const bushImgUrl = new URL('../src/wa-combobox/assets/bush.jpeg', import.meta.url).href;
const clintonImgUrl = new URL('../src/wa-combobox/assets/clinton.jpeg', import.meta.url).href;
return html`
<wa-combobox name="combo" label="Filter chats">
<wa-option
title="Barack Obama"
text="Yup, let's try that for now👍"
time="15:02"
is-user-text
is-user-text-read
image="${obamaImgUrl}"
.choiceValue=${'Barack Obama'}
></wa-option>
<wa-option
title="Donald Trump"
text="Take care!"
time="14:59"
is-user-text
image="${trumpImgUrl}"
.choiceValue=${'Donald Trump'}
></wa-option>
<wa-option
title="Joe Biden"
text="Hehe😅. You too, man, you too..."
time="yesterday"
image="${bidenImgUrl}"
.choiceValue=${'Joe Biden'}
></wa-option>
<wa-option
title="George W. Bush"
time="friday"
text="You bet I will. Let's catch up soon!"
image="${bushImgUrl}"
.choiceValue=${'George W. Bush'}
></wa-option>
<wa-option
title="Bill Clinton"
time="thursday"
text="Dude...😂 😂 😂"
image="${clintonImgUrl}"
.choiceValue=${'Bill Clinton'}
></wa-option>
</wa-combobox>
`;
};
```
**Whatsapp example shows:**

View file

@ -397,7 +397,10 @@ export class GoogleCombobox extends LionCombobox {
get slots() {
return {
...super.slots,
label: () => renderLitAsNode(html` <img alt="Google Search" src="${googleSearchLogoUrl}" />`),
label: () =>
renderLitAsNode(
html` <img alt="Google Search" src="${googleSearchLogoUrl}" style="width:auto; " />`,
),
prefix: () => renderLitAsNode(html` <span>${googleSearchIcon}</span> `),
suffix: () =>
renderLitAsNode(

View file

@ -7,31 +7,29 @@ import './style/load-roboto.js';
// TODO: insert ink wc here
export class MdOption extends LionOption {
static get styles() {
return [
...super.styles,
css`
:host {
position: relative;
padding: 8px;
}
static styles = [
...super.styles,
css`
:host {
position: relative;
padding: 8px;
}
:host([focused]) {
background: lightgray;
}
:host([focused]) {
background: lightgray;
}
:host([active]) {
color: #1867c0 !important;
caret-color: #1867c0 !important;
}
:host([active]) {
color: #1867c0 !important;
caret-color: #1867c0 !important;
}
:host ::slotted(.md-highlight) {
color: rgba(0, 0, 0, 0.38);
background: #eee;
}
`,
];
}
:host ::slotted(.md-highlight) {
color: rgba(0, 0, 0, 0.38);
background: #eee;
}
`,
];
/**
* @override
@ -67,23 +65,27 @@ export class MdOption extends LionOption {
customElements.define('md-option', MdOption);
export class MdCombobox extends MdFieldMixin(LionCombobox) {
static get styles() {
return [
...super.styles,
css`
.input-group__container {
display: flex;
border-bottom: none;
}
static styles = [
...super.styles,
css`
.input-group__container {
display: flex;
border-bottom: none;
}
* > ::slotted([role='listbox']) {
box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.28);
padding-top: 8px;
padding-bottom: 8px;
top: 2px;
}
`,
];
* > ::slotted([role='listbox']) {
box-shadow: 0 4px 6px 0 rgba(32, 33, 36, 0.28);
padding-top: 8px;
padding-bottom: 8px;
top: 2px;
}
`,
];
constructor() {
super();
this.showAllOnEmpty = true;
}
}
customElements.define('md-combobox', MdCombobox);

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

View file

@ -15,164 +15,162 @@ class WaOption extends LionOption {
};
}
static get styles() {
return [
...super.styles,
css`
:host {
--background-default: white;
--background-default-active: gray;
--secondary: #777;
--secondary-lighter: #aaa;
--chatlist-icon: #aaa;
background-color: var(--background-default);
cursor: pointer;
color: rgb(74, 74, 74);
padding: 0;
transition: max-height 0.4s ease, opacity 0.3s ease;
max-height: 500px;
}
static styles = [
...super.styles,
css`
:host {
--background-default: white;
--background-default-active: gray;
--secondary: #777;
--secondary-lighter: #aaa;
--chatlist-icon: #aaa;
background-color: var(--background-default);
cursor: pointer;
color: rgb(74, 74, 74);
padding: 0;
transition: max-height 0.4s ease, opacity 0.3s ease;
max-height: 500px;
}
:host([checked]) {
background-color: #eee;
}
:host([checked]) {
background-color: #eee;
}
:host(:hover) {
background-color: #f6f6f6;
}
:host(:hover) {
background-color: #f6f6f6;
}
.wa-option {
position: relative;
display: flex;
flex-direction: row;
height: 72px;
pointer-events: all;
}
.wa-option {
position: relative;
display: flex;
flex-direction: row;
height: 72px;
pointer-events: all;
}
.wa-option__image {
display: flex;
flex: none;
align-items: center;
margin-top: -1px;
padding: 0 15px 0 13px;
}
.wa-option__image {
display: flex;
flex: none;
align-items: center;
margin-top: -1px;
padding: 0 15px 0 13px;
}
.wa-option__image-inner {
position: relative;
overflow: hidden;
background-color: var(--avatar-background);
border-radius: 50%;
height: 49px;
width: 49px;
}
.wa-option__image-inner {
position: relative;
overflow: hidden;
background-color: var(--avatar-background);
border-radius: 50%;
height: 49px;
width: 49px;
}
.wa-option__image-inner img,
.wa-option__image-inner svg {
width: 100%;
height: 100%;
}
.wa-option__image-inner img,
.wa-option__image-inner svg {
width: 100%;
height: 100%;
}
.wa-option__image-inner-inner {
position: absolute;
top: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.wa-option__image-inner-inner {
position: absolute;
top: 0;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
}
.wa-option__content {
display: flex;
flex-basis: auto;
flex-direction: column;
flex-grow: 1;
justify-content: center;
min-width: 0;
border-bottom: 1px solid #eee;
padding-right: 15px;
}
.wa-option__content {
display: flex;
flex-basis: auto;
flex-direction: column;
flex-grow: 1;
justify-content: center;
min-width: 0;
border-bottom: 1px solid #eee;
padding-right: 15px;
}
.wa-option__content-row1 {
display: flex;
align-items: center;
line-height: normal;
text-align: left;
}
.wa-option__content-row1 {
display: flex;
align-items: center;
line-height: normal;
text-align: left;
}
.wa-option__content-row1-title {
display: flex;
flex-grow: 1;
overflow: hidden;
color: var(--primary-strong);
font-weight: 400;
font-size: 17px;
line-height: 21px;
}
.wa-option__content-row1-title {
display: flex;
flex-grow: 1;
overflow: hidden;
color: var(--primary-strong);
font-weight: 400;
font-size: 17px;
line-height: 21px;
}
.wa-option__content-row1-time {
line-height: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-left: 6px;
margin-top: 3px;
.wa-option__content-row1-time {
line-height: 14px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
margin-left: 6px;
margin-top: 3px;
flex: none;
max-width: 100%;
color: var(--secondary-lighter);
font-size: 12px;
line-height: 20px;
}
flex: none;
max-width: 100%;
color: var(--secondary-lighter);
font-size: 12px;
line-height: 20px;
}
.wa-option__content-row2 {
display: flex;
align-items: center;
min-height: 20px;
color: var(--secondary);
font-size: 13px;
line-height: 20px;
margin-top: 2px;
/* color: var(--secondary-stronger); */
}
.wa-option__content-row2 {
display: flex;
align-items: center;
min-height: 20px;
color: var(--secondary);
font-size: 13px;
line-height: 20px;
margin-top: 2px;
/* color: var(--secondary-stronger); */
}
.wa-option__content-row2-text {
flex-grow: 1;
overflow: hidden;
font-weight: 400;
font-size: 14px;
line-height: 20px;
white-space: nowrap;
text-overflow: ellipsis;
}
.wa-option__content-row2-text {
flex-grow: 1;
overflow: hidden;
font-weight: 400;
font-size: 14px;
line-height: 20px;
white-space: nowrap;
text-overflow: ellipsis;
}
.wa-option__content-row2-text-inner {
display: flex;
align-items: flex-start;
}
.wa-option__content-row2-text-inner {
display: flex;
align-items: flex-start;
}
.wa-option__content-row2-text-inner-icon {
display: none;
flex: none;
color: var(--chatlist-icon);
vertical-align: top;
margin-right: 2px;
}
.wa-option__content-row2-text-inner-icon {
display: none;
flex: none;
color: var(--chatlist-icon);
vertical-align: top;
margin-right: 2px;
}
:host([is-user-text]) .wa-option__content-row2-text-inner-icon {
display: inline-block;
}
:host([is-user-text]) .wa-option__content-row2-text-inner-icon {
display: inline-block;
}
:host([is-user-text-read]) .wa-option__content-row2-text-inner-icon {
color: lightblue;
}
/*
:host([is-user-text-read]) .wa-option__content-row2-text-inner-icon {
color: lightblue;
}
/*
.wa-option__content-row2-menu {
} */
`,
];
}
`,
];
render() {
return html`<div class="wa-option">
@ -285,59 +283,56 @@ class WaOption extends LionOption {
customElements.define('wa-option', WaOption);
class WaCombobox extends LionCombobox {
static get styles() {
return [
...super.styles,
css`
:host {
font-family: SF Pro Text, SF Pro Icons, system, -apple-system, system-ui,
BlinkMacSystemFont, Helvetica Neue, Helvetica, Lucida Grande, Kohinoor Devanagari,
sans-serif;
}
static styles = [
...super.styles,
css`
:host {
font-family: SF Pro Text, SF Pro Icons, system, -apple-system, system-ui, BlinkMacSystemFont,
Helvetica Neue, Helvetica, Lucida Grande, Kohinoor Devanagari, sans-serif;
}
.input-group__container {
display: flex;
border-bottom: none;
}
.input-group__container {
display: flex;
border-bottom: none;
}
* > ::slotted([role='listbox']) {
max-height: none;
}
* > ::slotted([role='listbox']) {
max-height: none;
}
* > ::slotted([slot='input']) {
font-size: 14px;
}
* > ::slotted([slot='input']) {
font-size: 14px;
}
.input-group {
padding: 15px;
background: #f6f6f6;
}
.input-group {
padding: 15px;
background: #f6f6f6;
}
.input-group__prefix {
margin-right: 20px;
color: #999;
display: flex;
}
.input-group__prefix {
margin-right: 20px;
color: #999;
display: flex;
}
.input-group__container {
border-radius: 18px;
background: white;
padding: 7px;
padding-left: 16px;
}
.input-group__container {
border-radius: 18px;
background: white;
padding: 7px;
padding-left: 16px;
}
/** Undo Popper */
#overlay-content-node-wrapper {
position: static !important;
width: auto !important;
transform: none !important;
/** Undo Popper */
#overlay-content-node-wrapper {
position: static !important;
width: auto !important;
transform: none !important;
/* height: 300px;
/* height: 300px;
overflow: scroll; */
}
`,
];
}
}
`,
];
get slots() {
return {
@ -360,7 +355,7 @@ class WaCombobox extends LionCombobox {
/** @configure OverlayMixin */
this.opened = true;
/** @configure LionCombobox */
this.showAllOnEmpty = true;
this.showAllOnEmpty = false;
/** @configure LionCombobox */
this.rotateKeyboardNavigation = false;
}