This is an automated email from the ASF dual-hosted git repository.
Aman-Mittal pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/fineract-backoffice-ui.git
from 29cf890 Merge pull request #344 from
russlan23/agent/refactor-loans-array-dates
add 6dcab08 feat(centers): give a center a detail view, so it can be
operated
add 14fdec7 test(e2e): seed the staff the center assignment picks
new 2acfd17 Merge pull request #346 from
Aman-Mittal/feat/center-detail-view
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
e2e/center-servicing.spec.ts | 182 ++++++
e2e/utils/seed-api.ts | 77 +++
playwright.config.ts | 1 +
.../centers/center-action-dialog.component.ts | 202 +++++++
src/app/features/centers/center-detail.model.ts | 127 ++++
.../center-groups-dialog.component.ts} | 118 ++--
.../centers/center-meeting-dialog.component.ts | 290 +++++++++
.../center-staff-dialog.component.ts} | 57 +-
.../features/centers/center-view.component.spec.ts | 369 ++++++++++++
src/app/features/centers/center-view.component.ts | 645 +++++++++++++++++++++
src/app/features/centers/centers-list.component.ts | 9 +-
src/app/features/centers/centers.routes.ts | 18 +
.../features/groups/group-note-form.component.ts | 8 +-
.../groups/tabs/group-notes-list.component.ts | 12 +-
src/assets/i18n/en.json | 35 +-
15 files changed, 2051 insertions(+), 99 deletions(-)
create mode 100644 e2e/center-servicing.spec.ts
create mode 100644 src/app/features/centers/center-action-dialog.component.ts
create mode 100644 src/app/features/centers/center-detail.model.ts
copy src/app/features/{groups/group-members-dialog.component.ts =>
centers/center-groups-dialog.component.ts} (53%)
create mode 100644 src/app/features/centers/center-meeting-dialog.component.ts
copy src/app/features/{groups/group-staff-dialog.component.ts =>
centers/center-staff-dialog.component.ts} (65%)
create mode 100644 src/app/features/centers/center-view.component.spec.ts
create mode 100644 src/app/features/centers/center-view.component.ts