environment_item.vue 15.6 KB
Newer Older
1
<script>
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
import Timeago from 'timeago.js';
import _ from 'underscore';
import tooltip from '~/vue_shared/directives/tooltip';
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
import { humanize } from '~/lib/utils/text_utility';
import ActionsComponent from './environment_actions.vue';
import ExternalUrlComponent from './environment_external_url.vue';
import StopComponent from './environment_stop.vue';
import RollbackComponent from './environment_rollback.vue';
import TerminalButtonComponent from './environment_terminal_button.vue';
import MonitoringButtonComponent from './environment_monitoring.vue';
import CommitComponent from '../../vue_shared/components/commit.vue';
import eventHub from '../event_hub';

/**
 * Envrionment Item Component
 *
 * Renders a table row for each environment.
 */
const timeagoInstance = new Timeago();

export default {
  components: {
    UserAvatarLink,
    CommitComponent,
    ActionsComponent,
    ExternalUrlComponent,
    StopComponent,
    RollbackComponent,
    TerminalButtonComponent,
    MonitoringButtonComponent,
  },

  directives: {
    tooltip,
  },

  props: {
    model: {
      type: Object,
      required: true,
      default: () => ({}),
44 45
    },

46 47 48 49
    canCreateDeployment: {
      type: Boolean,
      required: false,
      default: false,
50
    },
F
Filipa Lacerda 已提交
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
    canReadEnvironment: {
      type: Boolean,
      required: false,
      default: false,
    },
  },

  computed: {
    /**
     * Verifies if `last_deployment` key exists in the current Envrionment.
     * This key is required to render most of the html - this method works has
     * an helper.
     *
     * @returns {Boolean}
     */
    hasLastDeploymentKey() {
      if (this.model && this.model.last_deployment && !_.isEmpty(this.model.last_deployment)) {
        return true;
      }
      return false;
    },

    /**
     * Verifies is the given environment has manual actions.
     * Used to verify if we should render them or nor.
     *
     * @returns {Boolean|Undefined}
     */
    hasManualActions() {
      return (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.manual_actions &&
        this.model.last_deployment.manual_actions.length > 0
      );
    },

89 90 91 92 93 94 95 96 97 98
    /**
     * Checkes whether the environment is protected.
     * (`is_protected` currently only set in EE)
     *
     * @returns {Boolean}
     */
    isProtected() {
      return this.model && this.model.is_protected;
    },

99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    /**
     * Returns whether the environment can be stopped.
     *
     * @returns {Boolean}
     */
    canStopEnvironment() {
      return this.model && this.model.can_stop;
    },

    /**
     * Verifies if the `deployable` key is present in `last_deployment` key.
     * Used to verify whether we should or not render the rollback partial.
     *
     * @returns {Boolean|Undefined}
     */
    canRetry() {
      return (
        this.model &&
        this.hasLastDeploymentKey &&
        this.model.last_deployment &&
119 120
        this.model.last_deployment.deployable &&
        this.model.last_deployment.deployable.retry_path
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
      );
    },

    /**
     * Verifies if the date to be shown is present.
     *
     * @returns {Boolean|Undefined}
     */
    canShowDate() {
      return (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.deployable &&
        this.model.last_deployment.deployable !== undefined
      );
    },

    /**
     * Human readable date.
     *
     * @returns {String}
     */
    createdDate() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.deployable &&
        this.model.last_deployment.deployable.created_at
      ) {
        return timeagoInstance.format(this.model.last_deployment.deployable.created_at);
      }
      return '';
    },

    /**
     * Returns the manual actions with the name parsed.
     *
     * @returns {Array.<Object>|Undefined}
     */
    manualActions() {
      if (this.hasManualActions) {
        return this.model.last_deployment.manual_actions.map(action => {
          const parsedAction = {
            name: humanize(action.name),
            play_path: action.play_path,
            playable: action.playable,
          };
          return parsedAction;
        });
      }
      return [];
    },

    /**
     * Builds the string used in the user image alt attribute.
     *
     * @returns {String}
     */
    userImageAltDescription() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.user &&
        this.model.last_deployment.user.username
      ) {
        return `${this.model.last_deployment.user.username}'s avatar'`;
      }
      return '';
    },

    /**
     * If provided, returns the commit tag.
     *
     * @returns {String|Undefined}
     */
    commitTag() {
      if (this.model && this.model.last_deployment && this.model.last_deployment.tag) {
        return this.model.last_deployment.tag;
      }
      return undefined;
    },

    /**
     * If provided, returns the commit ref.
     *
     * @returns {Object|Undefined}
     */
    commitRef() {
      if (this.model && this.model.last_deployment && this.model.last_deployment.ref) {
        return this.model.last_deployment.ref;
      }
      return undefined;
    },

    /**
     * If provided, returns the commit url.
     *
     * @returns {String|Undefined}
     */
    commitUrl() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.commit &&
        this.model.last_deployment.commit.commit_path
      ) {
        return this.model.last_deployment.commit.commit_path;
      }
      return undefined;
    },

    /**
     * If provided, returns the commit short sha.
     *
     * @returns {String|Undefined}
     */
    commitShortSha() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.commit &&
        this.model.last_deployment.commit.short_id
      ) {
        return this.model.last_deployment.commit.short_id;
      }
      return undefined;
    },

    /**
     * If provided, returns the commit title.
     *
     * @returns {String|Undefined}
     */
    commitTitle() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.commit &&
        this.model.last_deployment.commit.title
      ) {
        return this.model.last_deployment.commit.title;
      }
      return undefined;
    },

    /**
     * If provided, returns the commit tag.
     *
     * @returns {Object|Undefined}
     */
    commitAuthor() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.commit &&
        this.model.last_deployment.commit.author
      ) {
        return this.model.last_deployment.commit.author;
      }

      return undefined;
    },

    /**
     * Verifies if the `retry_path` key is present and returns its value.
     *
     * @returns {String|Undefined}
     */
    retryUrl() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.deployable &&
        this.model.last_deployment.deployable.retry_path
      ) {
        return this.model.last_deployment.deployable.retry_path;
      }
      return undefined;
    },

    /**
     * Verifies if the `last?` key is present and returns its value.
     *
     * @returns {Boolean|Undefined}
     */
    isLastDeployment() {
      return this.model && this.model.last_deployment && this.model.last_deployment['last?'];
    },

    /**
     * Builds the name of the builds needed to display both the name and the id.
     *
     * @returns {String}
     */
    buildName() {
      if (this.model && this.model.last_deployment && this.model.last_deployment.deployable) {
        const { deployable } = this.model.last_deployment;
        return `${deployable.name} #${deployable.id}`;
      }
      return '';
    },

    /**
     * Builds the needed string to show the internal id.
     *
     * @returns {String}
     */
    deploymentInternalId() {
      if (this.model && this.model.last_deployment && this.model.last_deployment.iid) {
        return `#${this.model.last_deployment.iid}`;
      }
      return '';
333
    },
F
Filipa Lacerda 已提交
334

335 336 337 338 339 340 341 342 343 344 345
    /**
     * Verifies if the user object is present under last_deployment object.
     *
     * @returns {Boolean}
     */
    deploymentHasUser() {
      return (
        this.model &&
        !_.isEmpty(this.model.last_deployment) &&
        !_.isEmpty(this.model.last_deployment.user)
      );
346
    },
F
Filipa Lacerda 已提交
347

348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
    /**
     * Returns the user object nested with the last_deployment object.
     * Used to render the template.
     *
     * @returns {Object}
     */
    deploymentUser() {
      if (
        this.model &&
        !_.isEmpty(this.model.last_deployment) &&
        !_.isEmpty(this.model.last_deployment.user)
      ) {
        return this.model.last_deployment.user;
      }
      return {};
363
    },
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458

    /**
     * Verifies if the build name column should be rendered by verifing
     * if all the information needed is present
     * and if the environment is not a folder.
     *
     * @returns {Boolean}
     */
    shouldRenderBuildName() {
      return (
        !this.model.isFolder &&
        !_.isEmpty(this.model.last_deployment) &&
        !_.isEmpty(this.model.last_deployment.deployable)
      );
    },

    /**
     * Verifies the presence of all the keys needed to render the buil_path.
     *
     * @return {String}
     */
    buildPath() {
      if (
        this.model &&
        this.model.last_deployment &&
        this.model.last_deployment.deployable &&
        this.model.last_deployment.deployable.build_path
      ) {
        return this.model.last_deployment.deployable.build_path;
      }

      return '';
    },

    /**
     * Verifies the presence of all the keys needed to render the external_url.
     *
     * @return {String}
     */
    externalURL() {
      if (this.model && this.model.external_url) {
        return this.model.external_url;
      }

      return '';
    },

    /**
     * Verifies if deplyment internal ID should be rendered by verifing
     * if all the information needed is present
     * and if the environment is not a folder.
     *
     * @returns {Boolean}
     */
    shouldRenderDeploymentID() {
      return (
        !this.model.isFolder &&
        !_.isEmpty(this.model.last_deployment) &&
        this.model.last_deployment.iid !== undefined
      );
    },

    environmentPath() {
      if (this.model && this.model.environment_path) {
        return this.model.environment_path;
      }

      return '';
    },

    monitoringUrl() {
      if (this.model && this.model.metrics_path) {
        return this.model.metrics_path;
      }

      return '';
    },

    displayEnvironmentActions() {
      return (
        this.hasManualActions ||
        this.externalURL ||
        this.monitoringUrl ||
        this.canStopEnvironment ||
        this.canRetry
      );
    },
  },

  methods: {
    onClickFolder() {
      eventHub.$emit('toggleFolder', this.model);
    },
  },
};
459 460
</script>
<template>
461
  <div
462 463 464 465
    :class="{
      'js-child-row environment-child-row': model.isChildren,
      'folder-row': model.isFolder,
    }"
466
    class="gl-responsive-table-row"
A
Annabel Dunstone Gray 已提交
467
    role="row">
F
Filipa Lacerda 已提交
468
    <div
469 470 471
      v-tooltip
      :title="model.name"
      class="table-section section-wrap section-15 text-truncate"
F
Filipa Lacerda 已提交
472 473
      role="gridcell"
    >
474 475
      <div
        v-if="!model.isFolder"
A
Annabel Dunstone Gray 已提交
476
        class="table-mobile-header"
F
Filipa Lacerda 已提交
477 478 479
        role="rowheader"
      >
        {{ s__("Environments|Environment") }}
480
      </div>
481
      <span
482
        v-if="!model.isFolder"
483 484
        class="environment-name table-mobile-content">
        <a
T
Thong Kuah 已提交
485
          class="qa-environment-link"
486 487 488 489 490
          :href="environmentPath"
        >
          {{ model.name }}
        </a>
      </span>
491 492 493
      <span
        v-else
        class="folder-name"
494 495
        role="button"
        @click="onClickFolder">
496 497 498 499 500

        <span class="folder-icon">
          <i
            v-show="model.isOpen"
            class="fa fa-caret-down"
F
Filipa Lacerda 已提交
501 502 503
            aria-hidden="true"
          >
          </i>
504 505 506
          <i
            v-show="!model.isOpen"
            class="fa fa-caret-right"
F
Filipa Lacerda 已提交
507 508 509
            aria-hidden="true"
          >
          </i>
F
Filipa Lacerda 已提交
510
        </span>
511

512 513 514
        <span class="folder-icon">
          <i
            class="fa fa-folder"
F
Filipa Lacerda 已提交
515 516
            aria-hidden="true">
          </i>
517 518
        </span>

519
        <span>
F
Filipa Lacerda 已提交
520
          {{ model.folderName }}
521 522
        </span>

523
        <span class="badge badge-pill">
F
Filipa Lacerda 已提交
524
          {{ model.size }}
525
        </span>
526
      </span>
527
    </div>
528

F
Filipa Lacerda 已提交
529
    <div
C
Clement Ho 已提交
530
      class="table-section section-10 deployment-column d-none d-sm-none d-md-block"
F
Filipa Lacerda 已提交
531 532
      role="gridcell"
    >
533
      <span v-if="shouldRenderDeploymentID">
F
Filipa Lacerda 已提交
534
        {{ deploymentInternalId }}
535 536 537 538
      </span>

      <span v-if="!model.isFolder && deploymentHasUser">
        by
539 540 541 542 543
        <user-avatar-link
          :link-href="deploymentUser.web_url"
          :img-src="deploymentUser.avatar_url"
          :img-alt="userImageAltDescription"
          :tooltip-text="deploymentUser.username"
544
          class="js-deploy-user-container"
545
        />
546
      </span>
547
    </div>
548

F
Filipa Lacerda 已提交
549
    <div
C
Clement Ho 已提交
550
      class="table-section section-15 d-none d-sm-none d-md-block"
F
Filipa Lacerda 已提交
551 552
      role="gridcell"
    >
553 554
      <a
        v-if="shouldRenderBuildName"
F
Filipa Lacerda 已提交
555
        :href="buildPath"
556
        class="build-link flex-truncate-parent"
F
Filipa Lacerda 已提交
557 558
      >
        <span class="flex-truncate-child">{{ buildName }}</span>
559
      </a>
560
    </div>
561

562 563
    <div
      v-if="!model.isFolder"
564
      class="table-section section-20"
F
Filipa Lacerda 已提交
565 566
      role="gridcell"
    >
567
      <div
A
Annabel Dunstone Gray 已提交
568
        role="rowheader"
F
Filipa Lacerda 已提交
569 570 571
        class="table-mobile-header"
      >
        {{ s__("Environments|Commit") }}
572
      </div>
573
      <div
574
        v-if="hasLastDeploymentKey"
575
        class="js-commit-component table-mobile-content">
576 577 578 579 580 581 582 583
        <commit-component
          :tag="commitTag"
          :commit-ref="commitRef"
          :commit-url="commitUrl"
          :short-sha="commitShortSha"
          :title="commitTitle"
          :author="commitAuthor"/>
      </div>
584
      <div
585
        v-if="!hasLastDeploymentKey"
A
Annabel Dunstone Gray 已提交
586
        class="commit-title table-mobile-content">
F
Filipa Lacerda 已提交
587
        {{ s__("Environments|No deployments yet") }}
588 589
      </div>
    </div>
590

591 592
    <div
      v-if="!model.isFolder"
F
Filipa Lacerda 已提交
593 594 595
      class="table-section section-10"
      role="gridcell"
    >
596
      <div
A
Annabel Dunstone Gray 已提交
597
        role="rowheader"
598
        class="table-mobile-header">
F
Filipa Lacerda 已提交
599
        {{ s__("Environments|Updated") }}
600
      </div>
601
      <span
602
        v-if="canShowDate"
603
        class="environment-created-date-timeago table-mobile-content">
F
Filipa Lacerda 已提交
604
        {{ createdDate }}
605
      </span>
606
    </div>
607

608 609 610 611 612
    <div
      v-if="!model.isFolder && displayEnvironmentActions"
      class="table-section section-30 table-button-footer"
      role="gridcell">

613
      <div
614
        class="btn-group table-action-buttons"
615 616 617 618
        role="group">

        <external-url-component
          v-if="externalURL && canReadEnvironment"
619
          :external-url="externalURL"
F
Filipa Lacerda 已提交
620
        />
621 622 623

        <monitoring-button-component
          v-if="monitoringUrl && canReadEnvironment"
624
          :monitoring-url="monitoringUrl"
F
Filipa Lacerda 已提交
625
        />
626

627
        <actions-component
628
          v-if="hasManualActions && canCreateDeployment"
629 630 631
          :actions="manualActions"
        />

632 633
        <terminal-button-component
          v-if="model && model.terminal_path"
634
          :terminal-path="model.terminal_path"
F
Filipa Lacerda 已提交
635
        />
636 637

        <rollback-component
638
          v-if="canRetry && canCreateDeployment"
639 640
          :is-last-deployment="isLastDeployment"
          :retry-url="retryUrl"
F
Filipa Lacerda 已提交
641
        />
642 643 644 645 646

        <stop-component
          v-if="canStopEnvironment"
          :environment="model"
        />
647
      </div>
648 649
    </div>
  </div>
650
</template>