File

src/app/modules/search/staff/staff.ts

Description

Поиск сотрудников организации

Implements

OnInit

Metadata

selector search-staff
styleUrls staff.scss
templateUrl ./staff.html

Index

Properties
Methods

Constructor

constructor(profileService: ProfileService, commonService: CommonService)

Конструктор

Parameters :
Name Type Description
profileService ProfileService
commonService CommonService

Methods

ngOnInit
ngOnInit()

Инициализация

Returns : void
onFilter
onFilter(event: )

Получение новых данных для фильтрации

Parameters :
Name Type Description
event
Returns : void
onViewProfile
onViewProfile(event: )

Получение профиля при просмотре

Parameters :
Name Type Description
event
Returns : void
setCatalog
setCatalog()

Получение справочников

Returns : void

Properties

catalog
catalog: any
Type : any

Справочники для фильтров

data
data: any
Type : any

Данные

defaultImage
defaultImage: string
Type : string
Default value : assets/images/default_image.svg

Изображение по-умолчанию

header
header: string
Type : string
Default value : Поиск сотрудника

Заголовок

loading
loading: boolean
Type : boolean
Default value : true

Индикатор загрузки основных данных

profile
profile: any
Type : any

Профиль

import { Component, OnInit } from '@angular/core';
import { ProfileService } from 'glx.ui/components/kernel/services/profile.service';
import { CommonService } from 'glx.ui/components/kernel/services/common.service';

/**
 * Поиск сотрудников организации
 */
@Component({
  selector: 'search-staff',
  templateUrl: './staff.html',
  styleUrls: ['./staff.scss']
})

export class SearchStaffComponent implements OnInit {
  /**
   * Заголовок
   * @type {string}
   */
  header: string = 'Поиск сотрудника';
  /**
   * Изображение по-умолчанию
   * @type {string}
   */
  defaultImage: string = 'assets/images/default_image.svg';
  /**
   * Данные
   * @type {{}}
   */
  data: any = {};
  /**
   * Справочники для фильтров
   * @type {{}}
   */
  catalog: any = {};
  /**
   * Профиль
   * @type {{}}
   */
  profile: any = {};
  /**
   * Индикатор загрузки основных данных
   * @type {boolean}
   */
  loading: boolean = true;

  /**
   * Конструктор
   * @param {ProfileService} profileService
   * @param {CommonService} commonService
   */
  constructor(private profileService: ProfileService,
              private commonService: CommonService,) {
  }

  /**
   * Инициализация
   */
  ngOnInit() {
    this.loading = true;
    this.catalog = {
      departments: [],
      job_titles: []
    };
    this.setCatalog();
  }

  /**
   * Получение справочников
   */
  setCatalog() {
    this.commonService.get('depslist')
      .subscribe(
        data => {
          this.catalog.departments = [];
          this.catalog.departments.push({'value': '', 'label': '(любое)'});
          for (let i = 0; i < data.length; i++) {
            this.catalog.departments.push(data[i]);
          }
        },
        error => {
          console.error(error);
        });

    this.commonService.get('jobtitles')
      .subscribe(
        data => {
          this.catalog.job_titles = [];
          this.catalog.job_titles.push({'value': '', 'label': '(любая)'});
          for (let i = 0; i < data.length; i++) {
            this.catalog.job_titles.push(data[i]);
          }
        },
        error => {
          console.error(error);
        });
  }

  /**
   * Получение новых данных для фильтрации
   * @param event
   */
  onFilter(event) {
    this.profileService.searchEmployees(event)
      .subscribe(
        data => {
          this.data = data;
        },
        error => {
          console.error(error);
        },
        () => {
          this.loading = false;
        });
  }

  /**
   * Получение профиля при просмотре
   * @param event
   */
  onViewProfile(event) {
    this.profile = {};
    this.profileService.get(event)
      .subscribe(
        data => {
          this.profile = data;
        },
        error => {
          console.error(error);
        });
  }
}
<glx-page-title-bx [header]="header"></glx-page-title-bx>
<div class="staff-search-wrapper">
  <glx-staff-search
    [filterShow]="false"
    [data]="data"
    [catalog]="catalog"
    [profile]="profile"
    (onFilter)="onFilter($event)"
    (onViewProfile)="onViewProfile($event)"
    [defaultImage]="defaultImage"
    [loading]="loading"
    imagePrefix="/bitrix/galaktika/galaktika.vuzapi/public/"
    globalFilterPlaceholder="Поиск по ФИО, подразделению, должности..."
  ></glx-staff-search>
</div>
Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""