All files / ee/app/assets/javascripts/diffs/components diff_row_utils.js

100% Statements 8/8
75% Branches 3/4
100% Functions 2/2
100% Lines 8/8

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      4x             2x 16x   16x 10x           16x 16x             16x                
import { mapParallel as CEMapParallel } from '~/diffs/components/diff_row_utils';
import { fileLineCodequality, fileLineSast } from './inline_findings_utils';
 
export const mapParallel = ({
  diffFile,
  codequalityData,
  sastData,
  hasParallelDraftLeft,
  hasParallelDraftRight,
  draftsForLine,
}) => (line) => {
  let { left, right } = line;
 
  if (left) {
    left = {
      ...left,
      codequality: fileLineCodequality(diffFile.file_path, left.new_line, codequalityData),
      sast: fileLineSast(diffFile.file_path, left.new_line, sastData),
    };
  }
  Eif (right) {
    right = {
      ...right,
      codequality: fileLineCodequality(diffFile.file_path, right.new_line, codequalityData),
      sast: fileLineSast(diffFile.file_path, right.new_line, sastData),
    };
  }
 
  return {
    ...CEMapParallel({ diffFile, hasParallelDraftLeft, hasParallelDraftRight, draftsForLine })({
      ...line,
      left,
      right,
    }),
  };
};