forked from pnp/sp-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RecentContactsWebPart.ts
91 lines (80 loc) · 2.54 KB
/
RecentContactsWebPart.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import * as React from 'react';
import * as ReactDom from 'react-dom';
import { Version } from '@microsoft/sp-core-library';
import {
BaseClientSideWebPart,
IPropertyPaneConfiguration,
PropertyPaneTextField
} from '@microsoft/sp-webpart-base';
import * as strings from 'RecentContactsWebPartStrings';
import { RecentContacts, IRecentContactsProps } from './components';
import { MSGraphClient } from '@microsoft/sp-http';
export interface IRecentContactsWebPartProps {
title: string;
nrOfContacts: number;
}
export default class RecentContactsWebPart extends BaseClientSideWebPart<IRecentContactsWebPartProps> {
private graphClient: MSGraphClient;
private propertyFieldNumber;
public onInit(): Promise<void> {
return new Promise<void>((resolve: () => void, reject: (error: any) => void): void => {
this.context.msGraphClientFactory
.getClient()
.then((client: MSGraphClient): void => {
this.graphClient = client;
resolve();
}, err => reject(err));
});
}
public render(): void {
const element: React.ReactElement<IRecentContactsProps> = React.createElement(
RecentContacts,
{
title: this.properties.title,
nrOfContacts: this.properties.nrOfContacts,
graphClient: this.graphClient,
displayMode: this.displayMode,
updateProperty: (value: string) => {
this.properties.title = value;
}
}
);
ReactDom.render(element, this.domElement);
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
//executes only before property pane is loaded.
protected async loadPropertyPaneResources(): Promise<void> {
// import additional controls/components
const { PropertyFieldNumber } = await import(
/* webpackChunkName: 'pnp-propcontrols-number' */
'@pnp/spfx-property-controls/lib/propertyFields/number'
);
this.propertyFieldNumber = PropertyFieldNumber;
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: strings.PropertyPaneDescription
},
groups: [
{
groupFields: [
this.propertyFieldNumber("nrOfContacts", {
key: "nrOfContacts",
label: strings.NrOfContactsToShow,
value: this.properties.nrOfContacts,
minValue: 1,
maxValue: 10
})
]
}
]
}
]
};
}
}