Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 | 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 92x 92x 4x 4x 4x 2x 2x 2x 4x 1x 1x 1x 1x 1x 1x 1x 4x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x 92x | import { PropertyValues, TemplateResult, html } from 'lit';
import { property } from 'lit/decorators.js';
import { styleMap } from 'lit-html/directives/style-map.js';
import { Select, SelectOption } from './Select';
import { Icon } from '../../Icons';
enum OmniType {
Group = 'group',
Contact = 'contact'
}
export interface OmniOption extends SelectOption {
id: string;
name: string;
type: OmniType;
urn?: string;
count?: number;
contact?: string;
scheme?: string;
}
const postNameStyle = {
color: 'var(--color-text-dark)',
padding: '0px 6px',
fontSize: '12px'
};
export class Omnibox extends Select<OmniOption> {
@property({ type: String })
valueKey = 'uuid';
@property({ type: Boolean })
groups = false;
@property({ type: Boolean })
contacts = false;
@property({ type: String })
placeholder = 'Select recipients';
@property({ type: Boolean })
multi = true;
@property({ type: Boolean })
jsonValue = true;
@property({ type: Boolean })
searchable = true;
@property({ type: Boolean })
searchOnFocus = true;
@property({ type: Boolean })
queryParam = 'search';
public willUpdate(changes: PropertyValues): void {
if (
(changes.has('groups') || changes.has('contacts')) &&
(this.groups || this.contacts)
) {
let types = '&types=';
if (this.groups) {
types += 'g';
}
if (this.contacts) {
types += 'c';
}
this.endpoint = this.endpoint + types;
}
super.willUpdate(changes);
}
/** An option in the drop down */
public renderOptionDefault(option: OmniOption): TemplateResult {
return html`
<div style="display:flex;">
<div style="margin-right: 8px">${this.getIcon(option)}</div>
<div style="flex: 1">${option.name}</div>
<div
style="background: rgba(50, 50, 50, 0.15); margin-left: 5px; display: flex; align-items: center; border-radius: 4px"
>
${this.getPostName(option)}
</div>
</div>
`;
}
private getPostName(option: OmniOption): TemplateResult {
const style = { ...postNameStyle };
if (option.urn && option.type === OmniType.Contact) {
if (option.urn !== option.name) {
return html`<div style=${styleMap(style)}>${option.urn}</div>`;
}
}
if (option.type === OmniType.Group) {
return html`
<div style=${styleMap(style)}>${option.count.toLocaleString()}</div>
`;
}
return null;
}
/** Selection in the multi-select select box */
public renderSelectedItemDefault(option: OmniOption): TemplateResult {
return html`
<div
style="flex:1 1 auto; text-overflow:ellipsis; overflow:hidden; white-space:nowrap; display: flex; align-items: stretch; color: var(--color-text-dark); font-size: 12px;"
>
<div style="align-self: center; padding: 0px 7px; color: #bbb">
${this.getIcon(option)}
</div>
<div
class="name"
style="align-self: center; padding: 0px; font-size: 12px;"
>
${option.name}
</div>
<div
style="background: rgba(100, 100, 100, 0.05); border-left: 1px solid rgba(100, 100, 100, 0.1); margin-left: 12px; display: flex; align-items: center"
>
${this.getPostName(option)}
</div>
</div>
`;
}
private getIcon(option: OmniOption): TemplateResult {
if (option.type === OmniType.Group) {
return html`<temba-icon name="${Icon.group}"></temba-icon>`;
}
if (option.type === OmniType.Contact) {
return html`<temba-icon name="${Icon.contact}"></temba-icon>`;
}
}
}
|