Giter Club home page Giter Club logo

isaacchacon / ngreactivepeoplepickerangularmaterial Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 2.0 105 KB

A People Picker in Angular 2+, Tries to emulate office 365 / SharePoint online's People picker, implements Reactive Forms and Angular Material,

TypeScript 88.73% JavaScript 7.22% HTML 3.69% CSS 0.35%
angular angular2 angular4 angular-cli angular-material angular-components sharepoint sharepoint-online sharepoint2013 sharepoint-2016 sharepoint2010 sharepoint-lists

ngreactivepeoplepickerangularmaterial's Introduction

ReactivePeoplePickerAngularMaterial

A People Picker in Angular 2+, Tries to emulate office 365 / SharePoint online's People picker, implements Angular's Reactive Forms and Angular Material,

NPM repository

This people picker is in abstracted layers, so that you could connect any backend with few code changes to he business class, and in theory this people picker should work with any back end. Current back end is a SharePoint 2010 web service (located in NgSharePointWebServices. I think this should work right away with 2013 and, i believe 2016 as well but not 100% sure. It works on SharePoint Online, i already tested it.

This people picker tries to mimick the way Office 365 / SharePoint online people picker works, to some extent.

Please see the app if you want to completely examine / learn how to consume this people picker.

This project was generated with Angular CLI version 1.4.2)

Features:

  • No postback / flickering.
  • It is made utilizing the reactive forms from angular.
  • It will work with mouse and / or keyboard arrows to select the people from the drop down list, and hit enter (or click) to make a selection .
  • Resolves the entity at page load to see if the entity is still valid or not
  • Currently the back end searches by email, login account, or display name, so it is a very powerful search.
  • It implements angular material (2+ ) components.
  • Implements the progress bar from material design , so that it let's people know when the picker is busy making a service call.
  • Implements the autocomplete from material, very nice control!
  • Implements tooltips with the mdtooltip from material design.
  • It will try to resolve the person on the blur event.
  • Implements an output event "onPeoplePicked"
  • current backend retrieves entries from user information list (/_catalogs/userinfo) ( this is the backend project, located in NgSharePointWebServices. )

Screenshots:

New People picker:

New People Picker

Search Results:

Search Results

Hovering with tooltip detail:

Hovering

Resolved picker:

Resolved Picker

No results found:

NoResultsFound

TODO's / current drawbacks:.

  • It does not support multiple people selection. - I have been tested angular material's chips, but they are not fully developed yet. As soon as they finish it, i may look into adding support for multiple people.
  • exception / error handling could be enhanced.
  • Testing specs are not there yet.

Dependencies :

if you run the demo from index.html, (I used angular-cli), you should be able to see at least the initial picker. It won't show any results , you have to connect it to your back end

Trying to make memory, these are the steps that i followed to make this demo run:

  1. Npm install reactive-people-picker-angular-material
  2. Added indigo-pink.css from the animations: (the indigo pink can be grabbed from \node_modules@angular\material\prebuilt-themes), i guess you could grab the other css and it should work. Or you should be able to customize your css. I am a material newbie, please excuse. <link rel="stylesheet" href="/siteassets/bootstrap3.3.7.min.css"> <link href="/siteassets/indigo-pink.css" rel="stylesheet">
  3. If you will utilize the back end of SharePoint web services, get them from the other git hub or npm project if that is the case, i am utilizing JQuery ONLY to treat the xml from the web services results. I am sure that you can do better than me, but i had to quickly treat xml, so go ahead and add this to your index.html or to your webpart code: <script src="/siteassets/jquery-3.1.1.min.js"></script> 3.5 - Make sure that you have angular material and angular/cdk.
  4. then i did an ng serve.

Dissecting the Demo:

The app.module has this relevant code: NgTaxServices is added because my backend is SharePoint web services (asmx), but you may recode the tax-people-picker-business.ts in order to connect your own service / backend.

/*import the new HTTP Client!!!!!*/
import {HttpClientModule} from '@angular/common/http';
import {NgTaxServices} from 'ng-tax-share-point-web-services-module';
import {ReactivePeoplePickerModule} from 'reactive-people-picker-angular-material';
/*the below is necessary because it's the backend library. You can easily fork the picker and change the backend*/
import {TaxReusableComponentsModule} from 'ng-tax-reusable-components';

then , in the imports we do an NgTaxServices.forRoot(): NgTaxServices is added because my backend is SharePoint web services (asmx), but you may recode the tax-people-picker-business.ts in order to connect your own service / backend.

imports: [
    BrowserModule,ReactiveFormsModule,HttpClientModule, NgTaxServices.forRoot(), ReactivePeoplePickerModule
  ],

Now onto the people picker code itself:

on app.component.html:

<people-picker 
(onPeoplePicked)="peoplePickedEventHandler($event);" 
controlId="samplePickerId" 
[group]="sampleFormGroup.get('ParentPickerGroup')">
</people-picker>

we are consuming the output event 'onPeoplePicked', which is an output event . this is optional. the controlId can really be anything i believe. requiredMessage is an optional input parameter that if you don't specified, it should make the picker think that it's not required. the important property to note is the group, which is initialized in the app.component.ts:

createForm() {
		this.sampleFormGroup = this.fb.group({
			ParentPickerGroup:TaxPeoplePickerComponent.buildItem(true)
			});
	}

The FormGroup is created through the static method 'buildItem' from TaxPeoplePickerComponent. You need to specify true if you want to make it required, or false if a people selection is NOT required.

Object UserInfoListEntry: this is the object that is bound and represents a person either in the picker and in the autocomplete (drop down).

it has the following properties: title, jobtitle, name and email and i believe they match to the column names in SharePoint's user information list. It also has an id porperty, which is the id column in Sharepoint.

Example of an object instance that would come from a SharePoint 2010 backend:

id:1212 title:Adams, John jobTitle: Manager3 name: Contoso\JAdams email:[email protected]

	getItemProperties():string[]{	
		return ["title", "jobTitle",  "name", "email" ]
}

Disclaimer:

Use under your own risk, it has not been tested thoroughly.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the -prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor. Before running the tests make sure you are serving the app via ng serve.

Further help

Use this under your own risk no warranties

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

ngreactivepeoplepickerangularmaterial's People

Contributors

angular-cli avatar isaacchacon avatar

Stargazers

 avatar

Watchers

 avatar

ngreactivepeoplepickerangularmaterial's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.