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

empty_state_component.html.haml « pajamas « components « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d7af153db2c5985f7a251cee67737844bc972cb1 (plain)
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
- empty_state_class = @compact ? 'gl-flex-direction-row' : 'gl-text-center gl-flex-direction-column'

%section.gl-display-flex.gl-empty-state{ **@empty_state_options, class: empty_state_class }
  - if @svg_path.present?
    - image_class = @compact ? 'gl-display-none gl-sm-display-block gl-px-4' : 'gl-max-w-full'
    %div{ class: image_class }
      = image_tag @svg_path, alt: "", class: 'gl-dark-invert-keep-hue'

  - content_wrapper_class = @compact ? 'gl-flex-grow-1 gl-flex-basis-0 gl-px-4' : 'gl-m-auto gl-p-5'
  .gl-empty-state-content.gl-mx-auto.gl-my-0{ class: content_wrapper_class }
    - title_class = @compact ? 'h5' : 'h4'
    %h1.gl-font-size-h-display.gl-line-height-36.gl-mt-0.gl-mb-0{ class: title_class }
      = @title

    - if description?
      %p.gl-mt-4.gl-mb-0{ 'data-testid': 'empty-state-description' }
        = description

    - if @primary_button_text.present? || @secondary_button_text.present?
      - button_wrapper_class = @compact.present? ? '' : 'gl-justify-content-center'
      .gl-display-flex.gl-flex-wrap.gl-mt-5.gl-gap-3{ class: button_wrapper_class }

        - if @primary_button_text.present?
          = render Pajamas::ButtonComponent.new(variant: :confirm, href: @primary_button_link, button_options: { class: 'gl-ml-0!' }) do
            = @primary_button_text

        - if @secondary_button_text.present?
          = render Pajamas::ButtonComponent.new(variant: :default, href: @secondary_button_link, button_options: { class: ('gl-ml-0!' unless @primary_button_text.present?) }) do
            = @secondary_button_text