upgrade to v1.11.0

This commit is contained in:
Don Kirkham 2020-11-04 10:29:02 -06:00
parent bcff312786
commit 378759cdb0
13 changed files with 17255 additions and 200 deletions

View File

@ -1,11 +1,12 @@
{
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "onprem19",
"version": "1.10.0",
"libraryName": "word-game",
"libraryId": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"packageManager": "npm",
"componentType": "webpart"
}
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "onprem19",
"version": "1.11.0",
"libraryName": "word-game",
"libraryId": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"packageManager": "npm",
"componentType": "webpart",
"isDomainIsolated": false
}
}

View File

@ -8,7 +8,7 @@ A fun game where you unscramble the words before the time runs out. It stores ev
## Used SharePoint Framework Version
![1.4.0](https://img.shields.io/badge/version-1.4.0-green.svg)
![1.11.0](https://img.shields.io/badge/version-1.11.0-green.svg)
## Applies to
@ -31,6 +31,7 @@ react-word-game | Neil Barkhina ([www.neilb.net](https://www.neilb.net/))
Version|Date|Comments
-------|----|--------
1.0|May 27, 2020|Initial release
2.0|Nov 4, 2020|Upgrade to SPFx v1.11.0 ([@DonKirkham](https://twitter.com/DonKirkham/))
## Disclaimer

View File

@ -1,13 +1,21 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "word-game-client-side-solution",
"id": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"version": "1.0.0.3",
"includeClientSideAssets": true,
"skipFeatureDeployment": true
},
"paths": {
"zippedPackage": "solution/word-game.sppkg"
}
}
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
"solution": {
"name": "word-game-client-side-solution",
"id": "751649b4-2c99-4349-9d65-9a6cc7533dfa",
"version": "1.0.0.3",
"includeClientSideAssets": true,
"skipFeatureDeployment": true,
"isDomainIsolated": false,
"developer": {
"name": "Contoso",
"privacyUrl": "https://contoso.com/privacy",
"termsOfUseUrl": "https://contoso.com/terms-of-use",
"websiteUrl": "https://contoso.com/my-app",
"mpnId": "000000"
}
},
"paths": {
"zippedPackage": "solution/word-game.sppkg"
}
}

17020
samples/react-word-game/package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1,38 +1,45 @@
{
"name": "react-word-game",
"version": "1.0.0",
"private": true,
"main": "lib/index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test"
},
"dependencies": {
"react": "15.6.2",
"react-dom": "15.6.2",
"@types/react": "15.6.6",
"@types/react-dom": "15.5.6",
"@microsoft/sp-core-library": "~1.4.0",
"@microsoft/sp-webpart-base": "~1.4.0",
"@microsoft/sp-lodash-subset": "~1.4.0",
"@microsoft/sp-office-ui-fabric-core": "~1.4.0",
"@types/webpack-env": "1.13.1",
"@types/es6-promise": "0.0.33"
},
"resolutions": {
"@types/react": "15.6.6"
},
"devDependencies": {
"@microsoft/sp-build-web": "~1.4.1",
"@microsoft/sp-module-interfaces": "~1.4.1",
"@microsoft/sp-webpart-workbench": "~1.4.1",
"gulp": "~3.9.1",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.38",
"ajv": "~5.2.2"
}
"name": "react-word-game",
"version": "1.0.0",
"private": true,
"description": "A fun game where you unscramble the words before the time runs out. It stores everyone's high scores in a SharePoint List on the Site.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"engines": {
"node": ">=0.10.0"
},
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"build": "gulp bundle",
"clean": "gulp clean",
"test": "gulp test"
},
"dependencies": {
"@microsoft/sp-core-library": "1.11.0",
"@microsoft/sp-lodash-subset": "1.11.0",
"@microsoft/sp-office-ui-fabric-core": "1.11.0",
"@microsoft/sp-property-pane": "1.11.0",
"@microsoft/sp-webpart-base": "1.11.0",
"office-ui-fabric-react": "6.214.0",
"react": "16.8.5",
"react-dom": "16.8.5"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
"@microsoft/sp-build-web": "1.11.0",
"@microsoft/sp-module-interfaces": "1.11.0",
"@microsoft/sp-tslint-rules": "1.11.0",
"@microsoft/sp-webpart-workbench": "1.11.0",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.38",
"ajv": "~5.2.2",
"gulp": "~3.9.1"
},
"resolutions": {
"@types/react": "16.8.8"
}
}

View File

@ -1,26 +1,34 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "e33f043c-3d0d-4873-a5aa-3dd37f70d3bd",
"alias": "WordGameWebPart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"preconfiguredEntries": [{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": { "default": "Other" },
"title": { "default": "WordGame" },
"description": { "default": "A fun game where you unscramble the words before the time runs out" },
"officeFabricIconFontName": "TextField",
"properties": {
"description": "WordGame"
}
}]
}
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
"id": "e33f043c-3d0d-4873-a5aa-3dd37f70d3bd",
"alias": "WordGameWebPart",
"componentType": "WebPart",
// The "*" signifies that the version should be taken from the package.json
"version": "*",
"manifestVersion": 2,
"supportedHosts": [
"SharePointWebPart"
],
// If true, the component can only be installed on sites where Custom Script is allowed.
// Components that allow authors to embed arbitrary script code should set this to true.
// https://support.office.com/en-us/article/Turn-scripting-capabilities-on-or-off-1f2c515f-5d7e-448a-9fd7-835da935584f
"requiresCustomScript": false,
"preconfiguredEntries": [
{
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
"group": {
"default": "Other"
},
"title": {
"default": "WordGame"
},
"description": {
"default": "A fun game where you unscramble the words before the time runs out"
},
"officeFabricIconFontName": "TextField",
"properties": {
"description": "WordGame"
}
}
]
}

View File

@ -2,78 +2,79 @@ import * as React from 'react';
import * as ReactDom from 'react-dom';
import { Version } from '@microsoft/sp-core-library';
import {
BaseClientSideWebPart,
IPropertyPaneConfiguration,
PropertyPaneTextField,
PropertyPaneCheckbox
BaseClientSideWebPart
} from '@microsoft/sp-webpart-base';
import {
IPropertyPaneConfiguration,
PropertyPaneTextField,
PropertyPaneCheckbox
} from "@microsoft/sp-property-pane";
import WordGame from './components/WordGame';
import { IWordGameProps } from './components/IWordGameProps';
export interface IWordGameWebPartProps {
gameTitle: string;
enableHighScores: boolean;
gameTitle: string;
enableHighScores: boolean;
}
export default class WordGameWebPart extends BaseClientSideWebPart<IWordGameWebPartProps> {
public render(): void {
if (!this.properties.gameTitle) {
this.properties.gameTitle = 'Word Game';
}
public render(): void {
if (!this.properties.gameTitle) {
this.properties.gameTitle = 'Word Game';
}
if (this.properties.enableHighScores === undefined) {
this.properties.enableHighScores = true;
}
if (this.properties.enableHighScores === undefined) {
this.properties.enableHighScores = true;
}
const element: React.ReactElement<IWordGameProps> = React.createElement(
WordGame,
{
description: this.properties.gameTitle,
enableHighScores: this.properties.enableHighScores,
context: this.context
}
);
const element: React.ReactElement<IWordGameProps> = React.createElement(
WordGame,
{
description: this.properties.gameTitle,
enableHighScores: this.properties.enableHighScores,
context: this.context
}
);
ReactDom.render(element, this.domElement);
}
ReactDom.render(element, this.domElement);
}
protected onDispose(): void {
ReactDom.unmountComponentAtNode(this.domElement);
}
protected onDispose(): void {
ReactDom.unmountComponentAtNode(this.domElement);
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
protected get dataVersion(): Version {
return Version.parse('1.0');
}
// only refresh render after applying settings pane
protected get disableReactivePropertyChanges(): boolean {
return true;
}
// only refresh render after applying settings pane
protected get disableReactivePropertyChanges(): boolean {
return true;
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: 'Configure Word Game Settings'
},
groups: [
{
groupName: 'Main',
groupFields: [
PropertyPaneCheckbox('enableHighScores', {
text: 'Enable High Scores'
}),
PropertyPaneTextField('gameTitle', {
label: 'Game Title'
})
]
}
]
}
]
};
}
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration {
return {
pages: [
{
header: {
description: 'Configure Word Game Settings'
},
groups: [
{
groupName: 'Main',
groupFields: [
PropertyPaneCheckbox('enableHighScores', {
text: 'Enable High Scores'
}),
PropertyPaneTextField('gameTitle', {
label: 'Game Title'
})
]
}
]
}
]
};
}
}

View File

@ -1,10 +1,10 @@
@import '~@microsoft/sp-office-ui-fabric-core/dist/sass/SPFabricCore.scss';
@import "~office-ui-fabric-react/dist/sass/References.scss";
// WORDGAME STYLES
:global .wordGameCustom{
input[type=text], select {
:global .wordGameCustom {
input[type="text"],
select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
@ -13,11 +13,11 @@
border-radius: 4px;
box-sizing: border-box;
}
button,
input[type=submit] {
input[type="submit"] {
width: 100%;
background-color: #4CAF50;
background-color: #4caf50;
color: white;
padding: 14px 20px;
margin: 8px 0;
@ -25,38 +25,38 @@
border-radius: 4px;
cursor: pointer;
}
input[type=submit]:hover {
input[type="submit"]:hover {
background-color: #45a049;
}
div {
border-radius: 5px;
background-color: white;
padding: 20px;
}
.greyButton{
.greyButton {
background-color: grey;
}
.blueButton{
.blueButton {
width: unset;
background-color: #007bff;
}
.currentWord{
.currentWord {
color: #007bff;
font-size: 3rem;
}
.timer{
.timer {
font-size: 16pt;
color: gray;
font-weight: 600;
}
.gameReview{
.gameReview {
text-align: left;
width: 250px;
margin-left: auto;
@ -66,53 +66,48 @@
border-color: #c3e6cb;
font-size: 16px;
}
ul{
ul {
margin-top: 5px;
}
.toast{
.toast {
position: absolute;
top: 5px;
right: 5px;
}
.toastMiniGreen{
.toastMiniGreen {
color: rgb(103, 181, 89);
}
.toastMiniRed{
.toastMiniRed {
color: red;
}
.toastGreen{
.toastGreen {
color: #155724;
background-color: #d4edda;
border-color: #c3e6cb;
padding: 11px;
}
.toastRed{
.toastRed {
color: #721c24;
background-color: #f8d7da;
border-color: #f5c6cb;
padding: 11px;
}
.numAnswersTip{
.numAnswersTip {
padding-top: 3px;
padding-bottom: 3px;
color: gray;
}
}
// OFFICE STYLES
.wordGame {
.container {
max-width: 700px;
margin: 0px auto;
@ -163,7 +158,8 @@
// Basic Button
outline: transparent;
position: relative;
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
font-family: "Segoe UI WestEuropean", "Segoe UI", -apple-system,
BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
font-size: $ms-font-size-m;
font-weight: $ms-font-weight-regular;
@ -183,4 +179,4 @@
display: inline-block;
}
}
}
}

View File

@ -36,8 +36,8 @@ export default class WordGame extends React.Component<IWordGameProps, IWordGameS
private timerInterval: number = -1;
private numTimer: number;
constructor() {
super();
constructor(props: IWordGameProps) {
super(props);
console.log('wordgame constructor finished');

View File

@ -7,8 +7,8 @@ export interface IWordHighScoresProps {
export default class WordHighScores extends React.Component<IWordHighScoresProps, {}> {
constructor() {
super();
constructor(props: IWordHighScoresProps) {
super(props);
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B

View File

@ -1,26 +1,39 @@
{
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
}
}
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
"compilerOptions": {
"target": "es5",
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"moduleResolution": "node",
"jsx": "react",
"declaration": true,
"sourceMap": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"outDir": "lib",
"inlineSources": false,
"strictNullChecks": false,
"noUnusedLocals": false,
"typeRoots": [
"./node_modules/@types",
"./node_modules/@microsoft"
],
"types": [
"es6-promise",
"webpack-env"
],
"lib": [
"es5",
"dom",
"es2015.collection"
]
},
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"node_modules",
"lib"
]
}