forked from pnp/sp-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PersonalEmailWebPart.ts
72 lines (65 loc) · 2.15 KB
/
PersonalEmailWebPart.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
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 'PersonalEmailWebPartStrings';
import { PersonalEmail, IPersonalEmailProps } from './components';
import { PropertyFieldNumber } from '@pnp/spfx-property-controls/lib/PropertyFieldNumber';
import { MSGraphClient } from '@microsoft/sp-client-preview';
export interface IPersonalEmailWebPartProps {
title: string;
nrOfMessages: number;
}
export default class PersonalEmailWebPart extends BaseClientSideWebPart<IPersonalEmailWebPartProps> {
public render(): void {
const element: React.ReactElement<IPersonalEmailProps> = React.createElement(
PersonalEmail,
{
title: this.properties.title,
nrOfMessages: this.properties.nrOfMessages,
// pass the current display mode to determine if the title should be
// editable or not
displayMode: this.displayMode,
// pass the reference to the MSGraphClient
graphClient: this.context.serviceScope.consume(MSGraphClient.serviceKey),
// handle updated web part title
updateProperty: (value: string): void => {
// store the new title in the title web part property
this.properties.title = value;
}
}
);
ReactDom.render(element, this.domElement);
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: strings.PropertyPaneDescription
},
groups: [
{
groupFields: [
PropertyFieldNumber("nrOfMessages", {
key: "nrOfMessages",
label: strings.NrOfMessagesToShow,
value: this.properties.nrOfMessages,
minValue: 1,
maxValue: 10
})
]
}
]
}
]
};
}
}