summaryrefslogtreecommitdiffstats
path: root/catalog-ui/app/scripts/view-models/wizard/hierarchy-step/hierarchy-step.ts
blob: a974c0af81ef426a8dbff538764b33427b49c8b7 (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
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
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
/// <reference path="../../../references"/>
module Sdc.ViewModels.Wizard {
    'use strict';

    export interface IHierarchyStepScope extends IWizardCreationScope {

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

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

    export class HierarchyStepViewModel implements IWizardCreationStep {

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

        constructor(private $scope:IHierarchyStepScope,
                    private cacheService:Sdc.Services.CacheService,
                    private ComponentFactory: Sdc.Utils.ComponentFactory) {

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

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

        private setFormValidation = ():void => {
            if(!this.$scope.product.categories || this.$scope.product.categories.length === 0){
                this.$scope.setValidState(false);
            }
            else{
                this.$scope.setValidState(true);
            }

        };

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

            this.$scope.onGroupSelected = (category: Models.IMainCategory, subcategory: Models.ISubCategory, group: Models.IGroup):void => {
                this.$scope.showDropDown = false;
                this.$scope.product.addGroup(category, subcategory, group);
                group.isDisabled = true;
                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.setFormValidation();
                //enabled group
                _.forEach(this.$scope.categoriesOptions, (category: Models.IMainCategory) => {
                    _.forEach(category.subcategories, (subcategory:Models.ISubCategory) => {
                        let groupObj:Models.IGroup = _.find (subcategory.groupings, (group) => {
                            return group.uniqueId === uniqueId;
                        });
                        if(groupObj){
                            groupObj.isDisabled = false;
                        }
                    });
                });
            }
        };

        public save = (callback:Function):void => {
            let onFailed = (response) => {
                callback(false);
            };

            let onSuccess = (component: Models.Components.Component) => {
                this.$scope.product = <Models.Components.Product> this.ComponentFactory.createComponent(component);
                this.$scope.setComponent(this.$scope.product);
                callback(true);
            };

            try {
                this.$scope.product.updateComponent().then(onSuccess, onFailed);
            }catch(e){
                //console.log("ERROR: Error in updating/creating component: " + e);
                callback(false);
            }
        };

        public back = (callback:Function):void => {
            this.save(callback);
        }
    }
}