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

show.html.haml « notifications « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c7ef2b7e0ed7474f41ff1b6cd2c60ddbcca22b5 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
- add_page_specific_style 'page_bundles/notifications'
- page_title _('Notifications')
- @force_desktop_expanded_sidebar = true

- if @user.errors.any?
  = render Pajamas::AlertComponent.new(variant: :danger) do |c|
    - c.with_body do
      %ul
        - @user.errors.full_messages.each do |msg|
          %li= msg

= hidden_field_tag :notification_type, 'global'
.settings-section.js-search-settings-section
  .settings-sticky-header
    .settings-sticky-header-inner
      %h4.gl-my-0
        = page_title
  %p.gl-text-secondary
    = _('You can specify notification level per group or per project.')

  .gl-mt-0
    = gitlab_ui_form_for @user, url: profile_notifications_path, method: :put, html: { class: 'update-notifications gl-mt-3' } do |f|
      = render_if_exists 'profiles/notifications/email_settings', form: f

    = label_tag :global_notification_level, _('Global notification level'), class: "label-bold gl-mb-0"
    .gl-text-secondary.gl-mb-3
      = _('By default, all projects and groups use the global notifications setting.')

    .form-group.global-notification-setting.gl-mb-3
      - if @global_notification_setting
        .js-vue-notification-dropdown{ data: { dropdown_items: notification_dropdown_items(@global_notification_setting).to_json, notification_level: @global_notification_setting.level, help_page_path: help_page_path('user/profile/notifications'), show_label: 'true' } }

    = gitlab_ui_form_for @user, url: profile_notifications_path, method: :put do |f|
      .form-group
        = f.gitlab_ui_checkbox_component :notified_of_own_activity, _('Receive notifications about your own activity')

    = render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card' }, header_options: { class: 'gl-new-card-header'}, body_options: { class: 'gl-new-card-body' }) do |c|
      - c.with_header do
        %h3.gl-new-card-title
          = _('Groups (%{count})') % { count: @user_groups.total_count }
      - c.with_body do
        - if @user_groups.total_count > 0
          - @group_notifications.each do |setting|
            = render 'group_settings', setting: setting, group: setting.source
          = paginate @user_groups, theme: 'gitlab'
        - else
          .gl-new-card-empty.gl-px-3.gl-py-4= _("You do not belong to any groups yet.")

    = render Pajamas::CardComponent.new(card_options: { class: 'gl-new-card' }, header_options: { class: 'gl-new-card-header gl-display-block'}, body_options: { class: 'gl-new-card-body' }) do |c|
      - c.with_header do
        %h3.gl-new-card-title
          = _('Projects (%{count})') % { count: @project_notifications.size }
        .gl-new-card-description
          = _('To specify the notification level per project of a group you belong to, visit the project page and change the notification level there.')
      - c.with_body do
        - if @project_notifications.size > 0
          - @project_notifications.each do |setting|
            = render 'project_settings', setting: setting, project: setting.source
        - else
          .gl-new-card-empty.gl-px-3.gl-py-4= _("You do not belong to any projects yet.")