upgrading react-skype-status to spfx 1.5 (#547)

* react-skype-status: upgrading to spfx v1.5

* react-skype-status: fixing unexisting referenced module

* react-skype-status: upgrading to office ui fabric react 6.X

* react-skype-status: switching to production infrastructure ids
This commit is contained in:
Vincent Biret 2018-07-02 03:09:48 -04:00 committed by Vesa Juvonen
parent 9f8b201a17
commit 415b771e86
16 changed files with 18445 additions and 42 deletions

View File

@ -1,8 +1,11 @@
{
"@microsoft/generator-sharepoint": {
"version": "1.3.4",
"version": "1.5.0",
"libraryName": "skype-presence-spfx-react",
"libraryId": "8508d562-b356-4ae0-80ed-7315b2d70b0b",
"environment": "spo"
"environment": "spo",
"isCreatingSolution": true,
"packageManager": "npm",
"componentType": "webpart"
}
}
}

View File

@ -27,6 +27,7 @@ react-skype-status|[Vincent Biret](https://github.com/baywet)
Version|Date|Comments
-------|----|--------
1.1|June 25th, 2018|Upgrade to 1.5
1.0|December 1, 2017|Initial release
## Disclaimer
@ -65,4 +66,4 @@ Don't forget to run `gulp serve --nobrowser` to start the debugging server.
Because Skype needs to silently redirect the user to a page for the authentication flow, you need to create an additional page called `skypepresence` in your site.
You don't need to add anything on that page.
![tracking image](https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/samples/react-skype-status)
![tracking image](https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/samples/react-skype-status)

View File

@ -1,5 +1,5 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx-build/config.2.0.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
"version": "2.0",
"bundles": {
"skype-presence-react-web-part": {
@ -12,7 +12,7 @@
}
},
"externals": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"
},
"localizedResources": {
"SkypePresenceReactWebPartStrings": "lib/webparts/skypePresenceReact/loc/{locale}.js"

View File

@ -1,4 +1,4 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx-build/copy-assets.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
"deployCdnPath": "temp/deploy"
}

View File

@ -1,7 +1,7 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
"workingDir": "./temp/deploy/",
"account": "<!-- STORAGE ACCOUNT NAME -->",
"container": "skype-presence-spfx-react",
"accessKey": "<!-- ACCESS KEY -->"
}
}

View File

@ -1,9 +1,10 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx-build/package-solution.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "skype-presence-spfx-react-client-side-solution",
"id": "8508d562-b356-4ae0-80ed-7315b2d70b0b",
"version": "2.0.0.0"
"version": "2.0.0.0",
"includeClientSideAssets": true
},
"paths": {
"zippedPackage": "solution/skype-presence-spfx-react.sppkg"

View File

@ -1,5 +1,5 @@
{
"$schema": "https://dev.office.com/json-schemas/core-build/serve.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://localhost:5432/workbench",

View File

@ -1,5 +1,5 @@
{
"$schema": "https://dev.office.com/json-schemas/core-build/tslint.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/core-build/tslint.schema.json",
// Display errors as warnings
"displayAsWarning": true,
// The TSLint task may have been configured with several custom lint rules
@ -42,4 +42,4 @@
"whitespace": false
}
}
}
}

View File

@ -1,4 +1,4 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx-build/write-manifests.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
"cdnBasePath": "<!-- PATH TO CDN -->"
}
}

View File

@ -2,5 +2,6 @@
const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
build.initialize(gulp);

18390
samples/react-skype-status/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -11,28 +11,26 @@
"test": "gulp test"
},
"dependencies": {
"@microsoft/sp-core-library": "~1.3.4",
"@microsoft/sp-lodash-subset": "~1.3.4",
"@microsoft/sp-office-ui-fabric-core": "~1.3.4",
"@microsoft/sp-webpart-base": "~1.3.4",
"@types/react": "15.0.38",
"@types/react-addons-shallow-compare": "0.14.17",
"@types/react-addons-test-utils": "0.14.15",
"@types/react-addons-update": "0.14.14",
"@types/react-dom": "0.14.18",
"@types/webpack-env": ">=1.12.1 <1.14.0",
"jquery": "^2.2.4",
"office-ui-fabric-react": "^5.29.0",
"react": "15.4.2",
"react-dom": "15.4.2"
"@microsoft/sp-core-library": "1.5.0",
"@microsoft/sp-lodash-subset": "1.5.0",
"@microsoft/sp-office-ui-fabric-core": "1.5.0",
"@microsoft/sp-webpart-base": "1.5.0",
"@types/es6-promise": "0.0.33",
"@types/react": "15.6.6",
"@types/react-dom": "15.5.6",
"@types/webpack-env": "1.13.1",
"jquery": "^3.3.1",
"office-ui-fabric-react": "^6.19.0",
"react": "15.6.2",
"react-dom": "15.6.2"
},
"devDependencies": {
"@microsoft/sp-build-web": "~1.3.4",
"@microsoft/sp-module-interfaces": "~1.3.4",
"@microsoft/sp-webpart-workbench": "~1.3.4",
"@types/chai": ">=3.4.34 <3.6.0",
"@types/jquery": "^2.0.48",
"@types/mocha": ">=2.2.33 <2.6.0",
"@microsoft/sp-build-web": "1.5.0",
"@microsoft/sp-module-interfaces": "1.5.0",
"@microsoft/sp-webpart-workbench": "1.5.0",
"@types/chai": "3.4.34",
"@types/jquery": "^3.3.4",
"@types/mocha": "2.2.38",
"ajv": "~5.2.2",
"gulp": "~3.9.1"
}

View File

@ -1,5 +1,5 @@
{
"$schema": "https://dev.office.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "cdfa9362-39ea-4137-94ff-5cd3c271f06d",
"alias": "SkypePresenceReactWebPart",
"componentType": "WebPart",

View File

@ -50,8 +50,8 @@ export class SkypeForBusinessCommunicationService implements ICommunicationServi
return SkypeForBusinessCommunicationService.configurationService.getCurrentConfiguration().then((currentConfiguration) => {
return jQuery.getScript("https://swx.cdn.skype.com/shared/v/1.2.36/SkypeBootstrap.min.js").then(() => {
const config: {apiKey: string, apiKeyCC: string} = {
apiKey: "a42fcebd-5b43-4b89-a065-74450fb91255", // sdk
apiKeyCC: "9c967f6b-a846-4df2-b43d-5167e47d81e1", // sdk+ui
apiKey: '595a1aeb-e6dc-4e5b-be96-bb38adc83da1', // SDK
apiKeyCC: '08c97289-7d57-404f-bd97-a6047403e370', // SDK+UI
};
if (currentConfiguration && currentConfiguration.ClientId) {
Skype.initialize({ apiKey: config.apiKey }, (api) => {

View File

@ -1,6 +1,5 @@
export * from "./ICommunicationService";
export * from "./SkypeForBusinessCommunicationService";
export * from "./PersonaCardHandler";
export * from "./ICommunicationConfigurationService";
export * from "./CommunicationConfigurationService";
export * from "./Constants";

View File

@ -2,15 +2,25 @@
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "commonjs",
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"skipLibCheck": true,
"sourceMap": true,
"experimentalDecorators": true,
"types": [
"es6-promise",
"es6-collections",
"webpack-env"
],
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
}
}