Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the project to the new typings, packages and compiler. #8

Merged
merged 2 commits into from
Feb 22, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 20 additions & 37 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ var runSequence = require("run-sequence");
var source = require("vinyl-source-stream");
var ts = require("gulp-typescript");
var tslint = require("gulp-tslint");
var typings = require("gulp-typings");
var uglify = require("gulp-uglify");

var PATHS = {
SRCROOT: "src/",
BUILDROOT: "build/",
BUNDLEROOT: "build/bundles/",
LIBROOT: "lib/",
DEFINITIONS: "typings/",
TARGET: {
ROOT: "target/"
},
Expand All @@ -41,27 +39,6 @@ function printGlobResults(glob) {
});
}

////////////////////////////////////////
// SETUP
////////////////////////////////////////
gulp.task("cleanDefinitions", function (callback) {
return del([
PATHS.DEFINITIONS
], callback);
});

gulp.task("definitions", function () {
return gulp.src("./typings.json")
.pipe(typings());
});

gulp.task("setup", function (callback) {
runSequence(
"cleanDefinitions",
"definitions",
callback);
});

////////////////////////////////////////
// CLEAN
////////////////////////////////////////
Expand Down Expand Up @@ -89,11 +66,13 @@ gulp.task("less", function () {
// COMPILE
////////////////////////////////////////
gulp.task("compileTypeScript", function () {
return gulp.src([PATHS.SRCROOT + "**/*.+(ts|tsx)", PATHS.DEFINITIONS + "main/**/*.d.ts"])
.pipe(ts({
jsx: "preserve",
module: "commonjs"
}))
var tsProject = ts.createProject("./tsconfig.json", {
typescript: require('typescript'),
noEmitOnError: true
})

return gulp.src([PATHS.SRCROOT + "**/*.+(ts|tsx)", "!**/*.d.ts"])
.pipe(tsProject())
.pipe(gulp.dest(PATHS.BUILDROOT));
});

Expand All @@ -114,18 +93,22 @@ gulp.task("compile", function (callback) {
////////////////////////////////////////
// TSLINT
////////////////////////////////////////
gulp.task("tslint", function () {
var tsErrorReport = tslint.report("prose", {
emitError: false,
reportLimit: 50
});

var tsFiles = [PATHS.SRCROOT + "**/*.ts", PATHS.SRCROOT + "**/*.tsx", "!" + PATHS.SRCROOT + "**/*.d.ts"];
gulp.task("tslint", function() {
var tsFiles = [
PATHS.SRCROOT + "**/*.ts",
PATHS.SRCROOT + "**/*.tsx",
"!" + PATHS.SRCROOT + "**/*.d.ts"
];

return gulp.src(tsFiles)
.pipe(plumber())
.pipe(tslint())
.pipe(tsErrorReport);
.pipe(tslint({
formatter: "verbose"
}))
.pipe(tslint.report({
emitError: false,
summarizeFailureOutput: true
}))
});


Expand Down
50 changes: 26 additions & 24 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,31 +11,33 @@
"url": "git+https://github.com/OneNoteDev/OneNotePicker-JS.git"
},
"devDependencies": {
"browserify": "^13.0.0",
"del": "^2.0.2",
"es6-promise": "^3.0.2",
"file-system": "^2.2.1",
"globby": "^4.0.0",
"gulp": "^3.9.0",
"gulp-cssnano": "^2.1.1",
"gulp-header": "^1.8.8",
"gulp-less": "^3.0.3",
"gulp-msx": "^0.4.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^2.9.2",
"gulp-typings": "~1.1.0",
"gulp-uglify": "^1.5.3",
"merge-stream": "^1.0.0",
"mithril": "^0.2.4",
"node-qunit-phantomjs": "^1.4.0",
"onenoteapi": "^1.0.4",
"@types/es6-promise": "0.0.32",
"@types/mithril": "0.0.31",
"@types/qunit": "1.16.30",
"browserify": "14.0.0",
"del": "2.2.2",
"es6-promise": "4.0.5",
"file-system": "2.2.2",
"globby": "6.1.0",
"gulp": "3.9.1",
"gulp-cssnano": "2.1.2",
"gulp-header": "1.8.8",
"gulp-less": "3.3.0",
"gulp-msx": "0.4.0",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-tslint": "6.1.2",
"gulp-typescript": "3.1.4",
"gulp-uglify": "2.0.1",
"merge-stream": "1.0.1",
"mithril": "^0.2.5",
"node-qunit-phantomjs": "^1.5.0",
"onenoteapi": "1.1.0",
"qunitjs": "^1.20.0",
"run-sequence": "^1.1.4",
"tslint": "^3.9.0",
"typings": "~0.6.8",
"vinyl-source-stream": "^1.1.0"
"run-sequence": "1.2.2",
"tslint": "3.15.1",
"typescript": "2.1.5",
"vinyl-source-stream": "1.1.0"
},
"files": ["README.*", "target/oneNotePicker.d.ts", "target/oneNotePicker.js", "target/oneNotePicker.min.js", "target/css/*", "target/images/*"]
}
2 changes: 0 additions & 2 deletions src/scripts/UI/componentBase.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../typings/main/ambient/mithril/mithril.d.ts"/>

module KeyCode {
export var tab = 9;
export var enter = 13;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/// <reference path="../../../../node_modules/onenoteapi/target/oneNoteApi.d.ts" />

import {ComponentBase} from "../componentBase";
import {Utils} from "../../utils";

Expand Down
2 changes: 0 additions & 2 deletions src/scripts/oneNotePickerDataSource.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../node_modules/onenoteapi/target/oneNoteApi.d.ts" />

export class OneNotePickerDataSource {
authToken: string;

Expand Down
2 changes: 1 addition & 1 deletion src/scripts/polyfills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export module Polyfills {

function requestAnimationFramePoly() {
if (!window.requestAnimationFrame) {
window.requestAnimationFrame = window.msRequestAnimationFrame || (<any>window).mozRequestAnimationFrame
window.requestAnimationFrame = window.requestAnimationFrame || (<any>window).mozRequestAnimationFrame
|| (<any>window).webkitRequestAnimationFrame || (<any>window).oRequestAnimationFrame || ((callback: FrameRequestCallback) => {
setTimeout(() => {
callback(Date.now());
Expand Down
2 changes: 0 additions & 2 deletions src/tests/UI/components/notebookListComponent_tests.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../../typings/main/ambient/qunit/qunit.d.ts" />

import {HelperFunctions} from "../../helperFunctions";
import {NotebookListComponent, NotebookListProps} from "../../../scripts/UI/components/notebookListComponent";

Expand Down
2 changes: 0 additions & 2 deletions src/tests/UI/components/oneNotePickerComponent_tests.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../../typings/main/ambient/qunit/qunit.d.ts" />

import {HelperFunctions} from "../../helperFunctions";
import {Constants} from "../../../scripts/constants";
import {OneNotePickerComponent, OneNotePickerProps} from "../../../scripts/UI/components/oneNotePickerComponent";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../../typings/main/ambient/qunit/qunit.d.ts" />

import {HelperFunctions} from "../../helperFunctions";
import {Constants} from "../../../scripts/constants";
import {Status} from "../../../scripts/status";
Expand Down
2 changes: 0 additions & 2 deletions src/tests/UI/components/oneNotePickerPopupComponent_tests.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../../typings/main/ambient/qunit/qunit.d.ts" />

import {HelperFunctions} from "../../helperFunctions";
import {Constants} from "../../../scripts/constants";
import {Status} from "../../../scripts/status";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/// <reference path="../../../../typings/main/ambient/qunit/qunit.d.ts" />

import {HelperFunctions} from "../../helperFunctions";
import {Constants} from "../../../scripts/constants";
import {SectionPickerPopupMessageComponent} from "../../../scripts/UI/components/sectionPickerPopupMessageComponent";
Expand Down
36 changes: 18 additions & 18 deletions target/oneNotePicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.OneNotePicker = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
/// <reference path="../../../typings/main/ambient/mithril/mithril.d.ts"/>
"use strict";
var KeyCode;
(function (KeyCode) {
Expand Down Expand Up @@ -150,7 +149,7 @@ var utils_1 = require("../../utils");
var CurrentlySelectedSectionClass = (function (_super) {
__extends(CurrentlySelectedSectionClass, _super);
function CurrentlySelectedSectionClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
CurrentlySelectedSectionClass.prototype.render = function () {
return ({tag: "div", attrs: {id:constants_1.Constants.Ids.saveToLocationContainer, className:"SaveToLocationContainer"}, children: [
Expand All @@ -170,13 +169,13 @@ var component = CurrentlySelectedSectionClass.componentize();
exports.CurrentlySelectedSectionComponent = component;

},{"../../constants":12,"../../utils":16,"../componentBase":1}],3:[function(require,module,exports){
/// <reference path="../../../../node_modules/onenoteapi/target/oneNoteApi.d.ts" />
"use strict";
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
/// <reference path="../../../../node_modules/onenoteapi/target/oneNoteApi.d.ts" />
var componentBase_1 = require("../componentBase");
var utils_1 = require("../../utils");
/**
Expand All @@ -187,7 +186,7 @@ var utils_1 = require("../../utils");
var ExpandableEntityComponentBase = (function (_super) {
__extends(ExpandableEntityComponentBase, _super);
function ExpandableEntityComponentBase() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
ExpandableEntityComponentBase.prototype.getInitialState = function () {
return {
Expand Down Expand Up @@ -251,7 +250,7 @@ var utils_1 = require("../../utils");
var LoadingElementComponentClass = (function (_super) {
__extends(LoadingElementComponentClass, _super);
function LoadingElementComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
LoadingElementComponentClass.prototype.render = function () {
return ({tag: "img", attrs: {id:constants_1.Constants.Ids.loadingImage, src:utils_1.Utils.getImageResourceUrl("loading_circle.gif"), className:"SectionPickerState SectionPickerLoading"}});
Expand All @@ -278,7 +277,7 @@ var utils_1 = require("../../utils");
var NotebookComponentClass = (function (_super) {
__extends(NotebookComponentClass, _super);
function NotebookComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
NotebookComponentClass.prototype.getDirectChildren = function () {
var directChildren = this.getChildSectionGroups();
Expand Down Expand Up @@ -352,8 +351,9 @@ var constants_1 = require("../../constants");
var NotebookListComponentClass = (function (_super) {
__extends(NotebookListComponentClass, _super);
function NotebookListComponentClass() {
_super.apply(this, arguments);
this.hasScrolledIntoView = false;
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.hasScrolledIntoView = false;
return _this;
}
NotebookListComponentClass.prototype.onSectionClicked = function (section) {
this.props.onSectionClicked(section);
Expand Down Expand Up @@ -408,7 +408,7 @@ var status_1 = require("../../status");
var OneNotePickerComponentClass = (function (_super) {
__extends(OneNotePickerComponentClass, _super);
function OneNotePickerComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
OneNotePickerComponentClass.prototype.getInitialState = function () {
return {
Expand Down Expand Up @@ -496,7 +496,7 @@ var status_1 = require("../../status");
var OneNotePickerPopupComponentClass = (function (_super) {
__extends(OneNotePickerPopupComponentClass, _super);
function OneNotePickerPopupComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
// Retrieves the styling information from the CurrentlySelectedSection in order to anchor
// the popup component in the correct place
Expand Down Expand Up @@ -544,16 +544,17 @@ var utils_1 = require("../../utils");
var SectionComponentClass = (function (_super) {
__extends(SectionComponentClass, _super);
function SectionComponentClass(props) {
_super.call(this, props);
var _this = _super.call(this, props) || this;
// We don't simply pass up the entire props so we can validate easier with our tests
this.sectionInfo = {
_this.sectionInfo = {
section: props.section,
path: props.path,
parentId: props.parentId
};
if (props.curSectionId) {
this.sectionInfo.curSectionId = props.curSectionId;
_this.sectionInfo.curSectionId = props.curSectionId;
}
return _this;
}
SectionComponentClass.prototype.render = function () {
var isSelected = this.props.curSectionId === this.props.section.id;
Expand Down Expand Up @@ -596,7 +597,7 @@ var utils_1 = require("../../utils");
var SectionGroupComponentClass = (function (_super) {
__extends(SectionGroupComponentClass, _super);
function SectionGroupComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
SectionGroupComponentClass.prototype.getDirectChildren = function () {
var directChildren = this.getChildSectionGroups();
Expand Down Expand Up @@ -671,7 +672,7 @@ var constants_1 = require("../../constants");
var SectionPickerPopupMessageComponentClass = (function (_super) {
__extends(SectionPickerPopupMessageComponentClass, _super);
function SectionPickerPopupMessageComponentClass() {
_super.apply(this, arguments);
return _super !== null && _super.apply(this, arguments) || this;
}
SectionPickerPopupMessageComponentClass.prototype.render = function () {
// Labels don't display two consecutive spaces so we only need to trim
Expand Down Expand Up @@ -714,7 +715,6 @@ var oneNotePickerDataSource_1 = require("./oneNotePickerDataSource");
exports.OneNotePickerDataSource = oneNotePickerDataSource_1.OneNotePickerDataSource;

},{"./UI/components/oneNotePickerComponent":7,"./oneNotePickerDataSource":14}],14:[function(require,module,exports){
/// <reference path="../../node_modules/onenoteapi/target/oneNoteApi.d.ts" />
"use strict";
var OneNotePickerDataSource = (function () {
function OneNotePickerDataSource(authToken) {
Expand All @@ -740,13 +740,13 @@ exports.OneNotePickerDataSource = OneNotePickerDataSource;

},{}],15:[function(require,module,exports){
"use strict";
var Status;
(function (Status) {
Status[Status["NotStarted"] = 0] = "NotStarted";
Status[Status["InProgress"] = 1] = "InProgress";
Status[Status["Succeeded"] = 2] = "Succeeded";
Status[Status["Failed"] = 3] = "Failed";
})(exports.Status || (exports.Status = {}));
var Status = exports.Status;
})(Status = exports.Status || (exports.Status = {}));

},{}],16:[function(require,module,exports){
"use strict";
Expand Down
2 changes: 1 addition & 1 deletion target/oneNotePicker.min.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"jsx": "preserve",
"module": "commonjs",
"types": [
"es6-promise",
"mithril",
"qunit"
],
"outDir": "./build"
}
}