All files / app/assets/javascripts/ci_settings_pipeline_triggers index.js

40% Statements 4/10
66.66% Branches 2/3
33.33% Functions 1/3
40% Lines 4/10

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        1x                 1x   1x 1x                                      
import Vue from 'vue';
import { convertObjectPropsToCamelCase } from '~/lib/utils/common_utils';
import TriggersList from './components/triggers_list.vue';
 
const parseJsonArray = (triggers) => {
  try {
    return convertObjectPropsToCamelCase(JSON.parse(triggers), { deep: true });
  } catch {
    return [];
  }
};
 
export default (containerId = 'js-ci-pipeline-triggers-list') => {
  const containerEl = document.getElementById(containerId);
 
  Eif (!containerEl) {
    return null;
  }
 
  const triggers = parseJsonArray(containerEl.dataset.triggers);
 
  return new Vue({
    el: containerEl,
    components: {
      TriggersList,
    },
    render(h) {
      return h(TriggersList, {
        props: {
          triggers,
        },
      });
    },
  });
};