All files / ee/app/assets/javascripts/license_compliance/store/modules/list mutations.js

100% Statements 12/12
100% Branches 0/0
100% Functions 4/4
100% Lines 12/12

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          1x     1x 1x     12x 12x 12x 12x 12x 12x             1x 1x 1x      
import { toLicenseObject } from '../../../utils/mappers';
import * as types from './mutation_types';
 
export default {
  [types.SET_LICENSES_ENDPOINT](state, payload) {
    state.endpoint = payload;
  },
  [types.REQUEST_LICENSES](state) {
    state.isLoading = true;
    state.errorLoading = false;
  },
  [types.RECEIVE_LICENSES_SUCCESS](state, { licenses, reportInfo, pageInfo }) {
    state.licenses = licenses.map(toLicenseObject);
    state.pageInfo = pageInfo;
    state.isLoading = false;
    state.errorLoading = false;
    state.initialized = true;
    state.reportInfo = {
      status: reportInfo.status,
      jobPath: reportInfo.job_path,
      generatedAt: reportInfo.generated_at,
    };
  },
  [types.RECEIVE_LICENSES_ERROR](state) {
    state.isLoading = false;
    state.errorLoading = true;
    state.initialized = true;
  },
};