Add projects list to organization groups and projects page
What does this MR do and why?
Related to #409030 (closed)
The grouptenant scale team is starting to build out an Organization MVC. For more information about what an "Organization" will be see https://docs.gitlab.com/ee/user/organization/
This MR starts building out the projects view on the "Groups and projects" page. For full designs see #406613 (closed)
What this MR does
- Sets up GraphQL resolver with mock response
- The real GraphQL API will be setup in #409312 (closed) but until then we will use mock data so we can start building out the frontend
- Renders the
projects_list.vue
component
What will be done in future MRs
- Add filtered search bar
- Add dropdown to change between
Projects
andGroups
- Add sort
- Add pagination
- Add
Edit
andDelete
actions
Screenshots or screen recordings
Desktop
Mobile
Loading
Error
How to set up and validate locally
- Open Rails console
bin/rails console
- Enable the feature flag
Feature.enable(:ui_for_organizations)
- Create an organization
FactoryBot.create(:organization, name: 'GitLab', path: 'gitlab')
- Navigate to
/-/organizations/gitlab/groups_and_projects
MR acceptance checklist
This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.
-
I have evaluated the MR acceptance checklist for this MR.
Edited by Peter Hegman