Merge pull request #1360 from andrewconnell/refresh-jquery-fullcalendar-tutorial
Refresh tutorial for jQuery FullCalendar
This commit is contained in:
commit
f2902210d4
|
@ -1,8 +1,12 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"version": "1.1.0",
|
||||
"libraryName": "spfx-js-fullcalendar",
|
||||
"libraryId": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"environment": "spo"
|
||||
"isCreatingSolution": true,
|
||||
"environment": "spo",
|
||||
"version": "1.10.0",
|
||||
"libraryName": "fullcalendar-taskscalendar",
|
||||
"libraryId": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"packageManager": "npm",
|
||||
"isDomainIsolated": false,
|
||||
"componentType": "webpart"
|
||||
}
|
||||
}
|
|
@ -1,18 +1,26 @@
|
|||
# Tutorial: Migrate jQuery and FullCalendar solution built using Script Editor Web Part to SharePoint Framework
|
||||
## fullcalendar-taskscalendar
|
||||
|
||||
Sample jQuery FullCalendar solution migrated from a Script Editor Web Part to the SharePoint Framework.
|
||||
This is where you include your WebPart documentation.
|
||||
|
||||
![jQuery FullCalendar solution built using Script Editor Web Part](https://devofficecdn.azureedge.net/sharepointdocumentation/images/fullcalendar-sewp.png)
|
||||
### Building the code
|
||||
|
||||
More information about the solution is available at [https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx](https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx).
|
||||
```bash
|
||||
git clone the repo
|
||||
npm i
|
||||
npm i -g gulp
|
||||
gulp
|
||||
```
|
||||
|
||||
## Minimal Path to Awesome
|
||||
This package produces the following:
|
||||
|
||||
- In the command line run:
|
||||
- `npm i`
|
||||
- `gulp serve --nobrowser`
|
||||
- In the web browser navigate to the hosted version of the SharePoint workbench located in the same site as where the Tasks list is, eg. *https://contoso.sharepoint.com/sites/team/_layouts/15/workbench.aspx*.
|
||||
* lib/* - intermediate-stage commonjs build artifacts
|
||||
* dist/* - the bundled script, along with other resources
|
||||
* deploy/* - all resources which should be uploaded to a CDN.
|
||||
|
||||
[More information](../README.md)
|
||||
### Build options
|
||||
|
||||
<img src="https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/tutorial-migrate-fullcalendar/01" />
|
||||
gulp clean - TODO
|
||||
gulp test - TODO
|
||||
gulp serve - TODO
|
||||
gulp bundle - TODO
|
||||
gulp package-solution - TODO
|
||||
|
|
|
@ -1,17 +1,31 @@
|
|||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json",
|
||||
"outputPath": "./dist/tasks-calendar.bundle.js"
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
|
||||
"version": "2.0",
|
||||
"bundles": {
|
||||
"tasks-calendar-web-part": {
|
||||
"components": [
|
||||
{
|
||||
"entrypoint": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
},
|
||||
"externals": {
|
||||
"jquery": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js",
|
||||
"fullcalendar": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js"
|
||||
"jquery": {
|
||||
"path": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"globalName": "jQuery"
|
||||
},
|
||||
"fullcalendar": {
|
||||
"path": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js",
|
||||
"globalName": "jQuery",
|
||||
"globalDependencies": [
|
||||
"jquery"
|
||||
]
|
||||
},
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"
|
||||
},
|
||||
"localizedResources": {
|
||||
"tasksCalendarStrings": "webparts/tasksCalendar/loc/{locale}.js"
|
||||
"TasksCalendarWebPartStrings": "lib/webparts/tasksCalendar/loc/{locale}.js"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
|
||||
"deployCdnPath": "temp/deploy"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
|
||||
"workingDir": "./temp/deploy/",
|
||||
"account": "<!-- STORAGE ACCOUNT NAME -->",
|
||||
"container": "spfx-js-fullcalendar",
|
||||
"container": "fullcalendar-taskscalendar",
|
||||
"accessKey": "<!-- ACCESS KEY -->"
|
||||
}
|
|
@ -1,10 +1,13 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
|
||||
"solution": {
|
||||
"name": "spfx-js-fullcalendar-client-side-solution",
|
||||
"id": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"version": "1.0.0.0"
|
||||
"name": "fullcalendar-taskscalendar-client-side-solution",
|
||||
"id": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"version": "1.0.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/spfx-js-fullcalendar.sppkg"
|
||||
"zippedPackage": "solution/fullcalendar-taskscalendar.sppkg"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
|
||||
"port": 4321,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"https": true,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"api": {
|
||||
"port": 5432,
|
||||
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
// Display errors as warnings
|
||||
"displayAsWarning": true,
|
||||
// The TSLint task may have been configured with several custom lint rules
|
||||
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
||||
// project). If true, this flag will deactivate any of these rules.
|
||||
"removeExistingRules": true,
|
||||
// When true, the TSLint task is configured with some default TSLint "rules.":
|
||||
"useDefaultConfigAsBase": false,
|
||||
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
||||
// which are active, other than the list of rules below.
|
||||
"lintConfig": {
|
||||
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-case": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-imports": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"valid-typeof": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
|
||||
"cdnBasePath": "<!-- PATH TO CDN -->"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
const gulp = require('gulp');
|
||||
const build = require('@microsoft/sp-build-web');
|
||||
|
||||
build.initialize(gulp);
|
||||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
|
||||
|
||||
build.initialize(require('gulp'));
|
||||
|
|
File diff suppressed because it is too large
Load Diff
16690
tutorials/tutorial-migrate-fullcalendar/01-migrated-sewp-to-spfx/package-lock.json
generated
Normal file
16690
tutorials/tutorial-migrate-fullcalendar/01-migrated-sewp-to-spfx/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -1,30 +1,34 @@
|
|||
{
|
||||
"name": "spfx-js-fullcalendar",
|
||||
"name": "fullcalendar-taskscalendar",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"author": {
|
||||
"name": "Waldek Mastykarz",
|
||||
"url": "https://blog.mastykarz.nl"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "~1.1.0",
|
||||
"@microsoft/sp-webpart-base": "~1.1.0",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.1.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.1.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.1.0",
|
||||
"gulp": "~3.9.1",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
"clean": "gulp clean",
|
||||
"test": "gulp test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "1.10.0",
|
||||
"@microsoft/sp-property-pane": "1.10.0",
|
||||
"@microsoft/sp-webpart-base": "1.10.0",
|
||||
"@microsoft/sp-lodash-subset": "1.10.0",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.10.0",
|
||||
"@types/webpack-env": "1.13.1",
|
||||
"@types/es6-promise": "0.0.33"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "1.10.0",
|
||||
"@microsoft/sp-tslint-rules": "1.10.0",
|
||||
"@microsoft/sp-module-interfaces": "1.10.0",
|
||||
"@microsoft/sp-webpart-workbench": "1.10.0",
|
||||
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
||||
"gulp": "~3.9.1",
|
||||
"@types/chai": "3.4.34",
|
||||
"@types/mocha": "2.2.38",
|
||||
"ajv": "~5.2.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
// A file is required to be in the root of the /src directory by the TypeScript compiler
|
|
@ -1,3 +0,0 @@
|
|||
export interface ITasksCalendarWebPartProps {
|
||||
description: string;
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
max-width: 715px;
|
||||
margin: 5px auto 5px auto;
|
||||
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: #0078d7;
|
||||
border-color: #0078d7;
|
||||
color: #ffffff;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,24 +1,25 @@
|
|||
{
|
||||
"$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json",
|
||||
|
||||
"id": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
|
||||
"id": "4a528e4f-f528-409a-9cd1-da74f488ad63",
|
||||
"alias": "TasksCalendarWebPart",
|
||||
"componentType": "WebPart",
|
||||
"version": "*", // The "*" signifies that the version should be taken from the package.json
|
||||
|
||||
// The "*" signifies that the version should be taken from the package.json
|
||||
"version": "*",
|
||||
"manifestVersion": 2,
|
||||
|
||||
/**
|
||||
* This property should only be set to true if it is certain that the webpart does not
|
||||
* allow arbitrary scripts to be called
|
||||
*/
|
||||
"safeWithCustomScriptDisabled": false,
|
||||
// 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,
|
||||
"supportedHosts": ["SharePointWebPart"],
|
||||
|
||||
"preconfiguredEntries": [{
|
||||
"groupId": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"group": { "default": "Under Development" },
|
||||
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
|
||||
"group": { "default": "Other" },
|
||||
"title": { "default": "Tasks calendar" },
|
||||
"description": { "default": "Shows tasks in calendar view" },
|
||||
"officeFabricIconFontName": "Calendar",
|
||||
"description": { "default": "Shows tasks in the calendar view" },
|
||||
"officeFabricIconFontName": "Page",
|
||||
"properties": {
|
||||
"description": "Tasks calendar"
|
||||
}
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
@import '~@microsoft/sp-office-ui-fabric-core/dist/sass/SPFabricCore.scss';
|
||||
|
||||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
@include ms-Grid-row;
|
||||
@include ms-fontColor-white;
|
||||
background-color: $ms-color-themeDark;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.column {
|
||||
@include ms-Grid-col;
|
||||
@include ms-lg10;
|
||||
@include ms-xl8;
|
||||
@include ms-xlPush2;
|
||||
@include ms-lgPush1;
|
||||
}
|
||||
|
||||
.title {
|
||||
@include ms-font-xl;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.subTitle {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.description {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: $ms-color-themePrimary;
|
||||
border-color: $ms-color-themePrimary;
|
||||
color: $ms-color-white;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
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;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: $ms-font-weight-semibold;
|
||||
font-size: $ms-font-size-m;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,14 +1,17 @@
|
|||
import { Version } from '@microsoft/sp-core-library';
|
||||
import {
|
||||
BaseClientSideWebPart,
|
||||
IPropertyPaneConfiguration,
|
||||
PropertyPaneTextField
|
||||
} from '@microsoft/sp-webpart-base';
|
||||
} from '@microsoft/sp-property-pane';
|
||||
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
|
||||
import { escape } from '@microsoft/sp-lodash-subset';
|
||||
|
||||
import styles from './TasksCalendar.module.scss';
|
||||
import * as strings from 'tasksCalendarStrings';
|
||||
import { ITasksCalendarWebPartProps } from './ITasksCalendarWebPartProps';
|
||||
import styles from './TasksCalendarWebPart.module.scss';
|
||||
import * as strings from 'TasksCalendarWebPartStrings';
|
||||
|
||||
export interface ITasksCalendarWebPartProps {
|
||||
description: string;
|
||||
}
|
||||
|
||||
import 'jquery';
|
||||
import 'moment';
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
declare interface ITasksCalendarStrings {
|
||||
declare interface ITasksCalendarWebPartStrings {
|
||||
PropertyPaneDescription: string;
|
||||
BasicGroupName: string;
|
||||
DescriptionFieldLabel: string;
|
||||
}
|
||||
|
||||
declare module 'tasksCalendarStrings' {
|
||||
const strings: ITasksCalendarStrings;
|
||||
declare module 'TasksCalendarWebPartStrings' {
|
||||
const strings: ITasksCalendarWebPartStrings;
|
||||
export = strings;
|
||||
}
|
||||
|
|
|
@ -33,8 +33,8 @@ function displayTasks() {
|
|||
var endDate = end.format('YYYY-MM-DD');
|
||||
|
||||
var restQuery = "/_api/Web/Lists/GetByTitle('" + TASK_LIST + "')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
|
||||
$.ajax({
|
||||
url: window.webAbsoluteUrl + restQuery,
|
||||
|
@ -65,7 +65,7 @@ $filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(Sta
|
|||
return {
|
||||
title: task.Title + " - " + assignedTo,
|
||||
id: task.ID,
|
||||
color: color, // specify the background color and border color can also create a class and use className paramter.
|
||||
color: color, // specify the background color and border color can also create a class and use className parameter.
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
end: moment.utc(task.DueDate).add("1", "days") // add one day to end date so that calendar properly shows event ending on that day
|
||||
};
|
||||
|
@ -97,7 +97,7 @@ function updateTask(id, startDate, dueDate) {
|
|||
.then(function (data, textStatus, jqXHR) {
|
||||
return $.ajax({
|
||||
url: window.webAbsoluteUrl +
|
||||
"/_api/Web/Lists/getByTitle('" + TASK_LIST + "')/Items(" + id + ")",
|
||||
"/_api/Web/Lists/getByTitle('" + TASK_LIST + "')/Items(" + id + ")",
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
|
|
|
@ -1,9 +0,0 @@
|
|||
/// <reference types="mocha" />
|
||||
|
||||
import { assert } from 'chai';
|
||||
|
||||
describe('TasksCalendarWebPart', () => {
|
||||
it('should do something', () => {
|
||||
assert.ok(true);
|
||||
});
|
||||
});
|
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -1,16 +1,38 @@
|
|||
{
|
||||
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "commonjs",
|
||||
"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",
|
||||
"es6-collections",
|
||||
"webpack-env"
|
||||
],
|
||||
"lib": [
|
||||
"es5",
|
||||
"dom",
|
||||
"es2015.collection"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"lib"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,3 +1,30 @@
|
|||
{
|
||||
"rulesDirectory": "./config"
|
||||
"extends": "@microsoft/sp-tslint-rules/base-tslint.json",
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
// Type definitions for Microsoft ODSP projects
|
||||
// Project: ODSP
|
||||
|
||||
/* Global definition for UNIT_TEST builds
|
||||
Code that is wrapped inside an if(UNIT_TEST) {...}
|
||||
block will not be included in the final bundle when the
|
||||
--ship flag is specified */
|
||||
declare const UNIT_TEST: boolean;
|
||||
|
||||
/* Global defintion for SPO builds */
|
||||
declare const DATACENTER: boolean;
|
|
@ -1 +0,0 @@
|
|||
/// <reference path="@ms/odsp.d.ts" />
|
|
@ -1,8 +1,12 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"version": "1.1.0",
|
||||
"libraryName": "spfx-js-fullcalendar",
|
||||
"libraryId": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"environment": "spo"
|
||||
"isCreatingSolution": true,
|
||||
"environment": "spo",
|
||||
"version": "1.10.0",
|
||||
"libraryName": "fullcalendar-taskscalendar",
|
||||
"libraryId": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"packageManager": "npm",
|
||||
"isDomainIsolated": false,
|
||||
"componentType": "webpart"
|
||||
}
|
||||
}
|
|
@ -1,18 +1,26 @@
|
|||
# Tutorial: Migrate jQuery and FullCalendar solution built using Script Editor Web Part to SharePoint Framework
|
||||
## fullcalendar-taskscalendar
|
||||
|
||||
Sample jQuery FullCalendar solution migrated from a Script Editor Web Part to the SharePoint Framework.
|
||||
This is where you include your WebPart documentation.
|
||||
|
||||
![jQuery FullCalendar solution built using Script Editor Web Part](https://devofficecdn.azureedge.net/sharepointdocumentation/images/fullcalendar-sewp.png)
|
||||
### Building the code
|
||||
|
||||
More information about the solution is available at [https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx](https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx).
|
||||
```bash
|
||||
git clone the repo
|
||||
npm i
|
||||
npm i -g gulp
|
||||
gulp
|
||||
```
|
||||
|
||||
## Minimal Path to Awesome
|
||||
This package produces the following:
|
||||
|
||||
- In the command line run:
|
||||
- `npm i`
|
||||
- `gulp serve --nobrowser`
|
||||
- In the web browser navigate to the hosted version of the SharePoint workbench located in the same site as where the Tasks list is, eg. *https://contoso.sharepoint.com/sites/team/_layouts/15/workbench.aspx*.
|
||||
* lib/* - intermediate-stage commonjs build artifacts
|
||||
* dist/* - the bundled script, along with other resources
|
||||
* deploy/* - all resources which should be uploaded to a CDN.
|
||||
|
||||
[More information](../README.md)
|
||||
### Build options
|
||||
|
||||
<img src="https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/tutorial-migrate-fullcalendar/02" />
|
||||
gulp clean - TODO
|
||||
gulp test - TODO
|
||||
gulp serve - TODO
|
||||
gulp bundle - TODO
|
||||
gulp package-solution - TODO
|
||||
|
|
|
@ -1,17 +1,31 @@
|
|||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json",
|
||||
"outputPath": "./dist/tasks-calendar.bundle.js"
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
|
||||
"version": "2.0",
|
||||
"bundles": {
|
||||
"tasks-calendar-web-part": {
|
||||
"components": [
|
||||
{
|
||||
"entrypoint": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
},
|
||||
"externals": {
|
||||
"jquery": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js",
|
||||
"fullcalendar": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js"
|
||||
"jquery": {
|
||||
"path": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"globalName": "jQuery"
|
||||
},
|
||||
"fullcalendar": {
|
||||
"path": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js",
|
||||
"globalName": "jQuery",
|
||||
"globalDependencies": [
|
||||
"jquery"
|
||||
]
|
||||
},
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"
|
||||
},
|
||||
"localizedResources": {
|
||||
"tasksCalendarStrings": "webparts/tasksCalendar/loc/{locale}.js"
|
||||
"TasksCalendarWebPartStrings": "lib/webparts/tasksCalendar/loc/{locale}.js"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
|
||||
"deployCdnPath": "temp/deploy"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
|
||||
"workingDir": "./temp/deploy/",
|
||||
"account": "<!-- STORAGE ACCOUNT NAME -->",
|
||||
"container": "spfx-js-fullcalendar",
|
||||
"container": "fullcalendar-taskscalendar",
|
||||
"accessKey": "<!-- ACCESS KEY -->"
|
||||
}
|
|
@ -1,10 +1,13 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
|
||||
"solution": {
|
||||
"name": "spfx-js-fullcalendar-client-side-solution",
|
||||
"id": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"version": "1.0.0.0"
|
||||
"name": "fullcalendar-taskscalendar-client-side-solution",
|
||||
"id": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"version": "1.0.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/spfx-js-fullcalendar.sppkg"
|
||||
"zippedPackage": "solution/fullcalendar-taskscalendar.sppkg"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
|
||||
"port": 4321,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"https": true,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"api": {
|
||||
"port": 5432,
|
||||
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
// Display errors as warnings
|
||||
"displayAsWarning": true,
|
||||
// The TSLint task may have been configured with several custom lint rules
|
||||
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
||||
// project). If true, this flag will deactivate any of these rules.
|
||||
"removeExistingRules": true,
|
||||
// When true, the TSLint task is configured with some default TSLint "rules.":
|
||||
"useDefaultConfigAsBase": false,
|
||||
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
||||
// which are active, other than the list of rules below.
|
||||
"lintConfig": {
|
||||
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-case": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-imports": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"valid-typeof": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
|
||||
"cdnBasePath": "<!-- PATH TO CDN -->"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
const gulp = require('gulp');
|
||||
const build = require('@microsoft/sp-build-web');
|
||||
|
||||
build.initialize(gulp);
|
||||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
|
||||
|
||||
build.initialize(require('gulp'));
|
||||
|
|
File diff suppressed because it is too large
Load Diff
16690
tutorials/tutorial-migrate-fullcalendar/02-added-configuration/package-lock.json
generated
Normal file
16690
tutorials/tutorial-migrate-fullcalendar/02-added-configuration/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -1,30 +1,34 @@
|
|||
{
|
||||
"name": "spfx-js-fullcalendar",
|
||||
"name": "fullcalendar-taskscalendar",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"author": {
|
||||
"name": "Waldek Mastykarz",
|
||||
"url": "https://blog.mastykarz.nl"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "~1.1.0",
|
||||
"@microsoft/sp-webpart-base": "~1.1.0",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.1.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.1.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.1.0",
|
||||
"gulp": "~3.9.1",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
"clean": "gulp clean",
|
||||
"test": "gulp test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "1.10.0",
|
||||
"@microsoft/sp-property-pane": "1.10.0",
|
||||
"@microsoft/sp-webpart-base": "1.10.0",
|
||||
"@microsoft/sp-lodash-subset": "1.10.0",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.10.0",
|
||||
"@types/webpack-env": "1.13.1",
|
||||
"@types/es6-promise": "0.0.33"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "1.10.0",
|
||||
"@microsoft/sp-tslint-rules": "1.10.0",
|
||||
"@microsoft/sp-module-interfaces": "1.10.0",
|
||||
"@microsoft/sp-webpart-workbench": "1.10.0",
|
||||
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
||||
"gulp": "~3.9.1",
|
||||
"@types/chai": "3.4.34",
|
||||
"@types/mocha": "2.2.38",
|
||||
"ajv": "~5.2.2"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
// A file is required to be in the root of the /src directory by the TypeScript compiler
|
|
@ -1,3 +0,0 @@
|
|||
export interface ITasksCalendarWebPartProps {
|
||||
listName: string;
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
max-width: 715px;
|
||||
margin: 5px auto 5px auto;
|
||||
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: #0078d7;
|
||||
border-color: #0078d7;
|
||||
color: #ffffff;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,26 +1,27 @@
|
|||
{
|
||||
"$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json",
|
||||
|
||||
"id": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
|
||||
"id": "4a528e4f-f528-409a-9cd1-da74f488ad63",
|
||||
"alias": "TasksCalendarWebPart",
|
||||
"componentType": "WebPart",
|
||||
"version": "*", // The "*" signifies that the version should be taken from the package.json
|
||||
|
||||
// The "*" signifies that the version should be taken from the package.json
|
||||
"version": "*",
|
||||
"manifestVersion": 2,
|
||||
|
||||
/**
|
||||
* This property should only be set to true if it is certain that the webpart does not
|
||||
* allow arbitrary scripts to be called
|
||||
*/
|
||||
"safeWithCustomScriptDisabled": false,
|
||||
// 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,
|
||||
"supportedHosts": ["SharePointWebPart"],
|
||||
|
||||
"preconfiguredEntries": [{
|
||||
"groupId": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"group": { "default": "Under Development" },
|
||||
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
|
||||
"group": { "default": "Other" },
|
||||
"title": { "default": "Tasks calendar" },
|
||||
"description": { "default": "Shows tasks in calendar view" },
|
||||
"officeFabricIconFontName": "Calendar",
|
||||
"description": { "default": "Shows tasks in the calendar view" },
|
||||
"officeFabricIconFontName": "Page",
|
||||
"properties": {
|
||||
"listName": ""
|
||||
"description": "Tasks calendar"
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
@import '~@microsoft/sp-office-ui-fabric-core/dist/sass/SPFabricCore.scss';
|
||||
|
||||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
@include ms-Grid-row;
|
||||
@include ms-fontColor-white;
|
||||
background-color: $ms-color-themeDark;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.column {
|
||||
@include ms-Grid-col;
|
||||
@include ms-lg10;
|
||||
@include ms-xl8;
|
||||
@include ms-xlPush2;
|
||||
@include ms-lgPush1;
|
||||
}
|
||||
|
||||
.title {
|
||||
@include ms-font-xl;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.subTitle {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.description {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: $ms-color-themePrimary;
|
||||
border-color: $ms-color-themePrimary;
|
||||
color: $ms-color-white;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
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;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: $ms-font-weight-semibold;
|
||||
font-size: $ms-font-size-m;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,23 +1,24 @@
|
|||
import { Version } from '@microsoft/sp-core-library';
|
||||
import {
|
||||
BaseClientSideWebPart,
|
||||
IPropertyPaneConfiguration,
|
||||
PropertyPaneTextField
|
||||
} from '@microsoft/sp-webpart-base';
|
||||
} from '@microsoft/sp-property-pane';
|
||||
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
|
||||
import { escape } from '@microsoft/sp-lodash-subset';
|
||||
|
||||
import styles from './TasksCalendar.module.scss';
|
||||
import * as strings from 'tasksCalendarStrings';
|
||||
import { ITasksCalendarWebPartProps } from './ITasksCalendarWebPartProps';
|
||||
|
||||
var $: any = require('jquery');
|
||||
var moment: any = require('moment');
|
||||
import styles from './TasksCalendarWebPart.module.scss';
|
||||
import * as strings from 'TasksCalendarWebPartStrings';
|
||||
|
||||
import 'jquery';
|
||||
import 'moment';
|
||||
import 'fullcalendar';
|
||||
|
||||
var COLORS = ['#466365', '#B49A67', '#93B7BE', '#E07A5F', '#849483', '#084C61', '#DB3A34'];
|
||||
export interface ITasksCalendarWebPartProps {
|
||||
listName: string;
|
||||
}
|
||||
|
||||
export default class TasksCalendarWebPart extends BaseClientSideWebPart<ITasksCalendarWebPartProps> {
|
||||
|
||||
public render(): void {
|
||||
this.domElement.innerHTML = `
|
||||
<div class="${styles.tasksCalendar}">
|
||||
|
@ -25,125 +26,8 @@ export default class TasksCalendarWebPart extends BaseClientSideWebPart<ITasksCa
|
|||
<div id="calendar"></div>
|
||||
</div>`;
|
||||
|
||||
this.displayTasks();
|
||||
}
|
||||
|
||||
private displayTasks() {
|
||||
$('#calendar').fullCalendar('destroy');
|
||||
$('#calendar').fullCalendar({
|
||||
weekends: false,
|
||||
header: {
|
||||
left: 'prev,next today',
|
||||
center: 'title',
|
||||
right: 'month,basicWeek,basicDay'
|
||||
},
|
||||
displayEventTime: false,
|
||||
// open up the display form when a user clicks on an event
|
||||
eventClick: (calEvent, jsEvent, view) => {
|
||||
(window as any).location = this.context.pageContext.web.absoluteUrl +
|
||||
"/Lists/" + escape(this.properties.listName) + "/DispForm.aspx?ID=" + calEvent.id;
|
||||
},
|
||||
editable: true,
|
||||
timezone: "UTC",
|
||||
droppable: true, // this allows things to be dropped onto the calendar
|
||||
// update the end date when a user drags and drops an event
|
||||
eventDrop: (event, delta, revertFunc) => {
|
||||
this.updateTask(event.id, event.start, event.end);
|
||||
},
|
||||
// put the events on the calendar
|
||||
events: (start, end, timezone, callback) => {
|
||||
var startDate = start.format('YYYY-MM-DD');
|
||||
var endDate = end.format('YYYY-MM-DD');
|
||||
|
||||
var restQuery = "/_api/Web/Lists/GetByTitle('" + escape(this.properties.listName) + "')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + restQuery,
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata"
|
||||
}
|
||||
})
|
||||
.done((data, textStatus, jqXHR) => {
|
||||
var personColors = {};
|
||||
var colorNo = 0;
|
||||
|
||||
var events = data.value.map((task) => {
|
||||
var assignedTo = task.AssignedTo.map((person) => {
|
||||
return person.Title;
|
||||
}).join(', ');
|
||||
|
||||
var color = personColors[assignedTo];
|
||||
if (!color) {
|
||||
color = COLORS[colorNo++];
|
||||
personColors[assignedTo] = color;
|
||||
}
|
||||
if (colorNo >= COLORS.length) {
|
||||
colorNo = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
title: task.Title + " - " + assignedTo,
|
||||
id: task.ID,
|
||||
color: color, // specify the background color and border color can also create a class and use className paramter.
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
end: moment.utc(task.DueDate).add("1", "days") // add one day to end date so that calendar properly shows event ending on that day
|
||||
};
|
||||
});
|
||||
|
||||
callback(events);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private updateTask(id, startDate, dueDate) {
|
||||
// subtract the previously added day to the date to store correct date
|
||||
var sDate = moment.utc(startDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
startDate.format("hh:mm") + ":00Z";
|
||||
if (!dueDate) {
|
||||
dueDate = startDate;
|
||||
}
|
||||
var dDate = moment.utc(dueDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
dueDate.format("hh:mm") + ":00Z";
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + '/_api/contextinfo',
|
||||
type: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json;odata=nometadata'
|
||||
}
|
||||
})
|
||||
.then((data, textStatus, jqXHR) => {
|
||||
return $.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl +
|
||||
"/_api/Web/Lists/getByTitle('" + escape(this.properties.listName) + "')/Items(" + id + ")",
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
DueDate: dDate,
|
||||
}),
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata",
|
||||
"Content-Type": "application/json;odata=nometadata",
|
||||
"X-RequestDigest": data.FormDigestValue,
|
||||
"IF-MATCH": "*",
|
||||
"X-Http-Method": "PATCH"
|
||||
}
|
||||
});
|
||||
})
|
||||
.done((data, textStatus, jqXHR) => {
|
||||
alert("Update Successful");
|
||||
})
|
||||
.fail((jqXHR, textStatus, errorThrown) => {
|
||||
alert("Update Failed");
|
||||
})
|
||||
.always(() => {
|
||||
this.displayTasks();
|
||||
});
|
||||
(window as any).webAbsoluteUrl = this.context.pageContext.web.absoluteUrl;
|
||||
require('./script');
|
||||
}
|
||||
|
||||
protected get dataVersion(): Version {
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
define([], function() {
|
||||
return {
|
||||
"PropertyPaneDescription": "Tasks calendar settings",
|
||||
"BasicGroupName": "Data",
|
||||
"PropertyPaneDescription": "Description",
|
||||
"BasicGroupName": "Group Name",
|
||||
"ListNameFieldLabel": "List name"
|
||||
}
|
||||
});
|
|
@ -1,10 +1,10 @@
|
|||
declare interface ITasksCalendarStrings {
|
||||
declare interface ITasksCalendarWebPartStrings {
|
||||
PropertyPaneDescription: string;
|
||||
BasicGroupName: string;
|
||||
ListNameFieldLabel: string;
|
||||
}
|
||||
|
||||
declare module 'tasksCalendarStrings' {
|
||||
const strings: ITasksCalendarStrings;
|
||||
declare module 'TasksCalendarWebPartStrings' {
|
||||
const strings: ITasksCalendarWebPartStrings;
|
||||
export = strings;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,124 @@
|
|||
var moment = require('moment');
|
||||
|
||||
var PATH_TO_DISPFORM = window.webAbsoluteUrl + "/Lists/Tasks/DispForm.aspx";
|
||||
var TASK_LIST = "Tasks";
|
||||
var COLORS = ['#466365', '#B49A67', '#93B7BE', '#E07A5F', '#849483', '#084C61', '#DB3A34'];
|
||||
|
||||
displayTasks();
|
||||
|
||||
function displayTasks() {
|
||||
$('#calendar').fullCalendar('destroy');
|
||||
$('#calendar').fullCalendar({
|
||||
weekends: false,
|
||||
header: {
|
||||
left: 'prev,next today',
|
||||
center: 'title',
|
||||
right: 'month,basicWeek,basicDay'
|
||||
},
|
||||
displayEventTime: false,
|
||||
// open up the display form when a user clicks on an event
|
||||
eventClick: function (calEvent, jsEvent, view) {
|
||||
window.location = PATH_TO_DISPFORM + "?ID=" + calEvent.id;
|
||||
},
|
||||
editable: true,
|
||||
timezone: "UTC",
|
||||
droppable: true, // this allows things to be dropped onto the calendar
|
||||
// update the end date when a user drags and drops an event
|
||||
eventDrop: function (event, delta, revertFunc) {
|
||||
updateTask(event.id, event.start, event.end);
|
||||
},
|
||||
// put the events on the calendar
|
||||
events: function (start, end, timezone, callback) {
|
||||
var startDate = start.format('YYYY-MM-DD');
|
||||
var endDate = end.format('YYYY-MM-DD');
|
||||
|
||||
var restQuery = "/_api/Web/Lists/GetByTitle('" + TASK_LIST + "')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
|
||||
$.ajax({
|
||||
url: window.webAbsoluteUrl + restQuery,
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata"
|
||||
}
|
||||
})
|
||||
.done(function (data, textStatus, jqXHR) {
|
||||
var personColors = {};
|
||||
var colorNo = 0;
|
||||
|
||||
var events = data.value.map(function (task) {
|
||||
var assignedTo = task.AssignedTo.map(function (person) {
|
||||
return person.Title;
|
||||
}).join(', ');
|
||||
|
||||
var color = personColors[assignedTo];
|
||||
if (!color) {
|
||||
color = COLORS[colorNo++];
|
||||
personColors[assignedTo] = color;
|
||||
}
|
||||
if (colorNo >= COLORS.length) {
|
||||
colorNo = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
title: task.Title + " - " + assignedTo,
|
||||
id: task.ID,
|
||||
color: color, // specify the background color and border color can also create a class and use className parameter.
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
end: moment.utc(task.DueDate).add("1", "days") // add one day to end date so that calendar properly shows event ending on that day
|
||||
};
|
||||
});
|
||||
|
||||
callback(events);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function updateTask(id, startDate, dueDate) {
|
||||
// subtract the previously added day to the date to store correct date
|
||||
var sDate = moment.utc(startDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
startDate.format("hh:mm") + ":00Z";
|
||||
if (!dueDate) {
|
||||
dueDate = startDate;
|
||||
}
|
||||
var dDate = moment.utc(dueDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
dueDate.format("hh:mm") + ":00Z";
|
||||
|
||||
$.ajax({
|
||||
url: window.webAbsoluteUrl + '/_api/contextinfo',
|
||||
type: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json;odata=nometadata'
|
||||
}
|
||||
})
|
||||
.then(function (data, textStatus, jqXHR) {
|
||||
return $.ajax({
|
||||
url: window.webAbsoluteUrl +
|
||||
"/_api/Web/Lists/getByTitle('" + TASK_LIST + "')/Items(" + id + ")",
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
DueDate: dDate,
|
||||
}),
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata",
|
||||
"Content-Type": "application/json;odata=nometadata",
|
||||
"X-RequestDigest": data.FormDigestValue,
|
||||
"IF-MATCH": "*",
|
||||
"X-Http-Method": "PATCH"
|
||||
}
|
||||
});
|
||||
})
|
||||
.done(function (data, textStatus, jqXHR) {
|
||||
alert("Update Successful");
|
||||
})
|
||||
.fail(function (jqXHR, textStatus, errorThrown) {
|
||||
alert("Update Failed");
|
||||
})
|
||||
.always(function () {
|
||||
displayTasks();
|
||||
});
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
/// <reference types="mocha" />
|
||||
|
||||
import { assert } from 'chai';
|
||||
|
||||
describe('TasksCalendarWebPart', () => {
|
||||
it('should do something', () => {
|
||||
assert.ok(true);
|
||||
});
|
||||
});
|
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -1,16 +1,38 @@
|
|||
{
|
||||
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "commonjs",
|
||||
"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",
|
||||
"es6-collections",
|
||||
"webpack-env"
|
||||
],
|
||||
"lib": [
|
||||
"es5",
|
||||
"dom",
|
||||
"es2015.collection"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"lib"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,3 +1,30 @@
|
|||
{
|
||||
"rulesDirectory": "./config"
|
||||
"extends": "@microsoft/sp-tslint-rules/base-tslint.json",
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
// Type definitions for Microsoft ODSP projects
|
||||
// Project: ODSP
|
||||
|
||||
/* Global definition for UNIT_TEST builds
|
||||
Code that is wrapped inside an if(UNIT_TEST) {...}
|
||||
block will not be included in the final bundle when the
|
||||
--ship flag is specified */
|
||||
declare const UNIT_TEST: boolean;
|
||||
|
||||
/* Global defintion for SPO builds */
|
||||
declare const DATACENTER: boolean;
|
|
@ -1 +0,0 @@
|
|||
/// <reference path="@ms/odsp.d.ts" />
|
|
@ -1,8 +1,12 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"version": "1.1.0",
|
||||
"libraryName": "spfx-js-fullcalendar",
|
||||
"libraryId": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"environment": "spo"
|
||||
"isCreatingSolution": true,
|
||||
"environment": "spo",
|
||||
"version": "1.10.0",
|
||||
"libraryName": "fullcalendar-taskscalendar",
|
||||
"libraryId": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"packageManager": "npm",
|
||||
"isDomainIsolated": false,
|
||||
"componentType": "webpart"
|
||||
}
|
||||
}
|
|
@ -1,18 +1,26 @@
|
|||
# Tutorial: Migrate jQuery and FullCalendar solution built using Script Editor Web Part to SharePoint Framework
|
||||
## fullcalendar-taskscalendar
|
||||
|
||||
Sample jQuery FullCalendar solution migrated from a Script Editor Web Part to the SharePoint Framework.
|
||||
This is where you include your WebPart documentation.
|
||||
|
||||
![jQuery FullCalendar solution built using Script Editor Web Part](https://devofficecdn.azureedge.net/sharepointdocumentation/images/fullcalendar-sewp.png)
|
||||
### Building the code
|
||||
|
||||
More information about the solution is available at [https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx](https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx).
|
||||
```bash
|
||||
git clone the repo
|
||||
npm i
|
||||
npm i -g gulp
|
||||
gulp
|
||||
```
|
||||
|
||||
## Minimal Path to Awesome
|
||||
This package produces the following:
|
||||
|
||||
- In the command line run:
|
||||
- `npm i`
|
||||
- `gulp serve --nobrowser`
|
||||
- In the web browser navigate to the hosted version of the SharePoint workbench located in the same site as where the Tasks list is, eg. *https://contoso.sharepoint.com/sites/team/_layouts/15/workbench.aspx*.
|
||||
* lib/* - intermediate-stage commonjs build artifacts
|
||||
* dist/* - the bundled script, along with other resources
|
||||
* deploy/* - all resources which should be uploaded to a CDN.
|
||||
|
||||
[More information](../README.md)
|
||||
### Build options
|
||||
|
||||
<img src="https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/tutorial-migrate-fullcalendar/03" />
|
||||
gulp clean - TODO
|
||||
gulp test - TODO
|
||||
gulp serve - TODO
|
||||
gulp bundle - TODO
|
||||
gulp package-solution - TODO
|
||||
|
|
|
@ -1,17 +1,31 @@
|
|||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json",
|
||||
"outputPath": "./dist/tasks-calendar.bundle.js"
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
|
||||
"version": "2.0",
|
||||
"bundles": {
|
||||
"tasks-calendar-web-part": {
|
||||
"components": [
|
||||
{
|
||||
"entrypoint": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
},
|
||||
"externals": {
|
||||
"jquery": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js",
|
||||
"fullcalendar": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js"
|
||||
"jquery": {
|
||||
"path": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"globalName": "jQuery"
|
||||
},
|
||||
"fullcalendar": {
|
||||
"path": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js",
|
||||
"globalName": "jQuery",
|
||||
"globalDependencies": [
|
||||
"jquery"
|
||||
]
|
||||
},
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"
|
||||
},
|
||||
"localizedResources": {
|
||||
"tasksCalendarStrings": "webparts/tasksCalendar/loc/{locale}.js"
|
||||
"TasksCalendarWebPartStrings": "lib/webparts/tasksCalendar/loc/{locale}.js"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
|
||||
"deployCdnPath": "temp/deploy"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
|
||||
"workingDir": "./temp/deploy/",
|
||||
"account": "<!-- STORAGE ACCOUNT NAME -->",
|
||||
"container": "spfx-js-fullcalendar",
|
||||
"container": "fullcalendar-taskscalendar",
|
||||
"accessKey": "<!-- ACCESS KEY -->"
|
||||
}
|
|
@ -1,10 +1,13 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
|
||||
"solution": {
|
||||
"name": "spfx-js-fullcalendar-client-side-solution",
|
||||
"id": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"version": "1.0.0.0"
|
||||
"name": "fullcalendar-taskscalendar-client-side-solution",
|
||||
"id": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"version": "1.0.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/spfx-js-fullcalendar.sppkg"
|
||||
"zippedPackage": "solution/fullcalendar-taskscalendar.sppkg"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
|
||||
"port": 4321,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"https": true,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"api": {
|
||||
"port": 5432,
|
||||
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
// Display errors as warnings
|
||||
"displayAsWarning": true,
|
||||
// The TSLint task may have been configured with several custom lint rules
|
||||
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
||||
// project). If true, this flag will deactivate any of these rules.
|
||||
"removeExistingRules": true,
|
||||
// When true, the TSLint task is configured with some default TSLint "rules.":
|
||||
"useDefaultConfigAsBase": false,
|
||||
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
||||
// which are active, other than the list of rules below.
|
||||
"lintConfig": {
|
||||
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-case": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-imports": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"valid-typeof": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
|
||||
"cdnBasePath": "<!-- PATH TO CDN -->"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
const gulp = require('gulp');
|
||||
const build = require('@microsoft/sp-build-web');
|
||||
|
||||
build.initialize(gulp);
|
||||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
|
||||
|
||||
build.initialize(require('gulp'));
|
||||
|
|
File diff suppressed because it is too large
Load Diff
16701
tutorials/tutorial-migrate-fullcalendar/03-transformed-js-to-typescript/package-lock.json
generated
Normal file
16701
tutorials/tutorial-migrate-fullcalendar/03-transformed-js-to-typescript/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -1,33 +1,36 @@
|
|||
{
|
||||
"name": "spfx-js-fullcalendar",
|
||||
"name": "fullcalendar-taskscalendar",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"author": {
|
||||
"name": "Waldek Mastykarz",
|
||||
"url": "https://blog.mastykarz.nl"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "~1.1.0",
|
||||
"@microsoft/sp-webpart-base": "~1.1.0",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0",
|
||||
"moment": "^2.18.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.1.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.1.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.1.0",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/fullcalendar": "^2.7.44",
|
||||
"@types/jquery": "^1.10.32",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0",
|
||||
"gulp": "~3.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
"clean": "gulp clean",
|
||||
"test": "gulp test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "1.10.0",
|
||||
"@microsoft/sp-lodash-subset": "1.10.0",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.10.0",
|
||||
"@microsoft/sp-property-pane": "1.10.0",
|
||||
"@microsoft/sp-webpart-base": "1.10.0",
|
||||
"@types/es6-promise": "0.0.33",
|
||||
"@types/webpack-env": "1.13.1",
|
||||
"moment": "^2.27.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
||||
"@microsoft/sp-build-web": "1.10.0",
|
||||
"@microsoft/sp-module-interfaces": "1.10.0",
|
||||
"@microsoft/sp-tslint-rules": "1.10.0",
|
||||
"@microsoft/sp-webpart-workbench": "1.10.0",
|
||||
"@types/chai": "3.4.34",
|
||||
"@types/jquery": "^1.10.35",
|
||||
"@types/mocha": "2.2.38",
|
||||
"ajv": "~5.2.2",
|
||||
"gulp": "~3.9.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
// A file is required to be in the root of the /src directory by the TypeScript compiler
|
|
@ -1,3 +0,0 @@
|
|||
export interface ITasksCalendarWebPartProps {
|
||||
listName: string;
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.listItem {
|
||||
max-width: 715px;
|
||||
margin: 5px auto 5px auto;
|
||||
box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: #0078d7;
|
||||
border-color: #0078d7;
|
||||
color: #ffffff;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
font-family: "Segoe UI WestEuropean","Segoe UI",-apple-system,BlinkMacSystemFont,Roboto,"Helvetica Neue",sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: 600;
|
||||
font-size: 14px;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,26 +1,27 @@
|
|||
{
|
||||
"$schema": "../../../node_modules/@microsoft/sp-module-interfaces/lib/manifestSchemas/jsonSchemas/clientSideComponentManifestSchema.json",
|
||||
|
||||
"id": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx/client-side-web-part-manifest.schema.json",
|
||||
"id": "4a528e4f-f528-409a-9cd1-da74f488ad63",
|
||||
"alias": "TasksCalendarWebPart",
|
||||
"componentType": "WebPart",
|
||||
"version": "*", // The "*" signifies that the version should be taken from the package.json
|
||||
|
||||
// The "*" signifies that the version should be taken from the package.json
|
||||
"version": "*",
|
||||
"manifestVersion": 2,
|
||||
|
||||
/**
|
||||
* This property should only be set to true if it is certain that the webpart does not
|
||||
* allow arbitrary scripts to be called
|
||||
*/
|
||||
"safeWithCustomScriptDisabled": false,
|
||||
// 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,
|
||||
"supportedHosts": ["SharePointWebPart"],
|
||||
|
||||
"preconfiguredEntries": [{
|
||||
"groupId": "88991757-fd46-4085-bf49-4f75d345554e",
|
||||
"group": { "default": "Under Development" },
|
||||
"groupId": "5c03119e-3074-46fd-976b-c60198311f70", // Other
|
||||
"group": { "default": "Other" },
|
||||
"title": { "default": "Tasks calendar" },
|
||||
"description": { "default": "Shows tasks in calendar view" },
|
||||
"officeFabricIconFontName": "Calendar",
|
||||
"description": { "default": "Shows tasks in the calendar view" },
|
||||
"officeFabricIconFontName": "Page",
|
||||
"properties": {
|
||||
"listName": ""
|
||||
"description": "Tasks calendar"
|
||||
}
|
||||
}]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,74 @@
|
|||
@import '~@microsoft/sp-office-ui-fabric-core/dist/sass/SPFabricCore.scss';
|
||||
|
||||
.tasksCalendar {
|
||||
.container {
|
||||
max-width: 700px;
|
||||
margin: 0px auto;
|
||||
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2), 0 25px 50px 0 rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.row {
|
||||
@include ms-Grid-row;
|
||||
@include ms-fontColor-white;
|
||||
background-color: $ms-color-themeDark;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.column {
|
||||
@include ms-Grid-col;
|
||||
@include ms-lg10;
|
||||
@include ms-xl8;
|
||||
@include ms-xlPush2;
|
||||
@include ms-lgPush1;
|
||||
}
|
||||
|
||||
.title {
|
||||
@include ms-font-xl;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.subTitle {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.description {
|
||||
@include ms-font-l;
|
||||
@include ms-fontColor-white;
|
||||
}
|
||||
|
||||
.button {
|
||||
// Our button
|
||||
text-decoration: none;
|
||||
height: 32px;
|
||||
|
||||
// Primary Button
|
||||
min-width: 80px;
|
||||
background-color: $ms-color-themePrimary;
|
||||
border-color: $ms-color-themePrimary;
|
||||
color: $ms-color-white;
|
||||
|
||||
// Basic Button
|
||||
outline: transparent;
|
||||
position: relative;
|
||||
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;
|
||||
border-width: 0;
|
||||
text-align: center;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
padding: 0 16px;
|
||||
|
||||
.label {
|
||||
font-weight: $ms-font-weight-semibold;
|
||||
font-size: $ms-font-size-m;
|
||||
height: 32px;
|
||||
line-height: 32px;
|
||||
margin: 0 4px;
|
||||
vertical-align: top;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,19 +1,20 @@
|
|||
import { Version } from '@microsoft/sp-core-library';
|
||||
import {
|
||||
BaseClientSideWebPart,
|
||||
IPropertyPaneConfiguration,
|
||||
PropertyPaneTextField
|
||||
} from '@microsoft/sp-webpart-base';
|
||||
} from '@microsoft/sp-property-pane';
|
||||
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
|
||||
import { escape } from '@microsoft/sp-lodash-subset';
|
||||
|
||||
import styles from './TasksCalendar.module.scss';
|
||||
import * as strings from 'tasksCalendarStrings';
|
||||
import { ITasksCalendarWebPartProps } from './ITasksCalendarWebPartProps';
|
||||
import styles from './TasksCalendarWebPart.module.scss';
|
||||
import * as strings from 'TasksCalendarWebPartStrings';
|
||||
|
||||
import * as $ from 'jquery';
|
||||
import 'fullcalendar';
|
||||
import * as moment from 'moment';
|
||||
|
||||
var COLORS = ['#466365', '#B49A67', '#93B7BE', '#E07A5F', '#849483', '#084C61', '#DB3A34'];
|
||||
|
||||
interface ITask {
|
||||
ID: number;
|
||||
Title: string;
|
||||
|
@ -22,8 +23,11 @@ interface ITask {
|
|||
AssignedTo: [{ Title: string }];
|
||||
}
|
||||
|
||||
export interface ITasksCalendarWebPartProps {
|
||||
listName: string;
|
||||
}
|
||||
|
||||
export default class TasksCalendarWebPart extends BaseClientSideWebPart<ITasksCalendarWebPartProps> {
|
||||
private readonly colors: string[] = ['#466365', '#B49A67', '#93B7BE', '#E07A5F', '#849483', '#084C61', '#DB3A34'];
|
||||
|
||||
public render(): void {
|
||||
this.domElement.innerHTML = `
|
||||
|
@ -35,126 +39,6 @@ export default class TasksCalendarWebPart extends BaseClientSideWebPart<ITasksCa
|
|||
this.displayTasks();
|
||||
}
|
||||
|
||||
private displayTasks(): void {
|
||||
$('#calendar').fullCalendar('destroy');
|
||||
$('#calendar').fullCalendar({
|
||||
weekends: false,
|
||||
header: {
|
||||
left: 'prev,next today',
|
||||
center: 'title',
|
||||
right: 'month,basicWeek,basicDay'
|
||||
},
|
||||
displayEventTime: false,
|
||||
// open up the display form when a user clicks on an event
|
||||
eventClick: (calEvent: FC.EventObject, jsEvent: MouseEvent, view: FC.ViewObject): void => {
|
||||
(window as any).location = `${this.context.pageContext.web.absoluteUrl}\
|
||||
/Lists/${escape(this.properties.listName)}/DispForm.aspx?ID=${calEvent.id}`;
|
||||
},
|
||||
editable: true,
|
||||
timezone: "UTC",
|
||||
droppable: true, // this allows things to be dropped onto the calendar
|
||||
// update the end date when a user drags and drops an event
|
||||
eventDrop: (event: FC.EventObject, delta: moment.Duration, revertFunc: Function): void => {
|
||||
this.updateTask(event.id, <moment.Moment>event.start, <moment.Moment>event.end);
|
||||
},
|
||||
// put the events on the calendar
|
||||
events: (start: moment.Moment, end: moment.Moment, timezone: string, callback: Function): void => {
|
||||
const startDate: string = start.format('YYYY-MM-DD');
|
||||
const endDate: string = end.format('YYYY-MM-DD');
|
||||
|
||||
const restQuery: string = `/_api/Web/Lists/GetByTitle('${escape(this.properties.listName)}')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '${startDate}' and DueDate le '${endDate}')or(StartDate ge '${startDate}' and StartDate le '${endDate}'))`;
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + restQuery,
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata"
|
||||
}
|
||||
})
|
||||
.done((data: { value: ITask[] }, textStatus: string, jqXHR: JQueryXHR): void => {
|
||||
let personColors: { [person: string]: string; } = {};
|
||||
let colorNo: number = 0;
|
||||
|
||||
const events: FC.EventObject[] = data.value.map((task: ITask): FC.EventObject => {
|
||||
const assignedTo: string = task.AssignedTo.map((person: { Title: string }): string => {
|
||||
return person.Title;
|
||||
}).join(', ');
|
||||
|
||||
let color: string = personColors[assignedTo];
|
||||
if (!color) {
|
||||
color = this.colors[colorNo++];
|
||||
personColors[assignedTo] = color;
|
||||
}
|
||||
if (colorNo >= this.colors.length) {
|
||||
colorNo = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
title: `${task.Title} - ${assignedTo}`,
|
||||
id: task.ID,
|
||||
// specify the background color and border color can also create a class and use className parameter
|
||||
color: color,
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
// add one day to end date so that calendar properly shows event ending on that day
|
||||
end: moment.utc(task.DueDate).add("1", "days")
|
||||
};
|
||||
});
|
||||
|
||||
callback(events);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private updateTask(id: number, startDate: moment.Moment, dueDate: moment.Moment): void {
|
||||
// subtract the previously added day to the date to store correct date
|
||||
const sDate: string = moment.utc(startDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
startDate.format("hh:mm") + ":00Z";
|
||||
if (!dueDate) {
|
||||
dueDate = startDate;
|
||||
}
|
||||
const dDate: string = moment.utc(dueDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
dueDate.format("hh:mm") + ":00Z";
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + '/_api/contextinfo',
|
||||
type: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json;odata=nometadata'
|
||||
}
|
||||
})
|
||||
.then((data: { FormDigestValue: string }, textStatus: string, jqXHR: JQueryXHR): JQueryXHR => {
|
||||
return $.ajax({
|
||||
url: `${this.context.pageContext.web.absoluteUrl}\
|
||||
/_api/Web/Lists/getByTitle('${escape(this.properties.listName)}')/Items(${id})`,
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
DueDate: dDate,
|
||||
}),
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata",
|
||||
"Content-Type": "application/json;odata=nometadata",
|
||||
"X-RequestDigest": data.FormDigestValue,
|
||||
"IF-MATCH": "*",
|
||||
"X-Http-Method": "PATCH"
|
||||
}
|
||||
});
|
||||
})
|
||||
.done((data: {}, textStatus: string, jqXHR: JQueryXHR): void => {
|
||||
alert("Update Successful");
|
||||
})
|
||||
.fail((jqXHR: JQueryXHR, textStatus: string, errorThrown: string): void => {
|
||||
alert("Update Failed");
|
||||
})
|
||||
.always((): void => {
|
||||
this.displayTasks();
|
||||
});
|
||||
}
|
||||
|
||||
protected get dataVersion(): Version {
|
||||
return Version.parse('1.0');
|
||||
}
|
||||
|
@ -184,4 +68,123 @@ $filter=((DueDate ge '${startDate}' and DueDate le '${endDate}')or(StartDate ge
|
|||
protected get disableReactivePropertyChanges(): boolean {
|
||||
return true;
|
||||
}
|
||||
|
||||
private displayTasks() {
|
||||
($('#calendar') as any).fullCalendar('destroy');
|
||||
($('#calendar') as any).fullCalendar({
|
||||
weekends: false,
|
||||
header: {
|
||||
left: 'prev,next today',
|
||||
center: 'title',
|
||||
right: 'month,basicWeek,basicDay'
|
||||
},
|
||||
displayEventTime: false,
|
||||
// open up the display form when a user clicks on an event
|
||||
eventClick: (calEvent: any, jsEvent: MouseEvent, view: any): void => {
|
||||
(window as any).location = this.context.pageContext.web.absoluteUrl +
|
||||
"/Lists/" + escape(this.properties.listName) + "/DispForm.aspx?ID=" + calEvent.id;
|
||||
},
|
||||
editable: true,
|
||||
timezone: "UTC",
|
||||
droppable: true, // this allows things to be dropped onto the calendar
|
||||
// update the end date when a user drags and drops an event
|
||||
eventDrop: (event: any, delta: moment.Duration, revertFunc: Function): void => {
|
||||
this.updateTask(<number>event.id, <moment.Moment>event.start, <moment.Moment>event.end);
|
||||
},
|
||||
// put the events on the calendar
|
||||
events: (start: moment.Moment, end: moment.Moment, timezone: string, callback: Function): void => {
|
||||
var startDate = start.format('YYYY-MM-DD');
|
||||
var endDate = end.format('YYYY-MM-DD');
|
||||
|
||||
var restQuery = "/_api/Web/Lists/GetByTitle('" + escape(this.properties.listName) + "')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + restQuery,
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata"
|
||||
}
|
||||
})
|
||||
.done((data: { value: ITask[] }, textStatus: string, jqXHR: JQueryXHR) => {
|
||||
let personColors: { [person: string]: string; } = {};
|
||||
var colorNo = 0;
|
||||
|
||||
var events = data.value.map((task: ITask): any => {
|
||||
var assignedTo = task.AssignedTo.map((person: { Title: string }): string => {
|
||||
return person.Title;
|
||||
}).join(', ');
|
||||
|
||||
var color = personColors[assignedTo];
|
||||
if (!color) {
|
||||
color = COLORS[colorNo++];
|
||||
personColors[assignedTo] = color;
|
||||
}
|
||||
if (colorNo >= COLORS.length) {
|
||||
colorNo = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
title: task.Title + " - " + assignedTo,
|
||||
id: task.ID,
|
||||
color: color, // specify the background color and border color can also create a class and use className parameter.
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
end: moment.utc(task.DueDate).add("1", "days") // add one day to end date so that calendar properly shows event ending on that day
|
||||
};
|
||||
});
|
||||
|
||||
callback(events);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
private updateTask(id: number, startDate: moment.Moment, dueDate: moment.Moment) {
|
||||
// subtract the previously added day to the date to store correct date
|
||||
var sDate = moment.utc(startDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
startDate.format("hh:mm") + ":00Z";
|
||||
if (!dueDate) {
|
||||
dueDate = startDate;
|
||||
}
|
||||
var dDate = moment.utc(dueDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
dueDate.format("hh:mm") + ":00Z";
|
||||
|
||||
$.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl + '/_api/contextinfo',
|
||||
type: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json;odata=nometadata'
|
||||
}
|
||||
})
|
||||
.then((data: { FormDigestValue: string }, textStatus: string, jqXHR: JQueryXHR): JQueryXHR => {
|
||||
return $.ajax({
|
||||
url: this.context.pageContext.web.absoluteUrl +
|
||||
"/_api/Web/Lists/getByTitle('" + escape(this.properties.listName) + "')/Items(" + id + ")",
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
DueDate: dDate,
|
||||
}),
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata",
|
||||
"Content-Type": "application/json;odata=nometadata",
|
||||
"X-RequestDigest": data.FormDigestValue,
|
||||
"IF-MATCH": "*",
|
||||
"X-Http-Method": "PATCH"
|
||||
}
|
||||
});
|
||||
})
|
||||
.done((data: {}, textStatus: string, jqXHR: JQueryXHR): void => {
|
||||
alert("Update Successful");
|
||||
})
|
||||
.fail((jqXHR: JQueryXHR, textStatus: string, errorThrown: string) => {
|
||||
alert("Update Failed");
|
||||
})
|
||||
.always((): void => {
|
||||
this.displayTasks();
|
||||
});
|
||||
// ...
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
define([], function() {
|
||||
return {
|
||||
"PropertyPaneDescription": "Tasks calendar settings",
|
||||
"BasicGroupName": "Data",
|
||||
"PropertyPaneDescription": "Description",
|
||||
"BasicGroupName": "Group Name",
|
||||
"ListNameFieldLabel": "List name"
|
||||
}
|
||||
});
|
|
@ -1,10 +1,10 @@
|
|||
declare interface ITasksCalendarStrings {
|
||||
declare interface ITasksCalendarWebPartStrings {
|
||||
PropertyPaneDescription: string;
|
||||
BasicGroupName: string;
|
||||
ListNameFieldLabel: string;
|
||||
}
|
||||
|
||||
declare module 'tasksCalendarStrings' {
|
||||
const strings: ITasksCalendarStrings;
|
||||
declare module 'TasksCalendarWebPartStrings' {
|
||||
const strings: ITasksCalendarWebPartStrings;
|
||||
export = strings;
|
||||
}
|
||||
|
|
|
@ -0,0 +1,124 @@
|
|||
var moment = require('moment');
|
||||
|
||||
var PATH_TO_DISPFORM = window.webAbsoluteUrl + "/Lists/Tasks/DispForm.aspx";
|
||||
var TASK_LIST = "Tasks";
|
||||
var COLORS = ['#466365', '#B49A67', '#93B7BE', '#E07A5F', '#849483', '#084C61', '#DB3A34'];
|
||||
|
||||
displayTasks();
|
||||
|
||||
function displayTasks() {
|
||||
$('#calendar').fullCalendar('destroy');
|
||||
$('#calendar').fullCalendar({
|
||||
weekends: false,
|
||||
header: {
|
||||
left: 'prev,next today',
|
||||
center: 'title',
|
||||
right: 'month,basicWeek,basicDay'
|
||||
},
|
||||
displayEventTime: false,
|
||||
// open up the display form when a user clicks on an event
|
||||
eventClick: function (calEvent, jsEvent, view) {
|
||||
window.location = PATH_TO_DISPFORM + "?ID=" + calEvent.id;
|
||||
},
|
||||
editable: true,
|
||||
timezone: "UTC",
|
||||
droppable: true, // this allows things to be dropped onto the calendar
|
||||
// update the end date when a user drags and drops an event
|
||||
eventDrop: function (event, delta, revertFunc) {
|
||||
updateTask(event.id, event.start, event.end);
|
||||
},
|
||||
// put the events on the calendar
|
||||
events: function (start, end, timezone, callback) {
|
||||
var startDate = start.format('YYYY-MM-DD');
|
||||
var endDate = end.format('YYYY-MM-DD');
|
||||
|
||||
var restQuery = "/_api/Web/Lists/GetByTitle('" + TASK_LIST + "')/items?$select=ID,Title,\
|
||||
Status,StartDate,DueDate,AssignedTo/Title&$expand=AssignedTo&\
|
||||
$filter=((DueDate ge '" + startDate + "' and DueDate le '" + endDate + "')or(StartDate ge '" + startDate + "' and StartDate le '" + endDate + "'))";
|
||||
|
||||
$.ajax({
|
||||
url: window.webAbsoluteUrl + restQuery,
|
||||
type: "GET",
|
||||
dataType: "json",
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata"
|
||||
}
|
||||
})
|
||||
.done(function (data, textStatus, jqXHR) {
|
||||
var personColors = {};
|
||||
var colorNo = 0;
|
||||
|
||||
var events = data.value.map(function (task) {
|
||||
var assignedTo = task.AssignedTo.map(function (person) {
|
||||
return person.Title;
|
||||
}).join(', ');
|
||||
|
||||
var color = personColors[assignedTo];
|
||||
if (!color) {
|
||||
color = COLORS[colorNo++];
|
||||
personColors[assignedTo] = color;
|
||||
}
|
||||
if (colorNo >= COLORS.length) {
|
||||
colorNo = 0;
|
||||
}
|
||||
|
||||
return {
|
||||
title: task.Title + " - " + assignedTo,
|
||||
id: task.ID,
|
||||
color: color, // specify the background color and border color can also create a class and use className parameter.
|
||||
start: moment.utc(task.StartDate).add("1", "days"),
|
||||
end: moment.utc(task.DueDate).add("1", "days") // add one day to end date so that calendar properly shows event ending on that day
|
||||
};
|
||||
});
|
||||
|
||||
callback(events);
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function updateTask(id, startDate, dueDate) {
|
||||
// subtract the previously added day to the date to store correct date
|
||||
var sDate = moment.utc(startDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
startDate.format("hh:mm") + ":00Z";
|
||||
if (!dueDate) {
|
||||
dueDate = startDate;
|
||||
}
|
||||
var dDate = moment.utc(dueDate).add("-1", "days").format('YYYY-MM-DD') + "T" +
|
||||
dueDate.format("hh:mm") + ":00Z";
|
||||
|
||||
$.ajax({
|
||||
url: window.webAbsoluteUrl + '/_api/contextinfo',
|
||||
type: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json;odata=nometadata'
|
||||
}
|
||||
})
|
||||
.then(function (data, textStatus, jqXHR) {
|
||||
return $.ajax({
|
||||
url: window.webAbsoluteUrl +
|
||||
"/_api/Web/Lists/getByTitle('" + TASK_LIST + "')/Items(" + id + ")",
|
||||
type: 'POST',
|
||||
data: JSON.stringify({
|
||||
StartDate: sDate,
|
||||
DueDate: dDate,
|
||||
}),
|
||||
headers: {
|
||||
Accept: "application/json;odata=nometadata",
|
||||
"Content-Type": "application/json;odata=nometadata",
|
||||
"X-RequestDigest": data.FormDigestValue,
|
||||
"IF-MATCH": "*",
|
||||
"X-Http-Method": "PATCH"
|
||||
}
|
||||
});
|
||||
})
|
||||
.done(function (data, textStatus, jqXHR) {
|
||||
alert("Update Successful");
|
||||
})
|
||||
.fail(function (jqXHR, textStatus, errorThrown) {
|
||||
alert("Update Failed");
|
||||
})
|
||||
.always(function () {
|
||||
displayTasks();
|
||||
});
|
||||
}
|
|
@ -1,9 +0,0 @@
|
|||
/// <reference types="mocha" />
|
||||
|
||||
import { assert } from 'chai';
|
||||
|
||||
describe('TasksCalendarWebPart', () => {
|
||||
it('should do something', () => {
|
||||
assert.ok(true);
|
||||
});
|
||||
});
|
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
|
@ -1,16 +1,38 @@
|
|||
{
|
||||
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.3/includes/tsconfig-web.json",
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"module": "commonjs",
|
||||
"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",
|
||||
"es6-collections",
|
||||
"webpack-env"
|
||||
],
|
||||
"lib": [
|
||||
"es5",
|
||||
"dom",
|
||||
"es2015.collection"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"lib"
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,3 +1,30 @@
|
|||
{
|
||||
"rulesDirectory": "./config"
|
||||
"extends": "@microsoft/sp-tslint-rules/base-tslint.json",
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
// Type definitions for Microsoft ODSP projects
|
||||
// Project: ODSP
|
||||
|
||||
/* Global definition for UNIT_TEST builds
|
||||
Code that is wrapped inside an if(UNIT_TEST) {...}
|
||||
block will not be included in the final bundle when the
|
||||
--ship flag is specified */
|
||||
declare const UNIT_TEST: boolean;
|
||||
|
||||
/* Global defintion for SPO builds */
|
||||
declare const DATACENTER: boolean;
|
|
@ -1 +0,0 @@
|
|||
/// <reference path="@ms/odsp.d.ts" />
|
|
@ -1,8 +1,12 @@
|
|||
{
|
||||
"@microsoft/generator-sharepoint": {
|
||||
"version": "1.1.0",
|
||||
"libraryName": "spfx-js-fullcalendar",
|
||||
"libraryId": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"environment": "spo"
|
||||
"isCreatingSolution": true,
|
||||
"environment": "spo",
|
||||
"version": "1.10.0",
|
||||
"libraryName": "fullcalendar-taskscalendar",
|
||||
"libraryId": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"packageManager": "npm",
|
||||
"isDomainIsolated": false,
|
||||
"componentType": "webpart"
|
||||
}
|
||||
}
|
|
@ -1,18 +1,26 @@
|
|||
# Tutorial: Migrate jQuery and FullCalendar solution built using Script Editor Web Part to SharePoint Framework
|
||||
## fullcalendar-taskscalendar
|
||||
|
||||
Sample jQuery FullCalendar solution migrated from a Script Editor Web Part to the SharePoint Framework.
|
||||
This is where you include your WebPart documentation.
|
||||
|
||||
![jQuery FullCalendar solution built using Script Editor Web Part](https://devofficecdn.azureedge.net/sharepointdocumentation/images/fullcalendar-sewp.png)
|
||||
### Building the code
|
||||
|
||||
More information about the solution is available at [https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx](https://docs.microsoft.com/sharepoint/dev/spfx/web-parts/guidance/migrate-jquery-fullcalendar-script-to-spfx).
|
||||
```bash
|
||||
git clone the repo
|
||||
npm i
|
||||
npm i -g gulp
|
||||
gulp
|
||||
```
|
||||
|
||||
## Minimal Path to Awesome
|
||||
This package produces the following:
|
||||
|
||||
- In the command line run:
|
||||
- `npm i`
|
||||
- `gulp serve --nobrowser`
|
||||
- In the web browser navigate to the hosted version of the SharePoint workbench located in the same site as where the Tasks list is, eg. *https://contoso.sharepoint.com/sites/team/_layouts/15/workbench.aspx*.
|
||||
* lib/* - intermediate-stage commonjs build artifacts
|
||||
* dist/* - the bundled script, along with other resources
|
||||
* deploy/* - all resources which should be uploaded to a CDN.
|
||||
|
||||
[More information](../README.md)
|
||||
### Build options
|
||||
|
||||
<img src="https://telemetry.sharepointpnp.com/sp-dev-fx-webparts/tutorial-migrate-fullcalendar/04" />
|
||||
gulp clean - TODO
|
||||
gulp test - TODO
|
||||
gulp serve - TODO
|
||||
gulp bundle - TODO
|
||||
gulp package-solution - TODO
|
||||
|
|
|
@ -1,17 +1,31 @@
|
|||
{
|
||||
"entries": [
|
||||
{
|
||||
"entry": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json",
|
||||
"outputPath": "./dist/tasks-calendar.bundle.js"
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/config.2.0.schema.json",
|
||||
"version": "2.0",
|
||||
"bundles": {
|
||||
"tasks-calendar-web-part": {
|
||||
"components": [
|
||||
{
|
||||
"entrypoint": "./lib/webparts/tasksCalendar/TasksCalendarWebPart.js",
|
||||
"manifest": "./src/webparts/tasksCalendar/TasksCalendarWebPart.manifest.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
},
|
||||
"externals": {
|
||||
"jquery": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js",
|
||||
"fullcalendar": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js"
|
||||
"jquery": {
|
||||
"path": "https://code.jquery.com/jquery-1.11.1.min.js",
|
||||
"globalName": "jQuery"
|
||||
},
|
||||
"fullcalendar": {
|
||||
"path": "https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.4.0/fullcalendar.min.js",
|
||||
"globalName": "jQuery",
|
||||
"globalDependencies": [
|
||||
"jquery"
|
||||
]
|
||||
},
|
||||
"moment": "https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"
|
||||
},
|
||||
"localizedResources": {
|
||||
"tasksCalendarStrings": "webparts/tasksCalendar/loc/{locale}.js"
|
||||
"TasksCalendarWebPartStrings": "lib/webparts/tasksCalendar/loc/{locale}.js"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/copy-assets.schema.json",
|
||||
"deployCdnPath": "temp/deploy"
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/deploy-azure-storage.schema.json",
|
||||
"workingDir": "./temp/deploy/",
|
||||
"account": "<!-- STORAGE ACCOUNT NAME -->",
|
||||
"container": "spfx-js-fullcalendar",
|
||||
"container": "fullcalendar-taskscalendar",
|
||||
"accessKey": "<!-- ACCESS KEY -->"
|
||||
}
|
|
@ -1,10 +1,13 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/package-solution.schema.json",
|
||||
"solution": {
|
||||
"name": "spfx-js-fullcalendar-client-side-solution",
|
||||
"id": "e6a89529-5fef-4883-b84c-c6bc27b0bfb0",
|
||||
"version": "1.0.0.0"
|
||||
"name": "fullcalendar-taskscalendar-client-side-solution",
|
||||
"id": "c8f6ee3a-f24a-4b6b-b1bf-ce7121f65205",
|
||||
"version": "1.0.0.0",
|
||||
"includeClientSideAssets": true,
|
||||
"isDomainIsolated": false
|
||||
},
|
||||
"paths": {
|
||||
"zippedPackage": "solution/spfx-js-fullcalendar.sppkg"
|
||||
"zippedPackage": "solution/fullcalendar-taskscalendar.sppkg"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/core-build/serve.schema.json",
|
||||
"port": 4321,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"https": true,
|
||||
"initialPage": "https://localhost:5432/workbench",
|
||||
"api": {
|
||||
"port": 5432,
|
||||
"entryPath": "node_modules/@microsoft/sp-webpart-workbench/lib/api/"
|
||||
|
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
// Display errors as warnings
|
||||
"displayAsWarning": true,
|
||||
// The TSLint task may have been configured with several custom lint rules
|
||||
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
||||
// project). If true, this flag will deactivate any of these rules.
|
||||
"removeExistingRules": true,
|
||||
// When true, the TSLint task is configured with some default TSLint "rules.":
|
||||
"useDefaultConfigAsBase": false,
|
||||
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
||||
// which are active, other than the list of rules below.
|
||||
"lintConfig": {
|
||||
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
||||
"rules": {
|
||||
"class-name": false,
|
||||
"export-name": false,
|
||||
"forin": false,
|
||||
"label-position": false,
|
||||
"member-access": true,
|
||||
"no-arg": false,
|
||||
"no-console": false,
|
||||
"no-construct": false,
|
||||
"no-duplicate-case": true,
|
||||
"no-duplicate-variable": true,
|
||||
"no-eval": false,
|
||||
"no-function-expression": true,
|
||||
"no-internal-module": true,
|
||||
"no-shadowed-variable": true,
|
||||
"no-switch-case-fall-through": true,
|
||||
"no-unnecessary-semicolons": true,
|
||||
"no-unused-expression": true,
|
||||
"no-unused-imports": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-with-statement": true,
|
||||
"semicolon": true,
|
||||
"trailing-comma": false,
|
||||
"typedef": false,
|
||||
"typedef-whitespace": false,
|
||||
"use-named-parameter": true,
|
||||
"valid-typeof": true,
|
||||
"variable-name": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,3 +1,4 @@
|
|||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/write-manifests.schema.json",
|
||||
"cdnBasePath": "<!-- PATH TO CDN -->"
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
const gulp = require('gulp');
|
||||
const build = require('@microsoft/sp-build-web');
|
||||
|
||||
build.initialize(gulp);
|
||||
build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
|
||||
|
||||
build.initialize(require('gulp'));
|
||||
|
|
File diff suppressed because it is too large
Load Diff
16701
tutorials/tutorial-migrate-fullcalendar/04-replaced-jquery-ajax-with-spfx/package-lock.json
generated
Normal file
16701
tutorials/tutorial-migrate-fullcalendar/04-replaced-jquery-ajax-with-spfx/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -1,33 +1,36 @@
|
|||
{
|
||||
"name": "spfx-js-fullcalendar",
|
||||
"name": "fullcalendar-taskscalendar",
|
||||
"version": "0.0.1",
|
||||
"private": true,
|
||||
"main": "lib/index.js",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
},
|
||||
"author": {
|
||||
"name": "Waldek Mastykarz",
|
||||
"url": "https://blog.mastykarz.nl"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "~1.1.0",
|
||||
"@microsoft/sp-webpart-base": "~1.1.0",
|
||||
"@types/webpack-env": ">=1.12.1 <1.14.0",
|
||||
"moment": "^2.18.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/sp-build-web": "~1.1.0",
|
||||
"@microsoft/sp-module-interfaces": "~1.1.0",
|
||||
"@microsoft/sp-webpart-workbench": "~1.1.0",
|
||||
"@types/chai": ">=3.4.34 <3.6.0",
|
||||
"@types/fullcalendar": "^2.7.44",
|
||||
"@types/jquery": "^1.10.32",
|
||||
"@types/mocha": ">=2.2.33 <2.6.0",
|
||||
"gulp": "~3.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "gulp bundle",
|
||||
"clean": "gulp clean",
|
||||
"test": "gulp test"
|
||||
},
|
||||
"dependencies": {
|
||||
"@microsoft/sp-core-library": "1.10.0",
|
||||
"@microsoft/sp-lodash-subset": "1.10.0",
|
||||
"@microsoft/sp-office-ui-fabric-core": "1.10.0",
|
||||
"@microsoft/sp-property-pane": "1.10.0",
|
||||
"@microsoft/sp-webpart-base": "1.10.0",
|
||||
"@types/es6-promise": "0.0.33",
|
||||
"@types/webpack-env": "1.13.1",
|
||||
"moment": "^2.27.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/rush-stack-compiler-3.3": "0.3.5",
|
||||
"@microsoft/sp-build-web": "1.10.0",
|
||||
"@microsoft/sp-module-interfaces": "1.10.0",
|
||||
"@microsoft/sp-tslint-rules": "1.10.0",
|
||||
"@microsoft/sp-webpart-workbench": "1.10.0",
|
||||
"@types/chai": "3.4.34",
|
||||
"@types/jquery": "^1.10.35",
|
||||
"@types/mocha": "2.2.38",
|
||||
"ajv": "~5.2.2",
|
||||
"gulp": "~3.9.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
// A file is required to be in the root of the /src directory by the TypeScript compiler
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue