All files / workspace/modules Menu.js

100% Statements 196/196
100% Branches 26/26
100% Functions 11/11
100% Lines 196/196

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 1971x 1x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 119x 119x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 20x 20x 20x 20x 20x 20x 20x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 5x 40x 215x 215x 215x 215x 215x 215x 215x 215x 215x 155x 215x 60x 60x 60x 215x 215x 74x 74x 215x 215x 215x 215x 20x 20x 20x 20x 20x 20x 20x 20x 215x 215x 215x 215x 165x 165x 165x 215x 215x 215x 215x 40x 5x 5x 4192x 21707x 21707x 21707x 4192x 5x 5x 7216x 7216x 52693x 52693x 50911x 52693x 48521x 48521x 48521x 4172x 4172x 4172x 4172x 4172x 7216x 7216x 5x 5x 159x 159x 159x 3034x 3034x 3034x 3034x 159x 159x 5x 5x 20x 20x 20x 20x 20x 114x 114x 114x 114x 20x 20x 20x 5x 5x 1x 1x 1x 1x 1x  
import Is from 'strong-type';
import urls from '../utils/urls.js';
import {toCamel} from '../utils/toCase.js';
import {get} from '../utils/api-json.js';
 
const is=new Is;
const weakIs=new Is(false);
 
class Menu{
    constructor(storeID,lang='en') {
        return this.#getMenu(storeID,lang);
    }
 
    menu={
        categories:{},
        coupons:{
            products:{},
            shortCouponDescriptions:{},
            couponTiers:{},
        },
        flavors:{},
        products:{},
        sides:{},
        sizes:{},
        toppings:{},
        variants:{},
        preconfiguredProducts:{},
        shortProductDescriptions:{},
        unsupported:{
            products:{},
            options:{}
        },
        cooking:{
            instructions:{},
            instructionGroups:{}
        }
    }
 
    get dominosAPIResponse(){
        return this.#dominosAPIResponse; 
    }
 
    set dominosAPIResponse(value){
        is.object(value);
 
        return this.#dominosAPIResponse=value;
    }
 
    #dominosAPIResponse={}
 
    async #getMenu(storeID,lang){
        this.dominosAPIResponse=await get(
            urls.store.menu
                .replace('${storeID}', storeID)
                .replace('${lang}', lang)
        );
 
        this.#parse(this.dominosAPIResponse);
 
        return this;
    };
 
    #parse(menu){
        is.object(menu);
 
        //define categories
        for(const [categoryKey, dominosCategory] of Object.entries(this.dominosAPIResponse.Categorization)){
            const category= this.menu.categories[toCamel(categoryKey)]={};
            
            this.#defineCategories(
                dominosCategory.Categories,
                category
            );
        }
 
        this.#allParentAndGrandDescendantsToCamel(this.dominosAPIResponse.Flavors,this.menu.flavors);
        this.#allParentAndGrandDescendantsToCamel(this.dominosAPIResponse.Sides,this.menu.sides);
        this.#allParentAndGrandDescendantsToCamel(this.dominosAPIResponse.Sizes,this.menu.sizes);
        this.#allParentAndGrandDescendantsToCamel(this.dominosAPIResponse.Toppings,this.menu.toppings);
 
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.Products,this.menu.products);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.PreconfiguredProducts,this.menu.preconfiguredProducts);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.Coupons,this.menu.coupons.products);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.Variants,this.menu.variants);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.ShortProductDescriptions,this.menu.shortProductDescriptions);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.UnsupportedProducts,this.menu.unsupported.products);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.UnsupportedOptions,this.menu.unsupported.options);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.CookingInstructions,this.menu.cooking.instructions);
        this.#allGrandDescendantsToCamel(this.dominosAPIResponse.CookingInstructionGroups,this.menu.cooking.instructionGroups);
 
        this.#allDescendantsToCamel(this.dominosAPIResponse.CouponTiers,this.menu.coupons.couponTiers);
        this.#allDescendantsToCamel(this.dominosAPIResponse.ShortCouponDescriptions,this.menu.coupons.shortCouponDescriptions);
        
    }
 
    #defineCategories(categories,menuParent){
        for(const category of categories){
            const formattedCategory=menuParent[
                toCamel(category.Code)
            ]={};
 
            if(category.Code.length){
                formattedCategory.code=category.Code;
            }
    
            if(category.Name.length){
                formattedCategory.name=category.Name;
            }else{
                //if the name is missing populate it with the code
                formattedCategory.name=category.Code;
            }
    
            if(category.Description.length){
                formattedCategory.description=category.Description;
            }
    
            formattedCategory.hasSubCategories=false;
    
            if(category.Categories.length){
                formattedCategory.hasSubCategories=true;
                formattedCategory.subCategories={};
    
                this.#defineCategories(
                    category.Categories,
                    formattedCategory.subCategories
                );
            }
    
            formattedCategory.hasProducts=false;
    
            if(category.Products.length){
                formattedCategory.hasProducts=true;
                formattedCategory.products=category.Products;
            }
    
            formattedCategory.hasTags=false;
 
        }
    }
    
    #camelCaseKeys(dominos,menu){
        for(const [key,value] of Object.entries(dominos)){
            //console.log(key);
            menu[toCamel(key)]=dominos[key];
        }
    }
    
    #allDescendantsToCamel(dominos,menu){
        if(weakIs.object(dominos)){
            for(const [key,value] of Object.entries(dominos)){
                if(
                    weakIs.array(value)||
                    !weakIs.object(value)
                ){
                    menu[toCamel(key)]=value;
                    continue;
                }
                menu[toCamel(key)]={};
                const menuChild=menu[toCamel(key)];
                this.#camelCaseKeys(value,menuChild);
                this.#allDescendantsToCamel(value,menuChild);
            }
        }
    }
    
    #allGrandDescendantsToCamel(dominos,menu){
        if(weakIs.object(dominos)){
            //console.log(menu);
            for(const [key,value] of Object.entries(dominos)){
                menu[key]={};
                const menuChild=menu[key];
                this.#allDescendantsToCamel(value,menuChild);
            }
        }
    }
    
    #allParentAndGrandDescendantsToCamel(dominos,menu){
        if(weakIs.object(dominos)){
            //console.log(menu);
            if(weakIs.object(dominos)){
                this.#camelCaseKeys(dominos,menu);
                for(const [key,value] of Object.entries(dominos)){
                    const menuChild=menu[toCamel(key)]={};
                    
                    this.#allGrandDescendantsToCamel(value,menuChild);
                }
            }
        }
    }
   
}
 
export {
    Menu as default,
    Menu
}