Skip to content
Snippets Groups Projects

WIP: Realtime pipeline index vue

Merged username-removed-642931 requested to merge realtime-pipeline-index-vue into master

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.

@ayufan

Are there points in the code the reviewer needs to double check?

Why was this MR needed?

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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
  • Grzegorz Bizon
    Grzegorz Bizon @grzesiek started a thread on commit 6f6119b7
  • 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
    • Do you have idea how it should look differently?

    • Please register or sign in to reply
  • Grzegorz Bizon
    Grzegorz Bizon @grzesiek started a thread on commit 6f6119b7
  • 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 )
  • Grzegorz Bizon
    Grzegorz Bizon @grzesiek started a thread on commit 6f6119b7
  • 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
  • Grzegorz Bizon
    Grzegorz Bizon @grzesiek started a thread on commit 6f6119b7
  • 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
  • Grzegorz Bizon
    Grzegorz Bizon @grzesiek started a thread on commit 6f6119b7
  • 8 8 def request
    9 9 @options.fetch(:request)
    10 10 end
    11
    12 def current_user
    13 @options.fetch(:current_user)
    14 end
  • Please register or sign in to reply
    Loading