Commit 01b0617c authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

Port of 32098-environments-reusable

Fix broken test

 Add end to end test for endpoint and folder name changes

Improve e2e test to use dot in folder name

Fix broken test
parent 73d0cd60
Loading
Loading
Loading
Loading
+71 −0
Original line number Diff line number Diff line
<script>
  import loadingIcon from '../../vue_shared/components/loading_icon.vue';
  import tablePagination from '../../vue_shared/components/table_pagination.vue';
  import environmentTable from '../components/environments_table.vue';

  export default {
    props: {
      isLoading: {
        type: Boolean,
        required: true,
      },
      environments: {
        type: Array,
        required: true,
      },
      pagination: {
        type: Object,
        required: true,
      },
      canCreateDeployment: {
        type: Boolean,
        required: true,
      },
      canReadEnvironment: {
        type: Boolean,
        required: true,
      },
    },
    components: {
      environmentTable,
      loadingIcon,
      tablePagination,
    },

    methods: {
      onChangePage(page) {
        this.$emit('onChangePage', page);
      },
    },
  };
</script>

<template>
  <div class="environments-container">

    <loading-icon
      label="Loading environments"
      v-if="isLoading"
      size="3"
      />

    <slot name="emptyState"></slot>

    <div
      class="table-holder"
      v-if="!isLoading && environments.length > 0">

      <environment-table
        :environments="environments"
        :can-create-deployment="canCreateDeployment"
        :can-read-environment="canReadEnvironment"
        />

      <table-pagination
        v-if="pagination && pagination.totalPages > 1"
        :change="onChangePage"
        :pageInfo="pagination"
        />
    </div>
  </div>
</template>
+42 −0
Original line number Diff line number Diff line
<script>
  export default {
    name: 'environmentsEmptyState',
    props: {
      newPath: {
        type: String,
        required: true,
      },
      canCreateEnvironment: {
        type: Boolean,
        required: true,
      },
      helpPath: {
        type: String,
        required: true,
      },
    },
  };
</script>
<template>
  <div class="blank-state-row">
    <div class="blank-state-center">
      <h2 class="blank-state-title js-blank-state-title">
        {{s__("Environments|You don't have any environments right now.")}}
      </h2>
      <p class="blank-state-text">
        {{s__("Environments|Environments are places where code gets deployed, such as staging or production.")}}
        <br />
        <a :href="helpPath">
          {{s__("Environments|Read more about environments")}}
        </a>
      </p>

      <a
        v-if="canCreateEnvironment"
        :href="newPath"
        class="btn btn-create js-new-environment-button">
        {{s__("Environments|New environment")}}
      </a>
    </div>
  </div>
</template>
+0 −289
Original line number Diff line number Diff line
<script>
import Visibility from 'visibilityjs';
import Flash from '../../flash';
import EnvironmentsService from '../services/environments_service';
import environmentTable from './environments_table.vue';
import EnvironmentsStore from '../stores/environments_store';
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
import tablePagination from '../../vue_shared/components/table_pagination.vue';
import { convertPermissionToBoolean, getParameterByName, setParamInURL } from '../../lib/utils/common_utils';
import eventHub from '../event_hub';
import Poll from '../../lib/utils/poll';
import environmentsMixin from '../mixins/environments_mixin';

export default {

  components: {
    environmentTable,
    tablePagination,
    loadingIcon,
  },

  mixins: [
    environmentsMixin,
  ],

  data() {
    const environmentsData = document.querySelector('#environments-list-view').dataset;
    const store = new EnvironmentsStore();

    return {
      store,
      service: {},
      state: store.state,
      visibility: 'available',
      isLoading: false,
      cssContainerClass: environmentsData.cssClass,
      endpoint: environmentsData.environmentsDataEndpoint,
      canCreateDeployment: environmentsData.canCreateDeployment,
      canReadEnvironment: environmentsData.canReadEnvironment,
      canCreateEnvironment: environmentsData.canCreateEnvironment,
      projectEnvironmentsPath: environmentsData.projectEnvironmentsPath,
      projectStoppedEnvironmentsPath: environmentsData.projectStoppedEnvironmentsPath,
      newEnvironmentPath: environmentsData.newEnvironmentPath,
      helpPagePath: environmentsData.helpPagePath,
      isMakingRequest: false,

      // Pagination Properties,
      paginationInformation: {},
      pageNumber: 1,
    };
  },

  computed: {
    scope() {
      return getParameterByName('scope');
    },

    canReadEnvironmentParsed() {
      return convertPermissionToBoolean(this.canReadEnvironment);
    },

    canCreateDeploymentParsed() {
      return convertPermissionToBoolean(this.canCreateDeployment);
    },

    canCreateEnvironmentParsed() {
      return convertPermissionToBoolean(this.canCreateEnvironment);
    },

    /**
     * Pagination should only be rendered when we have information about it and when the
     * number of total pages is bigger than 1.
     *
     * @return {Boolean}
     */
    shouldRenderPagination() {
      return this.state.paginationInformation && this.state.paginationInformation.totalPages > 1;
    },
  },

  /**
   * Fetches all the environments and stores them.
   * Toggles loading property.
   */
  created() {
    const scope = getParameterByName('scope') || this.visibility;
    const page = getParameterByName('page') || this.pageNumber;

    this.service = new EnvironmentsService(this.endpoint);

    const poll = new Poll({
      resource: this.service,
      method: 'get',
      data: { scope, page },
      successCallback: this.successCallback,
      errorCallback: this.errorCallback,
      notificationCallback: (isMakingRequest) => {
        this.isMakingRequest = isMakingRequest;
      },
    });

    if (!Visibility.hidden()) {
      this.isLoading = true;
      poll.makeRequest();
    }

    Visibility.change(() => {
      if (!Visibility.hidden()) {
        poll.restart();
      } else {
        poll.stop();
      }
    });

    eventHub.$on('toggleFolder', this.toggleFolder);
    eventHub.$on('postAction', this.postAction);
    eventHub.$on('toggleDeployBoard', this.toggleDeployBoard);
  },

  beforeDestroy() {
    eventHub.$off('toggleFolder');
    eventHub.$off('postAction');
    eventHub.$off('toggleDeployBoard');
  },

  methods: {

    /**
     * Toggles the visibility of the deploy boards of the clicked environment.
     * @param {Object} model
     */
    toggleDeployBoard(model) {
      this.store.toggleDeployBoard(model.id);
    },

    toggleFolder(folder) {
      this.store.toggleFolder(folder);

      if (!folder.isOpen) {
        this.fetchChildEnvironments(folder, true);
      }
    },

    /**
     * Will change the page number and update the URL.
     *
     * @param  {Number} pageNumber desired page to go to.
     * @return {String}
     */
    changePage(pageNumber) {
      const param = setParamInURL('page', pageNumber);

      gl.utils.visitUrl(param);
      return param;
    },

    fetchEnvironments() {
      const scope = getParameterByName('scope') || this.visibility;
      const page = getParameterByName('page') || this.pageNumber;

      this.isLoading = true;

      return this.service.get({ scope, page })
        .then(this.successCallback)
        .catch(this.errorCallback);
    },

    fetchChildEnvironments(folder, showLoader = false) {
      this.store.updateEnvironmentProp(folder, 'isLoadingFolderContent', showLoader);

      this.service.getFolderContent(folder.folder_path)
        .then(resp => resp.json())
        .then(response => this.store.setfolderContent(folder, response.environments))
        .then(() => this.store.updateEnvironmentProp(folder, 'isLoadingFolderContent', false))
        .catch(() => {
          // eslint-disable-next-line no-new
          new Flash('An error occurred while fetching the environments.');
          this.store.updateEnvironmentProp(folder, 'isLoadingFolderContent', false);
        });
    },

    postAction(endpoint) {
      if (!this.isMakingRequest) {
        this.isLoading = true;

        this.service.postAction(endpoint)
          .then(() => this.fetchEnvironments())
          .catch(() => new Flash('An error occurred while making the request.'));
      }
    },

    successCallback(resp) {
      this.saveData(resp);

      // We need to verify if any folder is open to also update it
      const openFolders = this.store.getOpenFolders();
      if (openFolders.length) {
        openFolders.forEach(folder => this.fetchChildEnvironments(folder));
      }
    },

    errorCallback() {
      this.isLoading = false;
      // eslint-disable-next-line no-new
      new Flash('An error occurred while fetching the environments.');
    },
  },
};
</script>
<template>
  <div :class="cssContainerClass">
    <div class="top-area">
      <ul
        v-if="!isLoading"
        class="nav-links">
        <li :class="{ active: scope === null || scope === 'available' }">
          <a :href="projectEnvironmentsPath">
            Available
            <span class="badge js-available-environments-count">
              {{state.availableCounter}}
            </span>
          </a>
        </li>
        <li :class="{ 'active' : scope === 'stopped' }">
          <a :href="projectStoppedEnvironmentsPath">
            Stopped
            <span class="badge js-stopped-environments-count">
              {{state.stoppedCounter}}
            </span>
          </a>
        </li>
      </ul>
      <div
        v-if="canCreateEnvironmentParsed && !isLoading"
        class="nav-controls">
        <a
          :href="newEnvironmentPath"
          class="btn btn-create">
          New environment
        </a>
      </div>
    </div>

    <div class="environments-container">
      <loading-icon
        label="Loading environments"
        size="3"
        v-if="isLoading"
        />

      <div
        class="blank-state blank-state-no-icon"
        v-if="!isLoading && state.environments.length === 0">
        <h2 class="blank-state-title js-blank-state-title">
          You don't have any environments right now.
        </h2>
        <p class="blank-state-text">
          Environments are places where code gets deployed, such as staging or production.
          <br />
          <a :href="helpPagePath">
            Read more about environments
          </a>
        </p>

        <a
          v-if="canCreateEnvironmentParsed"
          :href="newEnvironmentPath"
          class="btn btn-create js-new-environment-button">
          New environment
        </a>
      </div>

      <div
        class="table-holder"
        v-if="!isLoading && state.environments.length > 0">

        <environment-table
          :environments="state.environments"
          :can-create-deployment="canCreateDeploymentParsed"
          :can-read-environment="canReadEnvironmentParsed"
          />
      </div>

      <table-pagination v-if="state.paginationInformation && state.paginationInformation.totalPages > 1"
        :change="changePage"
        :pageInfo="state.paginationInformation" />
    </div>
  </div>
</template>
+2 −1
Original line number Diff line number Diff line
<script>
import tooltip from '../../vue_shared/directives/tooltip';
import { s__ } from '../../locale';

/**
 * Renders the external url link in environments table.
@@ -18,7 +19,7 @@ export default {

  computed: {
    title() {
      return 'Open';
      return s__('Environments|Open');
    },
  },
};
+4 −4
Original line number Diff line number Diff line
@@ -430,7 +430,7 @@ export default {
        v-if="!model.isFolder"
        class="table-mobile-header"
        role="rowheader">
        Environment
        {{s__("Environments|Environment")}}
      </div>
      <span
        class="deploy-board-icon"
@@ -520,7 +520,7 @@ export default {
      <div
        role="rowheader"
        class="table-mobile-header">
        Commit
        {{s__("Environments|Commit")}}
      </div>
      <div
        v-if="hasLastDeploymentKey"
@@ -536,7 +536,7 @@ export default {
      <div
        v-if="!hasLastDeploymentKey"
        class="commit-title table-mobile-content">
        No deployments yet
        {{s__("Environments|No deployments yet")}}
      </div>
    </div>

@@ -546,7 +546,7 @@ export default {
      <div
        role="rowheader"
        class="table-mobile-header">
        Updated
        {{s__("Environments|Updated")}}
      </div>
      <span
        v-if="canShowDate"
Loading