Socket
Book a DemoInstallSign in
Socket

@iapps/ngx-dhis2-org-unit-filter

Package Overview
Dependencies
Maintainers
15
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iapps/ngx-dhis2-org-unit-filter

Organisation unit selection filter module for DHIS2 applications based on angular 6+

latest
Source
npmnpm
Version
1.1.37
Version published
Maintainers
15
Created
Source

DHIS2 Organisation unit selection filter

Organisation unit selection filter module for DHIS2 applications based on angular 6+

installation

npm install @iapps/ngx-dhis2-org-unit-filter

Usage

If the module is to be imported in the app.module or any other feature module, then import as

import { NgxDhis2OrgUnitFilterModule } from '@iapps/ngx-dhis2-org-unit-filter';

then add this in the imports

imports: [
    ...
    NgxDhis2OrgUnitFilterModule,
    ...
    ]

Once imported, orgunitfilter can be called in as

<ngx-dhis2-org-unit-filter
    [orgUnitFilterConfig]="orgUnitFilterConfig"
    [selectedOrgUnitItems]="selectedOrgUnitItems"
    (orgUnitUpdate)="onOrgUnitUpdate($event, 'UPDATE')"
    (orgUnitClose)="onOrgUnitUpdate($event, 'CLOSE')">
</ngx-dhis2-org-unit-filter>

Inputs

InputDescription
selectedOrgUnitItemsThis is a list of selected organisation units, groups, or levels
orgUnitFilterConfigThis when passed overrides default configuration for the organisation unit filter

Input models

selectedOrgUnitItems

ItemDescription
idOrganisation unit identifier
name (optional)Organisation unit name
level (optional)Level of organisation unit in the hierarchy eg. 1, 2
type (optional)Type of organisation unit eg. USER_ORGANISATIONUNIT, ORGANISATION_LEVEL, ORGANISATIONUNIT_GROUP, ORGANISATIONUNIT

orgUnitFilterConfig

ItemDescriptionDefault value
singleSelectionSpecify whether org unit selection is single or multipletrue
reportUse (optional)Tells whether org units should be used for reports or data entrytrue
minLevel (optional)Specify minimum level for org unitsnone
updateOnSelect (optional)Specify whether to update on select or unselect or on button clickfalse
closeOnDestroy (optional)Call on closeOrgUnit Method when component get destroyed, if set truetrue

Outputs

OutputDescription
orgUnitUpdateThis is emitted when UPDATE button is clicked
orgUnitCloseThis is emitted when CLOSE button is clicked

Sample output

{
  "dimension": "ou",
  "items": [
    {
      "id": "PMa2VCrupOd",
      "name": "Kambia",
      "level": 2,
      "type": "ORGANISATION_UNIT"
    },
    {
      "id": "at6UHUQatSo",
      "name": "Western Area",
      "level": 2,
      "type": "ORGANISATION_UNIT"
    },
    {
      "id": "TEQlaapDQoK",
      "name": "Port Loko",
      "level": 2,
      "type": "ORGANISATION_UNIT"
    }
  ]
}

FAQs

Package last updated on 18 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts