remove not used Et2Taglist

This commit is contained in:
ralf 2022-07-21 17:22:47 +02:00
parent 09ddb72299
commit b1da5b05a9
5 changed files with 0 additions and 624 deletions

View File

@ -1,80 +0,0 @@
/**
* EGroupware eTemplate2 - TaglistOption widget (WebComponent)
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link https://www.egroupware.org
* @author Hadi Nategh
*/
import {LionOption} from '@lion/listbox';
import {css, html} from "@lion/core";
import {taglistStyles} from "./TaglistStyles";
import {colorsDefStyles} from "../Styles/colorsDefStyles";
export class EgwOption extends LionOption
{
static get properties()
{
return {
...super.properties,
title: {type: String},
icon: {type: String}
};
}
constructor()
{
super();
this.title = '';
this.icon = '';
}
static get styles()
{
return [
...super.styles,
colorsDefStyles,
css`
:host([checked]) {
display: none;
}
:host {
line-height: 20px;
padding: 8px;
}
:host(:hover) {
background-color: var(--row_hover);
}
`,
];
}
render()
{
return html`
${this.icon
? html` <img class="egw-option__icon" src="${this.icon}" alt=""/>`
: ''}
${super.render()}
`;
}
}
customElements.define('egw-option', EgwOption);
export class EgwOptionEmail extends EgwOption {
}
customElements.define('egw-option-email', EgwOptionEmail);
export class EgwOptionState extends EgwOption {
}
customElements.define('egw-option-state', EgwOptionState);
export class EgwOptionCategory extends EgwOption {
}
customElements.define('egw-option-category', EgwOptionCategory);

View File

@ -1,285 +0,0 @@
/**
* EGroupware eTemplate2 - Colorpicker widget (WebComponent)
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link https://www.egroupware.org
* @author Hadi Nategh
*/
import {css, html, TemplateResult} from "@lion/core";
import {Et2widgetWithSelectMixin} from "../Et2Select/Et2WidgetWithSelectMixin";
import {LionCombobox} from "@lion/combobox";
import {SelectOption} from "../Et2Select/FindSelectOptions";
import {EgwOption} from "./EgwOption";
import {TaglistSelection} from "./TaglistSelection";
import {taglistStyles} from "./TaglistStyles";
// Force the include, we really need this and without it the file will be skipped
const really_import_me = EgwOption;
const really_import_me2 = TaglistSelection;
/**
* Taglist base class implementation
*/
export class Et2Taglist extends Et2widgetWithSelectMixin(LionCombobox)
{
static get styles()
{
return [
...super.styles,
taglistStyles,
css`
:host {
display: block;
border: 1px solid var(--taglist-combobox__container-boder-color);
border-radius: 3px;
min-height: 24px;
}
* > ::slotted([slot="input"]){min-height:24px;}
.input-group__container{border:none;}
* > ::slotted([role="listbox"]) {
border: 1px solid;
border-color: var(--taglist-combobox__container-boder-color);
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
border-top: none;
margin-top: 1px;
}
`
];
}
static get properties()
{
return {
...super.properties,
multiple: {type : Boolean},
editModeEnabled : {type : Boolean},
allowFreeEntries : {type : Boolean}
}
}
/**
* @type {SlotsMap}
*/
get slots() {
return {
...super.slots,
"selection-display": () =>
{
let display = document.createElement("taglist-selection");
display.setAttribute("slot", "selection-display");
return display;
}
}
}
constructor()
{
super();
this.value = [];
}
connectedCallback()
{
super.connectedCallback();
this.addEventListener('model-value-changed', () => {this._selectionDisplayNode.requestUpdate();});
}
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties);
// If there are select options, enable toggle on click so user can see them
this.showAllOnEmpty = this.select_options.length>0;
if (this.allowFreeEntries)
{
this.value.forEach(_v => {
this.__appendSelOption(_v);
})
}
}
__appendSelOption(_value)
{
const optionsMappedValues = (<SelectOption[]>this.select_options).map(({value}) =>{return value});
if (!optionsMappedValues.includes(_value))
{
this.select_options = (<SelectOption[]>this.select_options).concat({label:_value, value:_value});
}
// we need to wait for the actuall rendering of select options before being able to set our newly added value.
// So far the only way to make sure of that is binding set_value into form-element-register event which does get
// called when the option gets attached to dom. We make sure to unbind that event because we only want that set
// value for a newly added value and not all selected values.
const modelValueChanged = (ev) => {
if (this._inputNode.value == _value)
{
this.set_value(this.getValue().concat([this._inputNode.value]));
// reset the entered value otherwise to clean up the inputbox after
// new entry has been set as new value and option.
this._inputNode.value = '';
}
this.removeEventListener('form-element-register', modelValueChanged);
};
this.addEventListener('form-element-register', modelValueChanged);
}
/**
* @override of _listboxOnKeyDown
* @desc
* Handle various keyboard controls; UP/DOWN will shift focus; SPACE selects
* an item.
*
* @param {KeyboardEvent} ev - the keydown event object
* @protected
*/
_listboxOnKeyDown(ev) {
const { key } = ev;
// make sure we don't mess up with activeIndex after a free entry gets added into options
// it's very important to intercept the key down handler before the listbox (parent) happens.
if (key === 'Enter' && this.allowFreeEntries && this._inputNode.value
&& !this.formElements.filter(_o=>{return _o.choiceValue == this._inputNode.value;}).length)
{
this.activeIndex = -1;
}
super._listboxOnKeyDown(ev);
}
/**
* @param {string} v
* @protected
*/
_setTextboxValue(v) {
// Make sure that we don't loose inputNode.selectionStart and inputNode.selectionEnd
if (!this.allowFreeEntries && this._inputNode.value !== v) {
this._inputNode.value = v;
}
else if (this._inputNode.value !='' && !(<SelectOption[]>this.select_options).filter((_option)=>{return _option.value == this._inputNode.value}).length)
{
this.__appendSelOption(this._inputNode.value);
}
}
getValue(): String[]
{
return this.modelValue;
}
/**
* Set value(s) of taglist
*
* @param value (array of) ids
*/
set_value(value)
{
if (value === '' || value === null)
{
value = [];
}
else if (typeof value === 'string' && this.multiple)
{
value = value.split(',');
}
let values = Array.isArray(value) ? value : [value];
// Switch multiple according to attribute and more than 1 value
if(this.multiple !== true)
{
this.multiple = this.multiple ? values.length > 1 : false;
}
if(this.allowFreeEntries)
{
values.forEach(val =>
{
if(!this.select_options.find(opt => opt.value == val))
{
this.__appendSelOption(val);
}
});
}
this.value = values;
if(!this.multiple)
{
values = values.shift();
}
this.modelValue = values;
}
/**
* Get the node where we're putting the options
*
* If this were a normal selectbox, this would be just the <select> tag (this._inputNode) but in a more
* complicated widget, this could be anything.
*
* It doesn't really matter what we return here in Et2Taglist, since LionListbox will find the options and put them
* where it wants them, and bind any needed handlers (and listen for new options).
* We just return the parent.
*
* @overridable
* @returns {HTMLElement}
*/
get _optionTargetNode() : HTMLElement
{
return super._optionTargetNode;
}
/**
* Render the "empty label", used when the selectbox does not currently have a value
*
* @overridable
* @returns {TemplateResult}
*/
_optionTemplate(option : SelectOption) : TemplateResult
{
return html`
<egw-option .choiceValue="${option.value}" ?checked=${option.value == this.modelValue} ?icon="${option.icon}"
.label="${option.label}">
${option.label}
</egw-option>`;
}
set multiple (value)
{
let oldValue = this.multipleChoice;
this.multipleChoice = value;
this.requestUpdate("multipleChoice", oldValue);
}
get multiple ()
{
return this.multipleChoice;
}
}
customElements.define('et2-taglist', Et2Taglist);
/**
* Taglist-email implementation
*/
export class Et2TaglistEmail extends Et2Taglist
{
_optionTemplate(option : SelectOption) : TemplateResult
{
return html`
<egw-option-email .choiceValue="${option.value}" ?checked=${option.value == this.modelValue} ?icon="${option.icon}">
${option.label}
</egw-option-email>`;
}
}
customElements.define('et2-taglist-email', Et2TaglistEmail);

View File

@ -1,237 +0,0 @@
/**
* EGroupware eTemplate2 - TaglistSelection (WebComponent)
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link https://www.egroupware.org
* @author Hadi Nategh
*/
import {css, html, LitElement} from "@lion/core";
import {taglistStyles} from "./TaglistStyles";
/**
* Implementation of selection tags
*/
export class TaglistSelection extends LitElement {
/**
* keeps last backspace status
*/
protected _removeOnBackspace = false;
static get properties() {
return {
comboxElement: {type: Object},
}
};
static get styles() {
return [
taglistStyles,
css`
:host {
display: flex;
padding: 2px;
padding-top: 0px;
}
.taglist-selection__tags {
flex: 0 0 auto;
display: flex;
flex-direction: row;
gap:5px;
}
.combobox__input {
display: block;
}
.taglist-selection__tag {
margin: 2px 0px 0px 0px;
padding: 3px 5px;
border: 1px solid var(--taglist-selection__tag-boder-color);
border-radius: 3px;
background-color: var(--taglist-selection__tag-bg-color);
background-image: var(--taglist-selection__tag-bg-img);
background-clip: padding-box;
box-shadow: var(--taglist-selection__tag-box-shadow);
color: var(--taglist-selection__tag-color);
line-height: 13px;
font-size: 11px;
white-space: normal;
display: flex;
gap: 10px;
flex-direction: row;
}
.tag-label {
display: flex;
flex-basis: auto;
flex-direction: column;
flex-grow: 1;
justify-content: center;
}
.tag-btn {
width: 10px;
height: 10px;
background-position: 0px -10px;
background-size: cover;
background-repeat: no-repeat;
display: flex;
align-self: center;
cursor: pointer;
}
.tag-editBtn{background-image: var(--tag-editBtn-img);}
.tag-editBtn:hover{background-position: 0 0px;}
.tag-closeBtn{background-image: var(--tag-closeBtn-img);}
.tag-closeBtn:hover {background-position: 0px 0px;}
`
];
}
/**
*
*/
get _inputNode()
{
return this._getComboBoxElement()._inputNode;
}
/**
* @return {Et2Taglist} returns comboboxElement from TaglistComboBox
*/
protected _getComboBoxElement()
{
// @ts-ignore
return <Et2Taglist> this.parentElement;
}
/**
* check if the tag can be closed
* @protected
*/
protected _canBeClosed()
{
return this._getComboBoxElement().multiple && !this._getComboBoxElement().readonly;
}
/**
* @private
* @return returns checked formElements
*/
private __getSelectedTags() {
return this._getComboBoxElement().formElements.filter((_tags) => {
return _tags.checked;
}
);
}
get multipleChoice() {
return this._getComboBoxElement()?.multipleChoice;
}
constructor() {
super();
this.__handleCloseBtn = this.__handleCloseBtn.bind(this);
this.__handleEditBtn = this.__handleEditBtn.bind(this);
this.__inputOnKeyup = this.__inputOnKeyup.bind(this);
}
/**
*
* @param changedProperties
*/
firstUpdated(changedProperties) {
super.firstUpdated(changedProperties);
if (this.multipleChoice) {
this._inputNode.addEventListener('keyup', this.__inputOnKeyup);
}
}
__handleEditBtn(e)
{
const selected = this.__getSelectedTags().filter(_option => {
return (_option.choiceValue == e.target.parentElement.dataset.value);
});
selected[0].checked = false;
this._getComboBoxElement()._inputNode.value = selected[0].choiceValue;
}
__handleCloseBtn(e)
{
this.__getSelectedTags().forEach(_option=>{
if (_option.choiceValue == e.target.parentElement.dataset.value) _option.checked = false;
});
}
/**
*
* @param option
*/
_selectedTagTemplate(option)
{
return html`
<div class="taglist-selection__tag" data-value=${option.value}>
${this._getComboBoxElement().editModeEnabled ? html`<span class="tag-btn tag-editBtn" @click="${this.__handleEditBtn}"></span>` : ''}
<span class="tag-label">${option.label}</span>
${this._canBeClosed() ? html`<span class="tag-btn tag-closeBtn" @click="${this.__handleCloseBtn}"></span>` : ''}
</div>
`;
}
/**
*
*/
_selectedTagsTemplate() {
return html`
<div class="taglist-selection__tags">
${this.__getSelectedTags().map((option) =>
{
return this._selectedTagTemplate(option);
})}
</div>
`;
}
/**
*
*/
render() {
return html` ${this._selectedTagsTemplate()} `;
}
/**
* @private
* @param ev
*/
__inputOnKeyup(ev) {
const { key } = ev;
switch(key)
{
case 'Backspace':
if (!this._inputNode.value && this._canBeClosed()) {
if (this.__getSelectedTags().length && this._removeOnBackspace) {
this.__getSelectedTags()[this.__getSelectedTags().length - 1].checked = false;
}
this._removeOnBackspace = true;
}
else
{
this._removeOnBackspace = false;
}
break;
}
if (key !== 'Backspace') this._removeOnBackspace = false;
}
}
customElements.define('taglist-selection', TaglistSelection);

View File

@ -1,21 +0,0 @@
/**
* styles constant
*/
import {css} from "@lion/core";
export const taglistStyles = css`
:host {
/****** images ************/
--tag-closeBtn-img : url(data:image/png;base64,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);
--tag-editBtn-img : url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAOCAYAAADjXQYbAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3godECY5jN7oQAAAAJxJREFUGNNtzyFSA1EMgOFvyzpMBVyBE2A6tJJ4nkDguAyCczAdVOpzgUVwCCSCQ2CWmWX7ojLzi+QbrKa1tscLnodVuMUjbrAdFqHhHl+4xuliDk+4wxaXOGbmNLbWdnO4wjemzPyADR7wih98Zub736kRh3l/y8xp+eCwplRVn1JVfUpV9SlVdUaJiGmsqjNKRPQpEdGnRMQ/yi9ivDd/aTuHLAAAAABJRU5ErkJggg==);
--taglist-selection__tag-bg-img : linear-gradient(#f4f4f4 20%,#f0f0f0 50%,#e8e8e8 52%,#eee 100%);
/****** colors ************/
--taglist-combobox__container-boder-color : #c0c0c0;
--taglist-selection__tag-boder-color : #aaa;
--taglist-selection__tag-bg-color : #e4e4e4;
--taglist-selection__tag-color : #333;
--taglist-selection__tag-box-shadow : 0 0 2px #fff inset, 0 1px 0 rgb(0 0 0 / 5%);
}
`;

View File

@ -73,7 +73,6 @@ import './Et2Textbox/Et2TextboxReadonly';
import './Et2Textbox/Et2Number';
import './Et2Textbox/Et2NumberReadonly';
import './Et2Colorpicker/Et2Colorpicker';
import './Et2Taglist/Et2Taglist';
import './Et2Url/Et2Url';
import './Et2Url/Et2UrlReadonly';
import './Et2Url/Et2UrlEmail';