From 0784eeb227d66056301e86eb86a44d7b3c76d80b Mon Sep 17 00:00:00 2001 From: LiYi Date: Thu, 2 Mar 2017 18:29:04 +0800 Subject: Add rule manager common component add License Issue-ID:CLIENT-164 Change-Id: I1fe60d4d1655c50373b7144a5029566e98cdcdac Signed-off-by: YILI --- alarm-analysis/src/main/webapp/alarm/index.html | 15 ++++ alarm-analysis/src/main/webapp/alarm/main.ts | 14 ++++ alarm-analysis/src/main/webapp/alarm/polyfills.ts | 14 ++++ alarm-analysis/src/main/webapp/alarm/vendor.ts | 14 ++++ alarm-analysis/src/main/webapp/config/helpers.js | 21 ++++++ .../src/main/webapp/config/karma-test-shim.js | 35 +++++++++ .../src/main/webapp/config/karma.conf.js | 51 +++++++++++++ .../src/main/webapp/config/webpack.common.js | 86 ++++++++++++++++++++++ .../src/main/webapp/config/webpack.dev.js | 42 +++++++++++ .../src/main/webapp/config/webpack.prod.js | 52 +++++++++++++ .../src/main/webapp/config/webpack.test.js | 51 +++++++++++++ alarm-analysis/src/main/webapp/i18n/en-US.json | 54 ++++++++++++++ alarm-analysis/src/main/webapp/i18n/zh-CN.json | 53 +++++++++++++ alarm-analysis/src/main/webapp/package.json | 82 +++++++++++++++++++++ alarm-analysis/src/main/webapp/tsconfig.json | 27 +++++++ alarm-analysis/src/main/webapp/typings.json | 22 ++++++ alarm-analysis/src/main/webapp/webpack.config.js | 15 ++++ 17 files changed, 648 insertions(+) create mode 100644 alarm-analysis/src/main/webapp/config/helpers.js create mode 100644 alarm-analysis/src/main/webapp/config/karma-test-shim.js create mode 100644 alarm-analysis/src/main/webapp/config/karma.conf.js create mode 100644 alarm-analysis/src/main/webapp/config/webpack.common.js create mode 100644 alarm-analysis/src/main/webapp/config/webpack.dev.js create mode 100644 alarm-analysis/src/main/webapp/config/webpack.prod.js create mode 100644 alarm-analysis/src/main/webapp/config/webpack.test.js create mode 100644 alarm-analysis/src/main/webapp/i18n/en-US.json create mode 100644 alarm-analysis/src/main/webapp/i18n/zh-CN.json create mode 100644 alarm-analysis/src/main/webapp/package.json create mode 100644 alarm-analysis/src/main/webapp/tsconfig.json create mode 100644 alarm-analysis/src/main/webapp/typings.json create mode 100644 alarm-analysis/src/main/webapp/webpack.config.js diff --git a/alarm-analysis/src/main/webapp/alarm/index.html b/alarm-analysis/src/main/webapp/alarm/index.html index 423e4cad..270f8d81 100644 --- a/alarm-analysis/src/main/webapp/alarm/index.html +++ b/alarm-analysis/src/main/webapp/alarm/index.html @@ -1,3 +1,18 @@ + diff --git a/alarm-analysis/src/main/webapp/alarm/main.ts b/alarm-analysis/src/main/webapp/alarm/main.ts index 32297373..e2da65ee 100644 --- a/alarm-analysis/src/main/webapp/alarm/main.ts +++ b/alarm-analysis/src/main/webapp/alarm/main.ts @@ -1,3 +1,17 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; import { enableProdMode } from '@angular/core'; import { AppModule } from './app/app.module'; diff --git a/alarm-analysis/src/main/webapp/alarm/polyfills.ts b/alarm-analysis/src/main/webapp/alarm/polyfills.ts index 20d968e1..03f53743 100644 --- a/alarm-analysis/src/main/webapp/alarm/polyfills.ts +++ b/alarm-analysis/src/main/webapp/alarm/polyfills.ts @@ -1,3 +1,17 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import 'core-js/es6'; import 'core-js/es7/reflect'; require('zone.js/dist/zone'); diff --git a/alarm-analysis/src/main/webapp/alarm/vendor.ts b/alarm-analysis/src/main/webapp/alarm/vendor.ts index 1d7ce27a..748c4cc4 100644 --- a/alarm-analysis/src/main/webapp/alarm/vendor.ts +++ b/alarm-analysis/src/main/webapp/alarm/vendor.ts @@ -1,3 +1,17 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ import '@angular/platform-browser'; import '@angular/platform-browser-dynamic'; import '@angular/core'; diff --git a/alarm-analysis/src/main/webapp/config/helpers.js b/alarm-analysis/src/main/webapp/config/helpers.js new file mode 100644 index 00000000..e30af8b3 --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/helpers.js @@ -0,0 +1,21 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var path = require('path'); +var _root = path.resolve(__dirname, '..'); +function root(args) { + args = Array.prototype.slice.call(arguments, 0); + return path.join.apply(path, [_root].concat(args)); +} +exports.root = root; diff --git a/alarm-analysis/src/main/webapp/config/karma-test-shim.js b/alarm-analysis/src/main/webapp/config/karma-test-shim.js new file mode 100644 index 00000000..3eb1f5e2 --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/karma-test-shim.js @@ -0,0 +1,35 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +Error.stackTraceLimit = Infinity; + +require('core-js/es6'); +require('reflect-metadata'); + +require('zone.js/dist/zone'); +require('zone.js/dist/long-stack-trace-zone'); +require('zone.js/dist/proxy'); +require('zone.js/dist/sync-test'); +require('zone.js/dist/jasmine-patch'); +require('zone.js/dist/async-test'); +require('zone.js/dist/fake-async-test'); + +var appContext = require.context('../src', true, /\.spec\.ts/); + +appContext.keys().forEach(appContext); + +var testing = require('@angular/core/testing'); +var browser = require('@angular/platform-browser-dynamic/testing'); + +testing.TestBed.initTestEnvironment(browser.BrowserDynamicTestingModule, browser.platformBrowserDynamicTesting()); diff --git a/alarm-analysis/src/main/webapp/config/karma.conf.js b/alarm-analysis/src/main/webapp/config/karma.conf.js new file mode 100644 index 00000000..0b02ca11 --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/karma.conf.js @@ -0,0 +1,51 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var webpackConfig = require('./webpack.test'); + +module.exports = function (config) { + var _config = { + basePath: '', + + frameworks: ['jasmine'], + + files: [ + {pattern: './config/karma-test-shim.js', watched: false} + ], + + preprocessors: { + './config/karma-test-shim.js': ['webpack', 'sourcemap'] + }, + + webpack: webpackConfig, + + webpackMiddleware: { + stats: 'errors-only' + }, + + webpackServer: { + noInfo: true + }, + + reporters: ['progress'], + port: 9876, + colors: true, + logLevel: config.LOG_INFO, + autoWatch: false, + browsers: ['PhantomJS'], + singleRun: true + }; + + config.set(_config); +}; diff --git a/alarm-analysis/src/main/webapp/config/webpack.common.js b/alarm-analysis/src/main/webapp/config/webpack.common.js new file mode 100644 index 00000000..bedcb7cc --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/webpack.common.js @@ -0,0 +1,86 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var webpack = require('webpack'); +var HtmlWebpackPlugin = require('html-webpack-plugin'); +var ExtractTextPlugin = require('extract-text-webpack-plugin'); +var helpers = require('./helpers'); + + +module.exports = { + entry: { + 'polyfills': './src/polyfills.ts', + 'vendor': './src/vendor.ts', + 'app': './src/main.ts' + }, + + resolve: { + extensions: ['', '.js', '.ts'] + }, + require:"../public/common/js/popModal.js", + + module: { + loaders: [ + { + test: /\.ts$/, + loaders: ['awesome-typescript-loader', 'angular2-template-loader'] + + }, + + { + test: /\.html$/, + loader: 'html' + }, + { + test: /\.(png|jpe?g|gif|ico|svg)$/, + include: [helpers.root('public', 'images'),helpers.root('public', 'component/thirdparty/uniform/images'), + helpers.root('public', 'framework/img'), + helpers.root('public', 'component/thirdparty/zTree/css/zTreeStyle/img'), + helpers.root('public', 'component/thirdparty/icheck/skins/line'), + helpers.root('public', 'component/thirdparty/icheck/skins/square'), + helpers.root('public', 'component/'), + ], + loader: 'file?name=public/images/[name].[hash].[ext]' + }, + { + test: /\.(svg|woff|woff2|ttf|eot)$/, + include: [helpers.root('public', 'fonts'),helpers.root('public', 'component/css/ZteIctIcons/fonts'), + helpers.root('public', 'component/thirdparty/bootstrap/fonts') + ], + loader: 'file?name=public/fonts/[name].[hash].[ext]' + }, + { + test: /\.css$/, + exclude: [helpers.root('src', 'app'),helpers.root('public', 'component/thirdparty/icheck/skins/line') + ], + loader: ExtractTextPlugin.extract('style', 'css?sourceMap') + }, + { + test: /\.css$/, + include: helpers.root('src', 'app'), + loader: 'raw' + } + ] + }, + + plugins: [ + new webpack.optimize.CommonsChunkPlugin({ + name: ['app', 'vendor', 'polyfills'] + }), + + new HtmlWebpackPlugin({ + template: 'src/index.html', + }) + ] +}; diff --git a/alarm-analysis/src/main/webapp/config/webpack.dev.js b/alarm-analysis/src/main/webapp/config/webpack.dev.js new file mode 100644 index 00000000..ec32a22d --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/webpack.dev.js @@ -0,0 +1,42 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var webpackMerge = require('webpack-merge'); +var ExtractTextPlugin = require('extract-text-webpack-plugin'); +var commonConfig = require('./webpack.common.js'); +var helpers = require('./helpers'); + +module.exports = webpackMerge(commonConfig, { + devtool: 'cheap-module-eval-source-map', + + output: { + path: helpers.root('dist'), + filename: '[name].js', + chunkFilename: '[id].chunk.js' + }, + + plugins: [ + new ExtractTextPlugin('[name].css') + ], + + devServer: { + port: 9527, + host: '10.74.24.33', + historyApiFallback: true, + watchOptions: { + aggregateTimeout: 300, + poll: 1000 + } + } +}); diff --git a/alarm-analysis/src/main/webapp/config/webpack.prod.js b/alarm-analysis/src/main/webapp/config/webpack.prod.js new file mode 100644 index 00000000..11920244 --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/webpack.prod.js @@ -0,0 +1,52 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var webpack = require('webpack'); +var webpackMerge = require('webpack-merge'); +var ExtractTextPlugin = require('extract-text-webpack-plugin'); +var commonConfig = require('./webpack.common.js'); +var helpers = require('./helpers'); + +const ENV = process.env.NODE_ENV = process.env.ENV = 'production'; + +module.exports = webpackMerge(commonConfig, { + devtool: 'source-map', + + output: { + path: helpers.root('dist'), + publicPath: '/', + filename: '[name].[hash].js', + chunkFilename: '[id].[hash].chunk.js' + }, + + htmlLoader: { + minimize: false + }, + + plugins: [ + new webpack.NoErrorsPlugin(), + new webpack.optimize.DedupePlugin(), + new webpack.optimize.UglifyJsPlugin({ + mangle: { + keep_fnames: true + } + }), + new ExtractTextPlugin('[name].[hash].css'), + new webpack.DefinePlugin({ + 'process.env': { + 'ENV': JSON.stringify(ENV) + } + }) + ] +}); diff --git a/alarm-analysis/src/main/webapp/config/webpack.test.js b/alarm-analysis/src/main/webapp/config/webpack.test.js new file mode 100644 index 00000000..8a4faeef --- /dev/null +++ b/alarm-analysis/src/main/webapp/config/webpack.test.js @@ -0,0 +1,51 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var helpers = require('./helpers'); + +module.exports = { + devtool: 'inline-source-map', + + resolve: { + extensions: ['', '.ts', '.js'] + }, + + module: { + loaders: [ + { + test: /\.ts$/, + loaders: ['awesome-typescript-loader', 'angular2-template-loader'] + }, + { + test: /\.html$/, + loader: 'html' + + }, + { + test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/, + loader: 'null' + }, + { + test: /\.css$/, + exclude: helpers.root('src', 'app'), + loader: 'null' + }, + { + test: /\.css$/, + include: helpers.root('src', 'app'), + loader: 'raw' + } + ] + } +}; diff --git a/alarm-analysis/src/main/webapp/i18n/en-US.json b/alarm-analysis/src/main/webapp/i18n/en-US.json new file mode 100644 index 00000000..64f7e58e --- /dev/null +++ b/alarm-analysis/src/main/webapp/i18n/en-US.json @@ -0,0 +1,54 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + { + "common_status":"Status", + "common_keyword":"Keyword", + "field_rule_name":"Rulename", + "common_query":"Query", + "common_reset":"Reset", + "common_add":"Add", + "common_total1":"Total ", + "common_total2":" Rules", + "field_create_time":"Createtime", + "field_creator":"Creator", + "field_update_time":"Updatetime", + "common_operator":"Operator", + "common_update":"Update", + "common_off":"OFF", + "common_on":"ON", + "common_delete":"Delete", + "message_is_delete":"Isdelete", + "common_cancel":"Cancel", + "common_confirm":"Confirm", + "option_all":"All", + "common_enabled":"Enabled", + "common_disabled":"Disabled", + "field_description":"Description", + "common_check":"Check", + "common_save":"Save", + "common_file":"File", + "import":"Import", + "file_import":"Drag & drop file here ...", + "common_browse":"Browse", + "common_remove":"Remove", + "modalTitleDefault":"Rule Add", + "closeBtnTitleDefault":"Close", + "modalBodyMessageDefault":"Message Content", + "message_add_rule_success":"Add Success", + "exception_content_error":"Rule Content Error", + "exception_package_error":"Begin With Package", + "warn_delete_info": "only delete in stoped case rule " + +} \ No newline at end of file diff --git a/alarm-analysis/src/main/webapp/i18n/zh-CN.json b/alarm-analysis/src/main/webapp/i18n/zh-CN.json new file mode 100644 index 00000000..ee948267 --- /dev/null +++ b/alarm-analysis/src/main/webapp/i18n/zh-CN.json @@ -0,0 +1,53 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +{ + "common_status":"状态", + "common_keyword":"关键字", + "field_rule_name":"规则名称", + "common_query":"查询", + "common_reset":"重置", + "common_add":"添加", + "common_total1":"共 ", + "common_total2":" 条记录", + "field_create_time":"创建时间", + "field_creator":"创建者", + "field_update_time":"修改时间", + "common_operator":"操作", + "common_update":"修改", + "common_off":"禁用", + "common_on":"启用", + "common_delete":"删除", + "message_is_delete":"是否删除", + "common_cancel":"取消", + "common_confirm":"确认", + "option_all":"全部", + "common_enabled":"已启用", + "common_disabled":"已禁用", + "field_description":"描述", + "common_check":"校验", + "common_save":"保存", + "common_file":"文件", + "import":"导入", + "file_import":"拖放文件到这里 ...", + "common_browse":"浏览", + "common_remove":"移除", + "modalTitleDefault":"规则添加", + "closeBtnTitleDefault":"关闭", + "modalBodyMessageDefault":"消息体", + "message_add_rule_success":"添加成功", + "exception_content_error":"规则内容错误", + "exception_package_error":"规则必须以package开头", + "warn_delete_info":"只能删除处于已停止状态的规则" +} \ No newline at end of file diff --git a/alarm-analysis/src/main/webapp/package.json b/alarm-analysis/src/main/webapp/package.json new file mode 100644 index 00000000..4b4b9edf --- /dev/null +++ b/alarm-analysis/src/main/webapp/package.json @@ -0,0 +1,82 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +{ + "name": "alarm-analysis", + "version": "1.0.0", + "description": "alarm-analysis", + "scripts": { + "start": "webpack-dev-server --inline --progress", + "test": "karma start", + "build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail", + "postinstall": "typings install", + }, + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/angular/angular.io/blob/master/LICENSE" + } + ], + "dependencies": { + "@angular/common": "~2.0.1", + "@angular/compiler": "~2.0.1", + "@angular/core": "~2.0.1", + "@angular/forms": "~2.0.1", + "@angular/http": "~2.0.1", + "@angular/platform-browser": "~2.0.1", + "@angular/platform-browser-dynamic": "~2.0.1", + "@angular/router": "~3.0.1", + "@angular/upgrade": "~2.0.1", + "angular-in-memory-web-api": "~0.1.1", + "bootstrap": "^3.3.7", + "core-js": "^2.4.1", + "ng2-bs3-modal": "^0.10.4", + "ng2-translate": "^4.2.0", + "reflect-metadata": "^0.1.8", + "rxjs": "5.0.0-beta.12", + "systemjs": "0.19.39", + "zone.js": "^0.6.25" + }, + "devDependencies": { + "angular2-template-loader": "^0.4.0", + "awesome-typescript-loader": "^2.2.4", + "css-loader": "^0.23.1", + "extract-text-webpack-plugin": "^1.0.1", + "file-loader": "^0.8.5", + "file-saver": "^1.3.3", + "html-loader": "^0.4.3", + "html-webpack-plugin": "^2.15.0", + "html2canvas": "^0.5.0-beta4", + "jasmine-core": "^2.4.1", + "jquery": "^3.1.1", + "jqueryui": "^1.11.1", + "karma": "^1.2.0", + "karma-jasmine": "^1.0.2", + "karma-sourcemap-loader": "^0.3.7", + "karma-webpack": "^1.8.0", + "ng2-bootstrap": "^1.3.0", + "ng2-bs3-modal": "^0.10.4", + "null-loader": "^0.1.1", + "raw-loader": "^0.5.1", + "restify": "^4.1.1", + "rimraf": "^2.5.2", + "style-loader": "^0.13.1", + "typescript": "2.0.10", + "typings": "^1.3.2", + "util": "^0.10.3", + "webpack": "^1.13.0", + "webpack-dev-server": "^1.14.1", + "webpack-merge": "^0.14.0" + } +} diff --git a/alarm-analysis/src/main/webapp/tsconfig.json b/alarm-analysis/src/main/webapp/tsconfig.json new file mode 100644 index 00000000..57db6567 --- /dev/null +++ b/alarm-analysis/src/main/webapp/tsconfig.json @@ -0,0 +1,27 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "moduleResolution": "node", + "sourceMap": true, + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "removeComments": false, + "noImplicitAny": false, + "suppressImplicitAnyIndexErrors": true + } +} diff --git a/alarm-analysis/src/main/webapp/typings.json b/alarm-analysis/src/main/webapp/typings.json new file mode 100644 index 00000000..34d977ef --- /dev/null +++ b/alarm-analysis/src/main/webapp/typings.json @@ -0,0 +1,22 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +{ + "globalDependencies": { + "bootstrap": "registry:dt/bootstrap#3.3.5+20160726204056", + "core-js": "registry:dt/core-js#0.0.0+20160725163759", + "jasmine": "registry:dt/jasmine#2.2.0+20160621224255", + "node": "registry:dt/node#6.0.0+20160909174046" + } +} diff --git a/alarm-analysis/src/main/webapp/webpack.config.js b/alarm-analysis/src/main/webapp/webpack.config.js new file mode 100644 index 00000000..1992d15a --- /dev/null +++ b/alarm-analysis/src/main/webapp/webpack.config.js @@ -0,0 +1,15 @@ +/* Copyright 2017 ZTE Corporation. + * + *Licensed under the Apache License, Version 2.0 (the "License"); + *you may not use this file except in compliance with the License. + *You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +module.exports = require('./config/webpack.dev.js'); -- cgit 1.2.3-korg