aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/workspace/tabs/product-hierarchy/product-hierarchy-view-model.ts
blob: 233b12952b578be40d463653badb7cbc941f234f (plain)
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
'use strict';
import {ComponentFactory} from "app/utils";
import {Product, IGroup, ISubCategory, IMainCategory} from "app/models";
import {IWorkspaceViewModelScope} from "app/view-models/workspace/workspace-view-model";
import {CacheService} from "app/services";

export interface IProductHierarchyScope extends IWorkspaceViewModelScope {

    categoriesOptions:Array<IMainCategory>;
    product:Product;
    isLoading:boolean;
    showDropDown:boolean;

    onInputTextClicked():void;
    onGroupSelected(category:IMainCategory, subcategory:ISubCategory, group:IGroup):void;
    clickOutside():void;
    deleteGroup(uniqueId:string):void;
}

export class ProductHierarchyViewModel {

    static '$inject' = [
        '$scope',
        'Sdc.Services.CacheService',
        'ComponentFactory',
        '$state'
    ];

    constructor(private $scope:IProductHierarchyScope,
                private cacheService:CacheService,
                private ComponentFactory:ComponentFactory,
                private $state:ng.ui.IStateService) {


        this.$scope.product = <Product>this.$scope.getComponent();
        this.$scope.setValidState(true);
        this.initScope();
        this.$scope.updateSelectedMenuItem();
    }

    private initCategories = () => {
        this.$scope.categoriesOptions = angular.copy(this.cacheService.get('productCategories'));
        let selectedGroup:Array<IGroup> = [];
        _.forEach(this.$scope.product.categories, (category:IMainCategory) => {
            _.forEach(category.subcategories, (subcategory:ISubCategory) => {
                selectedGroup = selectedGroup.concat(subcategory.groupings);
            });
        });
        _.forEach(this.$scope.categoriesOptions, (category:IMainCategory) => {
            _.forEach(category.subcategories, (subcategory:ISubCategory) => {
                _.forEach(subcategory.groupings, (group:ISubCategory) => {
                    let componentGroup:IGroup = _.find(selectedGroup, (componentGroupObj) => {
                        return componentGroupObj.uniqueId == group.uniqueId;
                    });
                    if (componentGroup) {
                        group.isDisabled = true;
                    }
                });
            });
        });
    };

    private setFormValidation = ():void => {

        this.$scope.setValidState(true);

    };

    private initScope = ():void => {
        this.$scope.isLoading = false;
        this.$scope.showDropDown = false;
        this.initCategories();
        this.setFormValidation();

        this.$scope.onGroupSelected = (category:IMainCategory, subcategory:ISubCategory, group:IGroup):void => {
            this.$scope.product.addGroup(category, subcategory, group);
            this.$state.current.data.unsavedChanges = !this.$scope.isViewMode();
            group.isDisabled = true;
            this.$scope.showDropDown = false;
            this.setFormValidation();
        };

        this.$scope.onInputTextClicked = ():void => {//just edit the component in place, no pop up nor server update ?
            this.$scope.showDropDown = !this.$scope.showDropDown;
        };

        this.$scope.clickOutside = ():any => {
            this.$scope.showDropDown = false;
        };

        this.$scope.deleteGroup = (uniqueId:string):void => {
            //delete group from component
            this.$scope.product.deleteGroup(uniqueId);
            this.$state.current.data.unsavedChanges = !this.$scope.isViewMode();
            this.setFormValidation();
            //enabled group
            _.forEach(this.$scope.categoriesOptions, (category:IMainCategory) => {
                _.forEach(category.subcategories, (subcategory:ISubCategory) => {
                    let groupObj:IGroup = _.find(subcategory.groupings, (group) => {
                        return group.uniqueId === uniqueId;
                    });
                    if (groupObj) {
                        groupObj.isDisabled = false;
                    }
                });
            });
        }
    };
}