aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/components/DiffCommitSelector.vue
diff options
context:
space:
mode:
Diffstat (limited to 'web_src/js/components/DiffCommitSelector.vue')
-rw-r--r--web_src/js/components/DiffCommitSelector.vue143
1 files changed, 71 insertions, 72 deletions
diff --git a/web_src/js/components/DiffCommitSelector.vue b/web_src/js/components/DiffCommitSelector.vue
index 283ef03ab9..48dc9d72ff 100644
--- a/web_src/js/components/DiffCommitSelector.vue
+++ b/web_src/js/components/DiffCommitSelector.vue
@@ -1,75 +1,3 @@
-<template>
- <div class="ui scrolling dropdown custom">
- <button
- class="ui basic button"
- id="diff-commit-list-expand"
- @click.stop="toggleMenu()"
- :data-tooltip-content="locale.filter_changes_by_commit"
- aria-haspopup="true"
- aria-controls="diff-commit-selector-menu"
- :aria-label="locale.filter_changes_by_commit"
- aria-activedescendant="diff-commit-list-show-all"
- >
- <svg-icon name="octicon-git-commit"/>
- </button>
- <div class="menu left transition" id="diff-commit-selector-menu" :class="{visible: menuVisible}" v-show="menuVisible" v-cloak :aria-expanded="menuVisible ? 'true': 'false'">
- <div class="loading-indicator is-loading" v-if="isLoading"/>
- <div v-if="!isLoading" class="vertical item gt-df gt-fc gt-gap-2" id="diff-commit-list-show-all" role="menuitem" @keydown.enter="showAllChanges()" @click="showAllChanges()">
- <div class="gt-ellipsis">
- {{ locale.show_all_commits }}
- </div>
- <div class="gt-ellipsis text light-2 gt-mb-0">
- {{ locale.stats_num_commits }}
- </div>
- </div>
- <!-- only show the show changes since last review if there is a review AND we are commits ahead of the last review -->
- <div
- v-if="lastReviewCommitSha != null" role="menuitem"
- class="vertical item gt-df gt-fc gt-gap-2 gt-border-secondary-top"
- :class="{disabled: commitsSinceLastReview === 0}"
- @keydown.enter="changesSinceLastReviewClick()"
- @click="changesSinceLastReviewClick()"
- >
- <div class="gt-ellipsis">
- {{ locale.show_changes_since_your_last_review }}
- </div>
- <div class="gt-ellipsis text light-2">
- {{ commitsSinceLastReview }} commits
- </div>
- </div>
- <span v-if="!isLoading" class="info gt-border-secondary-top text light-2">{{ locale.select_commit_hold_shift_for_range }}</span>
- <template v-for="commit in commits" :key="commit.id">
- <div
- class="vertical item gt-df gt-gap-2 gt-border-secondary-top" role="menuitem"
- :class="{selection: commit.selected, hovered: commit.hovered}"
- @keydown.enter.exact="commitClicked(commit.id)"
- @keydown.enter.shift.exact="commitClickedShift(commit)"
- @mouseover.shift="highlight(commit)"
- @click.exact="commitClicked(commit.id)"
- @click.ctrl.exact="commitClicked(commit.id, true)"
- @click.meta.exact="commitClicked(commit.id, true)"
- @click.shift.exact.stop.prevent="commitClickedShift(commit)"
- >
- <div class="gt-f1 gt-df gt-fc gt-gap-2">
- <div class="gt-ellipsis commit-list-summary">
- {{ commit.summary }}
- </div>
- <div class="gt-ellipsis text light-2">
- {{ commit.committer_or_author_name }}
- <span class="text right">
- <relative-time class="time-since" prefix="" :datetime="commit.time" data-tooltip-content data-tooltip-interactive="true">{{ commit.time }}</relative-time>
- </span>
- </div>
- </div>
- <div class="gt-mono">
- {{ commit.short_sha }}
- </div>
- </div>
- </template>
- </div>
- </div>
-</template>
-
<script>
import {SvgIcon} from '../svg.js';
@@ -259,6 +187,77 @@ export default {
}
};
</script>
+<template>
+ <div class="ui scrolling dropdown custom">
+ <button
+ class="ui basic button"
+ id="diff-commit-list-expand"
+ @click.stop="toggleMenu()"
+ :data-tooltip-content="locale.filter_changes_by_commit"
+ aria-haspopup="true"
+ aria-controls="diff-commit-selector-menu"
+ :aria-label="locale.filter_changes_by_commit"
+ aria-activedescendant="diff-commit-list-show-all"
+ >
+ <svg-icon name="octicon-git-commit"/>
+ </button>
+ <div class="menu left transition" id="diff-commit-selector-menu" :class="{visible: menuVisible}" v-show="menuVisible" v-cloak :aria-expanded="menuVisible ? 'true': 'false'">
+ <div class="loading-indicator is-loading" v-if="isLoading"/>
+ <div v-if="!isLoading" class="vertical item gt-df gt-fc gt-gap-2" id="diff-commit-list-show-all" role="menuitem" @keydown.enter="showAllChanges()" @click="showAllChanges()">
+ <div class="gt-ellipsis">
+ {{ locale.show_all_commits }}
+ </div>
+ <div class="gt-ellipsis text light-2 gt-mb-0">
+ {{ locale.stats_num_commits }}
+ </div>
+ </div>
+ <!-- only show the show changes since last review if there is a review AND we are commits ahead of the last review -->
+ <div
+ v-if="lastReviewCommitSha != null" role="menuitem"
+ class="vertical item gt-df gt-fc gt-gap-2 gt-border-secondary-top"
+ :class="{disabled: commitsSinceLastReview === 0}"
+ @keydown.enter="changesSinceLastReviewClick()"
+ @click="changesSinceLastReviewClick()"
+ >
+ <div class="gt-ellipsis">
+ {{ locale.show_changes_since_your_last_review }}
+ </div>
+ <div class="gt-ellipsis text light-2">
+ {{ commitsSinceLastReview }} commits
+ </div>
+ </div>
+ <span v-if="!isLoading" class="info gt-border-secondary-top text light-2">{{ locale.select_commit_hold_shift_for_range }}</span>
+ <template v-for="commit in commits" :key="commit.id">
+ <div
+ class="vertical item gt-df gt-gap-2 gt-border-secondary-top" role="menuitem"
+ :class="{selection: commit.selected, hovered: commit.hovered}"
+ @keydown.enter.exact="commitClicked(commit.id)"
+ @keydown.enter.shift.exact="commitClickedShift(commit)"
+ @mouseover.shift="highlight(commit)"
+ @click.exact="commitClicked(commit.id)"
+ @click.ctrl.exact="commitClicked(commit.id, true)"
+ @click.meta.exact="commitClicked(commit.id, true)"
+ @click.shift.exact.stop.prevent="commitClickedShift(commit)"
+ >
+ <div class="gt-f1 gt-df gt-fc gt-gap-2">
+ <div class="gt-ellipsis commit-list-summary">
+ {{ commit.summary }}
+ </div>
+ <div class="gt-ellipsis text light-2">
+ {{ commit.committer_or_author_name }}
+ <span class="text right">
+ <relative-time class="time-since" prefix="" :datetime="commit.time" data-tooltip-content data-tooltip-interactive="true">{{ commit.time }}</relative-time>
+ </span>
+ </div>
+ </div>
+ <div class="gt-mono">
+ {{ commit.short_sha }}
+ </div>
+ </div>
+ </template>
+ </div>
+ </div>
+</template>
<style scoped>
.hovered:not(.selection) {
background-color: var(--color-small-accent) !important;