All files / app/assets/javascripts/projects/commit/components commit_options_dropdown.vue

95.45% Statements 21/22
100% Branches 7/7
100% Functions 12/12
95.45% Lines 21/22

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        1x                                                                                   10x     8x                   8x                   8x                 10x                     9x                       10x 10x 9x   10x 10x             10x 10x 8x   10x 8x   10x 8x   10x                     2x                                              
<script>
import { GlDisclosureDropdownGroup, GlDisclosureDropdown } from '@gitlab/ui';
import { s__, __ } from '~/locale';
import { OPEN_REVERT_MODAL, OPEN_CHERRY_PICK_MODAL } from '../constants';
import eventHub from '../event_hub';
 
export default {
  i18n: {
    gitlabTag: s__('CreateTag|Tag'),
  },
 
  components: {
    GlDisclosureDropdown,
    GlDisclosureDropdownGroup,
  },
  inject: {
    newProjectTagPath: {
      default: '',
    },
    emailPatchesPath: {
      default: '',
    },
    plainDiffPath: {
      default: '',
    },
  },
  props: {
    canRevert: {
      type: Boolean,
      required: true,
    },
    canCherryPick: {
      type: Boolean,
      required: true,
    },
    canTag: {
      type: Boolean,
      required: true,
    },
    canEmailPatches: {
      type: Boolean,
      required: true,
    },
  },
  computed: {
    showDivider() {
      return this.canRevert || this.canCherryPick || this.canTag;
    },
    cherryPickItem() {
      return {
        text: s__('ChangeTypeAction|Cherry-pick'),
        extraAttrs: {
          'data-testid': 'cherry-pick-link',
        },
        action: () => this.showModal(OPEN_CHERRY_PICK_MODAL),
      };
    },
 
    revertLinkItem() {
      return {
        text: s__('ChangeTypeAction|Revert'),
        extraAttrs: {
          'data-testid': 'revert-link',
        },
        action: () => this.showModal(OPEN_REVERT_MODAL),
      };
    },
 
    tagLinkItem() {
      return {
        text: s__('CreateTag|Tag'),
        href: this.newProjectTagPath,
        extraAttrs: {
          'data-testid': 'tag-link',
        },
      };
    },
    plainDiffItem() {
      return {
        text: s__('DownloadCommit|Plain Diff'),
        href: this.plainDiffPath,
        extraAttrs: {
          download: '',
          rel: 'nofollow',
          'data-testid': 'plain-diff-link',
        },
      };
    },
    patchesItem() {
      return {
        text: __('Patches'),
        href: this.emailPatchesPath,
        extraAttrs: {
          download: '',
          rel: 'nofollow',
          'data-testid': 'email-patches-link',
        },
      };
    },
 
    downloadsGroup() {
      const items = [];
      if (this.canEmailPatches) {
        items.push(this.patchesItem);
      }
      items.push(this.plainDiffItem);
      return {
        name: __('Downloads'),
        items,
      };
    },
 
    optionsGroup() {
      const items = [];
      if (this.canRevert) {
        items.push(this.revertLinkItem);
      }
      if (this.canCherryPick) {
        items.push(this.cherryPickItem);
      }
      if (this.canTag) {
        items.push(this.tagLinkItem);
      }
      return {
        items,
      };
    },
  },
 
  methods: {
    showModal(modalId) {
      eventHub.$emit(modalId);
    },
    closeDropdown() {
      this.$refs.userDropdown.close();
    },
  },
};
</script>
 
<template>
  <gl-disclosure-dropdown
    ref="userDropdown"
    :toggle-text="__('Options')"
    right
    data-testid="commit-options-dropdown"
    class="gl-line-height-20"
  >
    <gl-disclosure-dropdown-group :group="optionsGroup" @action="closeDropdown" />
 
    <gl-disclosure-dropdown-group
      :bordered="showDivider"
      :group="downloadsGroup"
      @action="closeDropdown"
    />
  </gl-disclosure-dropdown>
</template>