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:
Diffstat (limited to 'app/helpers/organizations/organization_helper.rb')
-rw-r--r--app/helpers/organizations/organization_helper.rb34
1 files changed, 34 insertions, 0 deletions
diff --git a/app/helpers/organizations/organization_helper.rb b/app/helpers/organizations/organization_helper.rb
new file mode 100644
index 00000000000..6b5c4342c5c
--- /dev/null
+++ b/app/helpers/organizations/organization_helper.rb
@@ -0,0 +1,34 @@
+# frozen_string_literal: true
+
+module Organizations
+ module OrganizationHelper
+ def organization_show_app_data(organization)
+ {
+ organization: organization.slice(:id, :name),
+ groups_and_projects_organization_path: groups_and_projects_organization_path(organization),
+ # TODO: Update counts to use real data
+ # https://gitlab.com/gitlab-org/gitlab/-/issues/424531
+ association_counts: {
+ groups: 10,
+ projects: 5,
+ users: 1050
+ }
+ }.merge(shared_groups_and_projects_app_data).to_json
+ end
+
+ def organization_groups_and_projects_app_data
+ shared_groups_and_projects_app_data.to_json
+ end
+
+ private
+
+ def shared_groups_and_projects_app_data
+ {
+ projects_empty_state_svg_path: image_path('illustrations/empty-state/empty-projects-md.svg'),
+ groups_empty_state_svg_path: image_path('illustrations/empty-state/empty-groups-md.svg'),
+ new_group_path: new_group_path,
+ new_project_path: new_project_path
+ }
+ end
+ end
+end