All files / app/assets/javascripts/environments/components environments_table.vue

100% Statements 12/12
100% Branches 9/9
88.23% Functions 15/17
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 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  4x               2x                                   28x             28x             28x                                                                             2x     51x     94x     51x                                   34x                 1x 1x                                                                                                                                                                                                        
<script>
/**
 * Render environments table.
 */
import { GlLoadingIcon } from '@gitlab/ui';
import { flow, reverse, sortBy } from 'lodash/fp';
import { s__ } from '~/locale';
import CanaryUpdateModal from './canary_update_modal.vue';
import DeployBoard from './deploy_board.vue';
import EnvironmentItem from './environment_item.vue';
 
export default {
  components: {
    EnvironmentItem,
    GlLoadingIcon,
    DeployBoard,
    EnvironmentAlert: () => import('ee_component/environments/components/environment_alert.vue'),
    CanaryUpdateModal,
  },
  props: {
    environments: {
      type: Array,
      required: true,
      default: () => [],
    },
  },
  data() {
    return {
      canaryWeight: 0,
      environmentToChange: null,
    };
  },
  computed: {
    sortedEnvironments() {
      return this.sortEnvironments(this.environments).map((env) =>
        this.shouldRenderFolderContent(env)
          ? { ...env, children: this.sortEnvironments(env.children) }
          : env,
      );
    },
    tableData() {
      return {
        // percent spacing for cols, should add up to 100
        name: {
          title: s__('Environments|Environment'),
          spacing: 'section-10',
        },
        deploy: {
          title: s__('Environments|Deployment'),
          spacing: 'section-10',
        },
        build: {
          title: s__('Environments|Job'),
          spacing: 'section-15',
        },
        commit: {
          title: s__('Environments|Commit'),
          spacing: 'section-15',
        },
        date: {
          title: s__('Environments|Updated'),
          spacing: 'section-10',
        },
        upcoming: {
          title: s__('Environments|Upcoming'),
          mobileTitle: s__('Environments|Upcoming deployment'),
          spacing: 'section-10',
        },
        autoStop: {
          title: s__('Environments|Auto stop'),
          spacing: 'section-10',
        },
        actions: {
          spacing: 'section-20',
        },
      };
    },
  },
  methods: {
    folderUrl(model) {
      return `${window.location.pathname}/folders/${model.folderName}`;
    },
    shouldRenderDeployBoard(model) {
      return model.hasDeployBoard && model.isDeployBoardVisible;
    },
    shouldRenderFolderContent(env) {
      return env.isFolder && env.isOpen && env.children && env.children.length > 0;
    },
    shouldRenderAlert(env) {
      return env?.has_opened_alert;
    },
    sortEnvironments(environments) {
      /*
       * The sorting algorithm should sort in the following priorities:
       *
       * 1. folders first,
       * 2. last updated descending,
       * 3. by name ascending,
       *
       * the sorting algorithm must:
       *
       * 1. Sort by name ascending,
       * 2. Reverse (sort by name descending),
       * 3. Sort by last deployment ascending,
       * 4. Reverse (last deployment descending, name ascending),
       * 5. Put folders first.
       */
      return flow(
        sortBy((env) => (env.isFolder ? env.folderName : env.name)),
        reverse,
        sortBy((env) => (env.last_deployment ? env.last_deployment.created_at : '0000')),
        reverse,
        sortBy((env) => (env.isFolder ? -1 : 1)),
      )(environments);
    },
    changeCanaryWeight(model, weight) {
      this.environmentToChange = model;
      this.canaryWeight = weight;
    },
  },
};
</script>
<template>
  <div class="ci-table" role="grid">
    <canary-update-modal :environment="environmentToChange" :weight="canaryWeight" />
    <div class="gl-responsive-table-row table-row-header" role="row">
      <div class="table-section" :class="tableData.name.spacing" role="columnheader">
        {{ tableData.name.title }}
      </div>
      <div class="table-section" :class="tableData.deploy.spacing" role="columnheader">
        {{ tableData.deploy.title }}
      </div>
      <div class="table-section" :class="tableData.build.spacing" role="columnheader">
        {{ tableData.build.title }}
      </div>
      <div class="table-section" :class="tableData.commit.spacing" role="columnheader">
        {{ tableData.commit.title }}
      </div>
      <div class="table-section" :class="tableData.date.spacing" role="columnheader">
        {{ tableData.date.title }}
      </div>
      <div class="table-section" :class="tableData.upcoming.spacing" role="columnheader">
        {{ tableData.upcoming.title }}
      </div>
      <div class="table-section" :class="tableData.autoStop.spacing" role="columnheader">
        {{ tableData.autoStop.title }}
      </div>
    </div>
    <template v-for="(model, i) in sortedEnvironments">
      <environment-item :key="`environment-item-${i}`" :model="model" :table-data="tableData" />
 
      <div
        v-if="shouldRenderDeployBoard(model)"
        :key="`deploy-board-row-${i}`"
        class="js-deploy-board-row"
      >
        <div class="deploy-board-container">
          <deploy-board
            :deploy-board-data="model.deployBoardData"
            :is-loading="model.isLoadingDeployBoard"
            :is-empty="model.isEmptyDeployBoard"
            @changeCanaryWeight="changeCanaryWeight(model, $event)"
          />
        </div>
      </div>
      <environment-alert
        v-if="shouldRenderAlert(model)"
        :key="`alert-row-${i}`"
        :environment="model"
      />
 
      <template v-if="shouldRenderFolderContent(model)">
        <div v-if="model.isLoadingFolderContent" :key="`loading-item-${i}`">
          <gl-loading-icon size="lg" class="gl-mt-5" />
        </div>
 
        <template v-else>
          <template v-for="(child, index) in model.children">
            <environment-item
              :key="`environment-row-${i}-${index}`"
              :model="child"
              :table-data="tableData"
            />
 
            <div
              v-if="shouldRenderDeployBoard(child)"
              :key="`deploy-board-row-${i}-${index}`"
              class="js-deploy-board-row"
            >
              <div class="deploy-board-container">
                <deploy-board
                  :deploy-board-data="child.deployBoardData"
                  :is-loading="child.isLoadingDeployBoard"
                  :is-empty="child.isEmptyDeployBoard"
                  @changeCanaryWeight="changeCanaryWeight(child, $event)"
                />
              </div>
            </div>
            <environment-alert
              v-if="shouldRenderAlert(model)"
              :key="`alert-row-${i}-${index}`"
              :environment="child"
            />
          </template>
 
          <div :key="`sub-div-${i}`">
            <div class="text-center gl-mt-3">
              <a :href="folderUrl(model)" class="btn btn-default">
                {{ s__('Environments|Show all') }}
              </a>
            </div>
          </div>
        </template>
      </template>
    </template>
  </div>
</template>