All files / app/Service workout.service.ts

100% Statements 112/112
100% Branches 26/26
100% Functions 24/24
100% Lines 109/109

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                1x     26x                                                                                 8x         10x 10x 10x   5x 5x 5x       5x                     3x 3x         8x 8x   8x     3x   9x   2x       3x   1x   1x         2x   2x   4x   1x     2x   1x     1x     2x       3x           26x         21x   21x 93x 93x 93x   93x 93x 211x     93x 211x   93x 93x   93x 93x   93x 211x   93x   93x             26x       14x     14x 7x   7x   14x 14x     14x 59x 39x     14x         26x       8x   3x 1x   2x         8x 5x 3x   4x           26x   26x       9x     9x 9x   9x   25x       9x   41x 41x   41x 91x   67x 67x         41x 41x 41x     41x 34x       9x   9x           26x   26x         26x                                       26x     6x 6x   6x 25x           6x 6x           5x 5x     5x 5x   5x     5x 15x 15x         5x                                      
import { Injectable, SimpleChanges } from '@angular/core';
import { CoTable, workouts, WoTable } from '../wo-table';
 
 
@Injectable({
  providedIn: 'root'
})
 
export class WorkoutService {
 
 
  public USER_DATA:WoTable [] =  [ 
    {
      id: 1,
      name: 'John Doe',
      workouts: [
        { type: 'Running', minutes: 30 },
        { type: 'Cycling', minutes: 45 }
      ]
    },
    {
      id: 2,
      name: 'Jane Smith',
      workouts: [
        { type: 'Swimming', minutes: 60 },
        { type: 'Running', minutes: 20 }
      ]
    },
    {
      id: 3,
      name: 'Mike Johnson',
      workouts: [
        { type: 'Swimming', minutes: 50 },
        { type: 'Yoga', minutes: 50 },
        { type: 'Cycling', minutes: 43 }
      ]
    },
    {
      id: 4,
      name: 'Dakota Fanning',
      workouts: [
        { type: 'Yoga', minutes: 40 },
        { type: 'Cycling', minutes: 30 },
        { type: 'Running', minutes: 20 }
      ]
}];
  
   constructor() { }
 
 
  public putOptions(): string[]{
 
        return ['Cycling', 'Running', 'Swimming', 'Yoga'];
    }
 
      
  checkLocalStorage(){
    try{
      var userData = localStorage.getItem('userData');
      if(userData == null)
      {
        userData = JSON.stringify(this.USER_DATA);
        localStorage.setItem('userData', userData);
        this.USER_DATA = JSON.parse(userData);
      }
      else
      {
        this.USER_DATA = JSON.parse(userData);
      }
    }
    catch(e){
 
    }
 
    }
  
    
  updateLocalStorage(){
      var userData = JSON.stringify(this.USER_DATA);
      localStorage.setItem('userData', userData);
  }
 
  
  updateTableonsubmit(changes: SimpleChanges) {
    this.checkLocalStorage();
    const formData = changes['formData'].currentValue;
 
    if (changes['formData'] && formData) {
                     
      let i;
        for(i=0; i<this.USER_DATA.length;i++)
          {
                 if(this.USER_DATA[i].name == formData.name)
                 {
                  break;
                 }
          }
 
         if(i==this.USER_DATA.length)
         {
          this.USER_DATA.push({id: i+1, name: formData.name, workouts: [{type: formData.workout_type, minutes: formData.minutes}] })
 
          alert('Submitted Successfully!!');
           
         }
         else
         {
              var wo_len =  this.USER_DATA[i].workouts.length;
              let j;
              for(j=0;j<wo_len;j++)
              {
                if(this.USER_DATA[i].workouts[j].type == formData.workout_type)
                {
                  break;
                }
              }
              if(j == this.USER_DATA[i].workouts.length)
              {
                this.USER_DATA[i].workouts.push({type: formData.workout_type, minutes: formData.minutes})
              }
              else{
                this.USER_DATA[i].workouts[j].minutes = this.USER_DATA[i].workouts[j].minutes+ formData.minutes;
              }
 
              alert(`Updated Successfully !!`);
            
         }
 
         this.updateLocalStorage();
 
    }
  }
 
  
  TABLE_DATA: CoTable[] = []
 
 public compute_table(){     // Generate new DataSource for Table according to Table Columns from USER_DATA
 
  
    var i=this.USER_DATA.length-1;
    
    this.USER_DATA.forEach(e => {
      this.TABLE_DATA[i]= { id: 0, name: '', workout_type:'', workout_no: 0, workout_time: 0, workouts: [] };
      this.TABLE_DATA[i].id = e.id;
      this.TABLE_DATA[i].name = e.name;
 
      var sum=''; 
      e.workouts.forEach(f=>{
        this.TABLE_DATA[i].workouts.push(f);
      })
      
      e.workouts.forEach(s => 
        { sum+=s.type+', ' }
      );
      sum=sum.slice(0,-2);
      this.TABLE_DATA[i].workout_type = sum;
    
      this.TABLE_DATA[i].workout_no = e.workouts.length;
      var time=0; 
     
        e.workouts.forEach(s => 
          { time += s.minutes; }
        );
       this.TABLE_DATA[i].workout_time = time;
 
     i--;
     
    })
 
 
  }
 
  FilterNameList: CoTable[] = [];
  
  SearchByName(data: CoTable[], name: string) {
   
    this.FilterNameList = []
  
    var keyword;
    if(name)
      keyword = (name as string).toLowerCase().replaceAll(" ","");
    else
   { keyword = '(?:)' }
      
    const regex = new RegExp(`${keyword}`);
    console.log(regex);
 
   
    data.forEach(e => {
      if(regex.test(e.name.toLowerCase().replaceAll(" ","")))
        this.FilterNameList.push(e)
     })
     
     return this.FilterNameList;
 
  }
   
 
options: string[] = ['All'];
 
 ModifyMatSelect(select: string) // This function either select option if new option is selected or deselect option if same is selected again
 {
  if(select == 'All')
  {
    if(this.options.includes(select))
       this.options.pop();
    else{
        this.options = ['All'];
    }
  
  }
  else{
    this.options = this.options.filter(f => f!=='All')
    if(this.options.includes(select))
      this.options = this.options.filter(f => f!==select)
   else{
       this.options.push(select);
      }
  }
 }
 
 
  woutList: string[] = ['All','Cycling', 'Running', 'Swimming', 'Yoga'];
 
  FilterWorkoutList: CoTable[] = []
 
  onSelectionChange(select: string[], name: string) {   // Function to modify Table data and Graph data based on selected option(s) and search 
 
   var selectedValues =  select;                                    // modify mat-select
 
   
    this.compute_table();
    this.FilterWorkoutList = []
    
    if(select.includes('All') && select.length == 1)
    {
      selectedValues = this.woutList.filter(f => f!=='All');
    }
 
 
    this.TABLE_DATA.forEach(e =>{     
 
            var work_type: string[] = [];
            var work_time = 0;
 
            e.workouts.forEach(f=>{
              if(selectedValues.includes(f.type))
               {  
                 work_type.push(f.type);  
                 work_time += f.minutes;
               }
           
            })
         
            e.workout_no = work_type.length;
            e.workout_type = work_type.join(', ')
            e.workout_time = work_time
      
 
            if(e.workout_type.length != 0)
              this.FilterWorkoutList.push(e)
  
         });
     
         this.FilterWorkoutList = this.SearchByName(this.FilterWorkoutList, name)  
 
         return this.FilterWorkoutList ;
         
  }
 
//Graphs Analysis
 
heading: string = '';
 
names: string[] = [];
 
  
basicData: any;
 
basicOptions: any = {
       scales: {
       y: {
          beginAtZero: true,
          grid: {
              drawBorder: false
          }
        },
       x: {
          grid: {
              drawBorder: false
          }}
         },
  layout: {
    padding: {
        top: 100,
    },
},
};
 
 updateData: CoTable[]=[];
 
handleListItemClick(data: CoTable[]){
    this.updateData = data;
    this.names = [];
   
    data.forEach(e => {
     this.names.push(e.name);
     });
    
  }
 
  SelectItemClick(name: string){
       this.updateGraph(name)
       this.heading = name+"'s workout progress";
  }
 
 
  updateGraph(name: string)
  {
    var labels: string[] = [];
    var data: number[] = [];
     let i;
 
     for(i=0;i<this.updateData.length;i++){
         if(this.updateData[i].name === name )
         {
             break;
         }
     }
  this.updateData[i].workouts.forEach((e: workouts) =>{
         labels.push(e.type);
         data.push(e.minutes);
       })
 
     
    
  this.basicData = {
        "labels": labels,
        "datasets": [
            {
                "label": "Minutes",
                "data": data,
                "backgroundColor": "rgba(54, 162, 235, 0.5)",
                "borderColor": "rgb(54, 162, 235)",
                "borderWidth": 1
            }
        ]
    }
   
  }
 
  
 
 
      }