Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-11-19 10:38:07 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-11-21 21:57:11 +0300
commit46d2b4307a3f9e3943205f1c7107c9a3abd6ac6c (patch)
tree981a4e767e8e5602a6ce789b339ca2e13d7ff372 /app/views/projects/cycle_analytics/show.html.haml
parent1a7cc190b734731f936c9aa067bf5ac2d46ef2c6 (diff)
Add view to handle the case when user doesn’t have access to stage
Diffstat (limited to 'app/views/projects/cycle_analytics/show.html.haml')
-rw-r--r--app/views/projects/cycle_analytics/show.html.haml24
1 files changed, 15 insertions, 9 deletions
diff --git a/app/views/projects/cycle_analytics/show.html.haml b/app/views/projects/cycle_analytics/show.html.haml
index 50255fe7a29..da9823e78fe 100644
--- a/app/views/projects/cycle_analytics/show.html.haml
+++ b/app/views/projects/cycle_analytics/show.html.haml
@@ -72,15 +72,21 @@
.stage-name
{{ stage.title }}
.stage-median
- %template{ "v-if" => "stage.value" }
- {{ stage.value }}
- %template{ "v-else" => true }
- %span.stage-empty
+ %template{ "v-if" => "stage.isUserAllowed" }
+ %span{ "v-if" => "stage.value" }
+ {{ stage.value }}
+ %span.stage-empty{ "v-else" => true }
No enough data
+ %template{ "v-else" => true }
+ %span.not-available
+ Not available
.section.stage-events
%template{ "v-if" => "isLoadingStage" }
- = icon("spinner spin", "v-show" => "isLoadingStage")
- %template{ "v-if" => "isEmptyStage && !isLoadingStage" }
- = render partial: "empty_stage"
- %template{ "v-if" => "state.events.length && !isLoadingStage && !isEmptyStage" }
- %component{ ":is" => "currentStage.component", ":stage" => "currentStage", ":items" => "state.events" }
+ = icon("spinner spin")
+ %template{ "v-if" => "currentStage && !currentStage.isUserAllowed" }
+ = render partial: "no_access"
+ %template{ "v-else" => true }
+ %template{ "v-if" => "isEmptyStage && !isLoadingStage" }
+ = render partial: "empty_stage"
+ %template{ "v-if" => "state.events.length && !isLoadingStage && !isEmptyStage" }
+ %component{ ":is" => "currentStage.component", ":stage" => "currentStage", ":items" => "state.events" }