All files / components/select upp-select.ts

88.65% Statements 172/194
71.27% Branches 67/94
100% Functions 35/35
88.42% Lines 168/190

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 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 4667x 7x 7x     7x   7x 7x 7x   7x 7x 7x                                     29x       7x 29x 29x 29x     29x 29x 29x 29x   29x   29x 29x       5x 1x     4x   4x 4x 4x     4x 4x 4x             30x               1x         5x 2x 2x       3x 3x       1x       2x   1x 1x 1x 1x 1x           1x 1x 1x     1x 1x 1x 1x 1x         1x 1x     1x               1x       3x       1x       1x       1x     29x 29x     33x       10x       10x 10x   10x 9x 9x 1x           1x       1x           11x       2x 2x 2x             29x   50x         9x 9x 9x               2x 1x     1x 1x       4x       4x 4x   4x 1x     4x 3x 1x 1x             3x 1x 1x             3x 1x 1x                   1x       1x 1x 1x   1x                     1x       1x 1x     1x 1x             29x     7x       2x         2x 1x 1x 1x 1x                 1x 1x           2x 2x       1x       4x 1x     1x 1x 1x 1x             3x 1x     2x     3x       2x               4x   1x 1x     1x 1x     1x 1x     1x 1x         1x   1x 1x 1x     1x         1x       1x   1x 1x 1x     1x         1x       1x   1x 1x 1x     1x         1x       1x   1x 1x       1x 1x       1x    
import { Component, OnInit, OnDestroy } from '@angular/core';
import { Input, Output, EventEmitter } from '@angular/core';
import { ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';
 
import { OnForm } from '@unpispas/upp-wdgt';
import { ViewRenderer } from '@unpispas/upp-wdgt';
 
import { languageService, languageSupport } from '@unpispas/upp-base';
import { viewService } from '@unpispas/upp-base';
import { dataService } from '@unpispas/upp-data';
 
import { Preselect } from '@unpispas/upp-data';
import { Product } from '@unpispas/upp-data';
import { ProductOpt } from '@unpispas/upp-data';
 
import { PlaceView } from '@unpispas/upp-data';
import { ProductView } from '@unpispas/upp-data';
import { PreselectView } from '@unpispas/upp-data';
import { CategoryView } from '@unpispas/upp-data';
import { ProductOptView } from '@unpispas/upp-data';
 
type SuitableItem = ProductView | PreselectView | ProductOptView;
 
@Component({
    selector: 'upp-products-select',
    changeDetection: ChangeDetectionStrategy.OnPush,
    templateUrl: './upp-select.html',
    styleUrls: [
      './upp-select.scss'
    ],
    providers: [{
        provide: ViewRenderer,
        useFactory: (change: ChangeDetectorRef) => new ViewRenderer(change),
        deps: [ChangeDetectorRef]
    }]       
})
export class UppProductSelectComponent extends languageSupport implements OnForm, OnInit, OnDestroy {
    @Input() place: PlaceView | null = null;
    @Input() products: Array <SuitableItem> = [];
    @Input() target: 'FAMILY' | 'OFFER' | 'PRINTER' | 'EXTRA' | null = null;
 
    // different output types based on the given target
    @Output() FamilyChanged = new EventEmitter <(ProductView | PreselectView)[]> ();
    @Output() OfferChanged = new EventEmitter <(ProductView | ProductOptView)[]> ();
    @Output() ExtraChanged = new EventEmitter <(ProductView | ProductOptView)[]> ();
    @Output() PrinterChanged = new EventEmitter <(ProductView | ProductOptView)[]> ();
 
    private _itemsset = new Set<SuitableItem> (); 
 
    constructor(private lang: languageService, private change: ViewRenderer, private data: dataService, public view: viewService){
        super(lang, change.cdref);
    }    
 
    ngOnInit(){
        if (!this.place){
            return;
        }
 
        this.Parent = null;
 
        this._itemsset.clear();
        for (const _item of this.products){
            this._itemsset.add(_item);
        }
 
        for(const _product of this.place.products){
            _product.Checked = this._itemsset.has(_product);
            for (const _select of _product.selects){
                _select.Checked = this._itemsset.has(_select);
            }
        }
    }
 
    ngOnDestroy(): void {
        super.OnDestroy();
    }    
 
    /********************************/
    /* ONFORM IMPLEMENTATION        */
    /********************************/ 
 
    CanAccept(): boolean[] {
        return [ true, true ];
    }
 
    async OnApply(): Promise <boolean> {
        // if selected item, then we are displaying options
        if (this.Selected){
            this.Selected = null;
            return false;   // we are done
        }
 
        // otherwise, notify all stored changes and leave
        this.Changed([...this._itemsset]);
        return true;
    }
 
    async OnAccept(): Promise <boolean> {
        return this.OnApply();
    }
 
    async OnCancel(): Promise <boolean> {
        if (this.Selected){
            // remove all product options            
            for (const item of this._itemsset){
                if ((item.ViewOf(ProductOpt))){
                    const _productoptview = item as ProductOptView;
                    if (_productoptview && _productoptview.product == this.Selected){
                        this._itemsset.delete(item);
                    }
                }
            }
 
            // recover original options 
            const _itemsset = new Set <SuitableItem> ();
            for (const _item of this.products){
                _itemsset.add(_item);
            }
 
            for (const item of _itemsset){
                if ((item.ViewOf(ProductOpt))){
                    const _productoptview = item as ProductOptView;
                    if (_productoptview && _productoptview.product == this.Selected){
                        this._itemsset.add(item);
                    }
                }
            }            
 
            this.Selected = null;            
            return false;   // we are done
        }
 
        return true;
    }
 
    /********************************/
    /* DISPLAY OPTIONS              */
    /********************************/ 
    
    ItemTrack(index: number, item: ProductView | PreselectView): any {
        return item._uuid;
    }
 
    CategoryTrack(index: number, category: CategoryView): any {
        return category?._uuid || null;
    }
 
    OptionTrack(index: number, option: ProductOptView): any {
        return option?._uuid || null;
    }
 
    Product(item: ProductView | PreselectView): ProductView | null {
        return item.ViewOf(Product) ? item as ProductView : null;
    }
 
    Preslct(item: ProductView | PreselectView): PreselectView | null { 
        return item.ViewOf(Preselect) ? item as PreselectView : null;
    }
 
    private _parent: ProductView | null = null;
    private _children: Array <ProductView | PreselectView> | null = null;
 
    get Parent(): ProductView | null {
        return this._parent;
    } 
 
    set Parent(value: ProductView | null){
        Iif (!this.place){
            return;
        }
 
        this._parent = value;
        this._children = null;
 
        if ((this.Parent == null) || (this.Parent.IsGroup)){
            const _grouped = this.place.GroupedProducts;
            for(const _group of _grouped){
                Iif (_group.parent == this._parent){
                    this._children = _group.children;
                }
            }        
        }
        else {  // not a group: provide the preselect items
            Iif (this.target == 'FAMILY'){
                this._children = this.Parent.selects;
            }
            else {
                this._children = null;
            }
        }
    }
 
    get Children(): Array <ProductView | PreselectView> | null {
        return this._children;
    }
 
    CanSelect(item: ProductView | PreselectView): boolean{
        if (item.ViewOf(Product)){
            if (item.IsFamily || item.IsCatalog){
                return false;
            }
        }
 
        return true;
    }
 
    private _selected: ProductView | null = null;
    get Selected(): ProductView | null {
        return this._selected;
    }
 
    set Selected(value: ProductView | null){
        // TODO: controlar el valor del scroll
        this._selectall = false;
        this._selected = value;
        this.change.markForCheck();
    }
 
    /********************************/
    /* EVENT HANDLERS               */
    /********************************/     
 
    MoveBack(): void {
        if (this.Parent == null){
            return;
        }
 
        this.Parent = this.Parent.parent;
        this.change.markForCheck();
    }
 
    OnSelect(item: ProductView | PreselectView | null){
        Iif (!item){
            return;
        }
 
        const _product: ProductView | null = item.ViewOf(Product) ? item as ProductView : null;
        const _direct: PreselectView | null = item.ViewOf(Preselect) ? item as PreselectView : null;
        
        if (_direct){
            this.OnChecked(item);
        }
 
        if (_product){
            if (this.target == 'OFFER'){
                if (_product.IsGroup){
                    this.Parent = _product;
                }
                else E{
                    this.OnChecked(item);
                }
            }
 
            if (this.target == 'EXTRA'){
                if (_product.IsGroup){
                    this.Parent = _product;
                }
                else E{
                    this.OnChecked(item);
                }
            }
 
            if (this.target == 'FAMILY'){
                if (_product.IsGroup || (_product.selects.length > 0)){
                    this.Parent = _product;
                }
                else E{
                    this.OnChecked(item);
                }                    
            }
        }
    }
 
    OnChecked(item: ProductView | PreselectView | null){
        Iif (!item){
            return;
        }
        
        item.Checked = !item.Checked;
        if (item.Checked){
            this._itemsset.add(item);
 
            Iif ((this.target == 'OFFER') || (this.target == 'EXTRA') && item.ViewOf(Product)){
                const _productview = item as ProductView;
                Iif (_productview && _productview.IsProduct && (_productview.options.length > 0)){
                    this.Selected = item as ProductView;
                }
            }
        }
        else E{
            this._itemsset.delete(item);
        }
 
        this.change.markForCheck();
    }
 
    OnOptions(options: Array <ProductOptView>){
        for(const option of options){
            this._itemsset.add(option);
        }
 
        this.Changed([...this._itemsset]);
        this.change.markForCheck();
    }
 
    /********************************/
    /* OPTION SELECTOR METHODS      */
    /********************************/  
 
    private _selectall = false;
 
    get IsSelectAll(): boolean{
        return this._selectall;
    }
 
    set IsSelectAll(value: boolean){
        Iif (!this.Selected){
            return;
        }
 
        // remove all selected options for this product
        if (value == false){
            for (const item of this._itemsset){
                if ((item.ViewOf(ProductOpt))){
                    const _productoptview = item as ProductOptView;
                    Iif (_productoptview && _productoptview.product == this.Selected){
                        this._itemsset.delete(item);
                    }
                }
            }
        }
        
        // include all available options for this product        
        else {
            for (const category of this.Selected.categories){
                for (const option of category.options){
                    this._itemsset.add(option);
                }
            }
        }
 
        this._selectall = value;
        this.change.markForCheck();
    }
 
    OnSelectAll(){
        this.IsSelectAll = !this.IsSelectAll;
    }
 
    SutableCategory(category: CategoryView): boolean{
        if (category.depends.length == 0){
            return true;
        }
 
        return category.depends.some(depend => { 
            const _optionview = this.data.alives.get(depend.option) as ProductOptView;
            if (_optionview){
                return this.IsSelectOption(_optionview); 
            }
            return false;
        });
    }
 
    OnSelectOption(option: ProductOptView): void {
        if (this._itemsset.has(option)){
            this._itemsset.delete(option);
        }
        else {
            this._itemsset.add(option);
        }
 
        this.change.markForCheck();
    }
 
    IsSelectOption(option: ProductOptView): boolean {
        return this.IsSelectAll || this._itemsset.has(option);
    }
 
    /********************************/
    /* PRIVATE METHODS              */
    /********************************/ 
 
    private Changed(items: Array <SuitableItem>){
        switch(this.target){
            case 'FAMILY':
                this._FamilyChanged(items);
                break;
 
            case 'OFFER':
                this._OfferChanged(items);
                break;
 
            case 'EXTRA':
                this._ExtraChanged(items);
                break;
    
            case 'PRINTER':
                this._PrinterChanged(items);
                break;
        }
    }
 
    private _FamilyChanged(items: Array <SuitableItem>){
        const _items: Array <ProductView | PreselectView> = [];
 
        for(const item of items){
            if (item.ViewOf(Product)){
                _items.push(item as ProductView);
            }
 
            Iif (item.ViewOf(Preselect)){
                _items.push(item as PreselectView);
            }
        }
 
        this.FamilyChanged.emit(_items);
    }
 
    private _OfferChanged(items: Array <SuitableItem>){
        const _items: Array <ProductView | ProductOptView> = [];
 
        for(const item of items){
            if (item.ViewOf(Product)){
                _items.push(item as ProductView);
            }
 
            Iif (item.ViewOf(ProductOpt)){
                _items.push(item as ProductOptView);
            }
        }
 
        this.OfferChanged.emit(_items);        
    }
 
    private _ExtraChanged(items: Array <SuitableItem>){
        const _items: Array <ProductView | ProductOptView> = [];
 
        for(const item of items){
            if (item.ViewOf(Product)){
                _items.push(item as ProductView);
            }
 
            Iif (item.ViewOf(ProductOpt)){
                _items.push(item as ProductOptView);
            }
        }
 
        this.ExtraChanged.emit(_items);        
    }
 
    private _PrinterChanged(items: Array <SuitableItem>){
        const _items: Array <ProductView | ProductOptView> = [];
 
        for(const item of items){
            Iif (item.ViewOf(Product)){
                _items.push(item as ProductView);
            }
 
            if (item.ViewOf(ProductOpt)){
                _items.push(item as ProductOptView);
            }
        }
 
        this.PrinterChanged.emit(_items);        
    }
}