2016-08-26 12:27:24 -07:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
(function(global: any /** TODO #9100 */) {
|
|
|
|
|
|
|
|
writeScriptTag('/all/benchmarks/vendor/core.js');
|
|
|
|
writeScriptTag('/all/benchmarks/vendor/zone.js');
|
|
|
|
writeScriptTag('/all/benchmarks/vendor/long-stack-trace-zone.js');
|
|
|
|
writeScriptTag('/all/benchmarks/vendor/system.src.js');
|
|
|
|
writeScriptTag('/all/benchmarks/vendor/Reflect.js', 'benchmarksBootstrap()');
|
|
|
|
|
|
|
|
(<any>global).benchmarksBootstrap = benchmarksBootstrap;
|
|
|
|
|
|
|
|
function benchmarksBootstrap() {
|
|
|
|
urlParamsToForm();
|
|
|
|
// check query param
|
|
|
|
var useBundles = location.search.indexOf('bundles=false') == -1;
|
|
|
|
if (useBundles) {
|
|
|
|
System.config({
|
|
|
|
map: {
|
|
|
|
'index': 'index.js',
|
|
|
|
'@angular/core': '/packages-dist/core/bundles/core.umd.js',
|
|
|
|
'@angular/common': '/packages-dist/common/bundles/common.umd.js',
|
|
|
|
'@angular/forms': '/packages-dist/forms/bundles/forms.umd.js',
|
|
|
|
'@angular/compiler': '/packages-dist/compiler/bundles/compiler.umd.js',
|
|
|
|
'@angular/platform-browser':
|
|
|
|
'/packages-dist/platform-browser/bundles/platform-browser.umd.js',
|
|
|
|
'@angular/platform-browser-dynamic':
|
|
|
|
'/packages-dist/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
|
|
|
|
'@angular/http': '/packages-dist/http/bundles/http.umd.js',
|
|
|
|
'@angular/upgrade': '/packages-dist/upgrade/bundles/upgrade.umd.js',
|
|
|
|
'@angular/router': '/packages-dist/router/bundles/router.umd.js',
|
|
|
|
'@angular/core/src/facade': '/all/@angular/core/src/facade',
|
|
|
|
'rxjs': '/all/benchmarks/vendor/rxjs'
|
|
|
|
},
|
|
|
|
packages: {
|
|
|
|
'app': {defaultExtension: 'js'},
|
|
|
|
'../app': {defaultExtension: 'js'},
|
|
|
|
'@angular/core/src/facade': {defaultExtension: 'js'},
|
|
|
|
'rxjs': {defaultExtension: 'js'}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
console.warn(
|
|
|
|
'Not using the Angular bundles. Don\'t use this configuration for e2e/performance tests!');
|
|
|
|
|
|
|
|
System.config({
|
|
|
|
map: {
|
|
|
|
'index': 'index.js',
|
|
|
|
'@angular': '/all/@angular',
|
|
|
|
'rxjs': '/all/benchmarks/vendor/rxjs'
|
|
|
|
},
|
|
|
|
packages: {
|
|
|
|
'app': {defaultExtension: 'js'},
|
|
|
|
'../app': {defaultExtension: 'js'},
|
|
|
|
'@angular/core': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/compiler': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/router': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/common': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/forms': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/platform-browser': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/platform-browser-dynamic': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'@angular/upgrade': {main: 'index.js', defaultExtension: 'js'},
|
|
|
|
'rxjs': {defaultExtension: 'js'}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// BOOTSTRAP the app!
|
|
|
|
System.import('index').then(function(m: any /** TODO #9100 */) {
|
|
|
|
m.main();
|
|
|
|
}, console.error.bind(console));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function writeScriptTag(scriptUrl: any /** TODO #9100 */, onload?: any /** TODO #9100 */) {
|
|
|
|
document.write(`<script src="${scriptUrl}" onload="${onload}"></script>`);
|
|
|
|
}
|
|
|
|
|
|
|
|
// helper script that will read out the url parameters
|
|
|
|
// and store them in appropriate form fields on the page
|
|
|
|
function urlParamsToForm() {
|
|
|
|
var regex = /(\w+)=(\w+)/g;
|
|
|
|
var search = decodeURIComponent(location.search);
|
|
|
|
var match: any[];
|
|
|
|
while (match = regex.exec(search)) {
|
|
|
|
var name = match[1];
|
|
|
|
var value = match[2];
|
2016-08-26 15:44:05 -07:00
|
|
|
var els = document.querySelectorAll('input[name="' + name + '"]');
|
2016-08-26 12:27:24 -07:00
|
|
|
var el: any;
|
2016-08-26 15:44:05 -07:00
|
|
|
for (var i = 0; i < els.length; i++) {
|
2016-08-26 12:27:24 -07:00
|
|
|
el = els[i];
|
|
|
|
if (el.type === 'radio' || el.type === 'checkbox') {
|
|
|
|
el.checked = el.value === value;
|
|
|
|
} else {
|
|
|
|
el.value = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(window));
|