WIP: Realtime pipeline index vue
What does this MR do?
This keeps the realtime update logic so that once !7196 (merged) is merged for the initial render we can work on the realtime updates.
Are there points in the code the reviewer needs to double check?
Why was this MR needed?
Does this MR meet the acceptance criteria?
-
Changelog entry added -
Documentation created/updated -
API support added - Tests
-
Added for this feature/bug -
All builds are passing
-
-
Conform by the merge request performance guides -
Conform by the style guides -
Branch has no merge conflicts with master
(if it does - rebase it please) -
Squashed related commits together
What are the relevant issue numbers?
Merge request reports
Activity
- app/serializers/pipeline_entity.rb 0 → 100644
1 class PipelineEntity < Grape::Entity 2 include RequestAwareEntity 3 4 expose :id 5 expose :user, if: -> (pipeline, opts) { created?(pipeline, opts) }, using: UserEntity 6 7 expose :status 8 expose :duration 9 expose :finished_at 10 expose :stages_with_statuses, as: :stages, if: -> (pipeline, opts) { updated?(pipeline, opts) }, using: PipelineStageEntity 11 expose :artifacts, if: -> (pipeline, opts) { updated?(pipeline, opts) }, using: PipelineArtifactEntity 12 expose :manual_actions, if: -> (pipeline, opts) { updated?(pipeline, opts) }, using: PipelineActionEntity 11 11 12 12 @running_or_pending_count = PipelinesFinder.new(project).execute(scope: 'running').count 13 13 @pipelines_count = PipelinesFinder.new(project).execute.count 14 @last_updated = params[:updated_at] 15 16 respond_to do |format| 17 format.html 18 format.json do 19 render json: { 20 pipelines: PipelineSerializer.new(project: @project). 21 represent(@pipelines, current_user: current_user, last_updated: @last_updated), Current user and
last_updated
should become a part of the request (passed to the initializer). Request get's transformed into object with an interface. When entity depends on request elements, and the element is missing, it raises error, which is a design decision that improves entities reusability.Edited by Grzegorz Bizon
106 statuses.group('stage').select(:stage) 107 .order('max(stage_idx)') 108 end 109 110 def stages_with_statuses 111 status_sql = statuses.latest.where('stage=sg.stage').status_sql 112 113 stages_with_statuses = CommitStatus.from(self.stages, :sg). 114 pluck('sg.stage', status_sql) 115 116 stages_with_statuses.map do |stage| 117 OpenStruct.new( 118 name: stage.first, 119 status: stage.last, 120 pipeline: self 121 ) - app/serializers/pipeline_action_entity.rb 0 → 100644
1 class PipelineActionEntity < Grape::Entity 2 include RequestAwareEntity 3 4 expose :name do |build| 5 build.name.humanize 6 end 7 8 expose :url do |build| 9 play_namespace_project_build_path( 10 pipeline.project.namespace, 11 pipeline.project, 12 build) 13 end 14 end - app/serializers/pipeline_entity.rb 0 → 100644
42 43 expose :sha_url do |pipeline| 44 namespace_project_commit_path( 45 pipeline.project.namespace, 46 pipeline.project, 47 pipeline.sha) 48 end 49 50 expose :title do |pipeline| 51 pipeline.commit.try(:title) 52 end 53 54 expose :author, using: UserEntity do |pipeline| 55 pipeline.commit.try(:author) 56 end 57 end
Please register or sign in to reply