refactor(lodash): changed how lodash is referenced from typescript

pull/3598/head
Torkel Ödegaard 10 years ago
parent e95170e9fd
commit f074c1eaff
  1. 6
      public/app/core/controllers/grafana_ctrl.ts
  2. 4
      public/app/core/controllers/signup_ctrl.ts
  3. 3
      public/app/core/directives/array_join.ts
  4. 5
      public/app/core/filters/filters.ts
  5. 4
      public/app/core/time_series2.ts
  6. 2
      public/app/core/utils/datemath.ts
  7. 3
      public/app/core/utils/rangeutil.ts
  8. 6
      public/app/features/dashboard/timepicker/timepicker.ts
  9. 6
      public/app/grafana.ts
  10. 39
      public/app/headers/common.d.ts
  11. 2
      public/app/plugins/datasource/influxdb/influx_query.ts
  12. 2
      public/app/plugins/datasource/influxdb/query_part.ts
  13. 7
      public/app/plugins/panels/table/controller.ts
  14. 5
      public/app/plugins/panels/table/editor.ts
  15. 2
      public/app/plugins/panels/table/module.ts
  16. 4
      public/app/plugins/panels/table/renderer.ts
  17. 4
      public/app/plugins/panels/table/transformers.ts
  18. 2
      public/test/core/utils/datemath_specs.ts
  19. 2
      public/test/core/utils/rangeutil_specs.ts

@ -1,8 +1,8 @@
///<reference path="../../headers/common.d.ts" />
import config = require('app/core/config');
import store = require('app/core/store');
import config from 'app/core/config';
import store from 'app/core/store';
import _ from 'lodash';
import angular from 'angular';
import $ from 'jquery';
import coreModule from '../core_module';

@ -1,7 +1,7 @@
///<reference path="../../headers/common.d.ts" />
import angular = require('angular');
import config = require('app/core/config');
import angular from 'angular';
import config from 'app/core/config';
import coreModule from '../core_module';
export class SignUpCtrl {

@ -1,7 +1,6 @@
///<reference path="../../headers/common.d.ts" />
import _ = require('lodash');
import _ from 'lodash';
import angular from 'angular';
import coreModule from '../core_module';

@ -1,8 +1,7 @@
///<reference path="../../headers/common.d.ts" />
import jquery = require('jquery');
import _ = require('lodash');
import jquery from 'jquery';
import _ from 'lodash';
import angular from 'angular';
import moment from 'moment';
import coreModule from '../core_module';

@ -1,7 +1,7 @@
///<reference path="../headers/common.d.ts" />
import _ = require('lodash');
import kbn = require('app/core/utils/kbn');
import kbn from 'app/core/utils/kbn';
import _ from 'lodash';
function matchSeriesOverride(aliasOrRegex, seriesAlias) {
if (!aliasOrRegex) { return false; }

@ -1,6 +1,6 @@
///<reference path="../../headers/common.d.ts" />
import _ = require('lodash');
import _ from 'lodash';
import moment from 'moment';
var units = ['y', 'M', 'w', 'd', 'h', 'm', 's'];

@ -1,7 +1,6 @@
///<reference path="../../headers/common.d.ts" />
import _ = require('lodash');
import _ from 'lodash';
import angular from 'angular';
import moment from 'moment';
import * as dateMath from './datemath';

@ -1,11 +1,11 @@
///<reference path="../../../headers/common.d.ts" />
///<amd-dependency path="./input_date" name="inputDate" />
import _ = require('lodash');
import kbn = require('app/core/utils/kbn');
import _ from 'lodash';
import kbn from 'app/core/utils/kbn';
import angular from 'angular';
import moment from 'moment';
import * as dateMath from 'app/core/utils/datemath';
import * as rangeUtil from 'app/core/utils/rangeutil';

@ -12,10 +12,8 @@ import 'app/core/core';
import $ from 'jquery';
import angular from 'angular';
import _ = require('lodash');
import bootstrap = require('bootstrap');
import kbn = require('app/core/utils/kbn');
import config = require('app/core/config');
import config from 'app/core/config';
import _ from 'lodash';
export class GrafanaApp {
registerFunctions: any;

@ -1,17 +1,21 @@
///<reference path="lodash/lodash.d.ts" />
///<reference path="../../vendor/npm/angular2/typings/tsd.d.ts" />
///<reference path="../../vendor/npm/angular2/manual_typings/globals.d.ts" />
declare var System: any;
// dummy modules
declare module 'app/core/config' {
var config : any;
export = config;
export default config;
}
declare var System: any;
declare module 'lodash' {
var lodash: any;
export default lodash;
}
declare module 'moment' {
var moment : any;
var moment: any;
export default moment;
}
@ -27,35 +31,12 @@ declare module 'jquery' {
declare module 'app/core/utils/kbn' {
var kbn: any;
export = kbn;
export default kbn;
}
declare module 'app/core/store' {
var store : any;
export = store;
}
declare module 'angular-route' {
var kbn : any;
export = kbn;
export default store;
}
declare module 'angular-sanitize' {
var kbn : any;
export = kbn;
}
declare module 'bootstrap' {
var kbn : any;
export = kbn;
}
declare module 'angular-strap' {
var kbn : any;
export = kbn;
}
declare module 'angular-dragdrop' {
var kbn : any;
export = kbn;
}

@ -1,6 +1,6 @@
///<reference path="../../../headers/common.d.ts" />
import _ = require('lodash');
import _ from 'lodash';
import queryPart from './query_part';
export default class InfluxQuery {

@ -1,6 +1,6 @@
///<reference path="../../../headers/common.d.ts" />
import _ = require('lodash');
import _ from 'lodash';
var index = [];
var categories = {

@ -1,10 +1,9 @@
///<reference path="../../../headers/common.d.ts" />
import angular = require('angular');
import _ = require('lodash');
import moment = require('moment');
import angular from 'angular';
import _ from 'lodash';
import moment from 'moment';
import PanelMeta from 'app/features/panel/panel_meta2';
import {transformDataToTable} from './transformers';
export class TablePanelCtrl {

@ -1,12 +1,13 @@
///<reference path="../../../headers/common.d.ts" />
import _ = require('lodash');
import kbn = require('app/core/utils/kbn');
import _ from 'lodash';
import $ from 'jquery';
import moment from 'moment';
import angular from 'angular';
import {transformers} from './transformers';
import kbn from 'app/core/utils/kbn';
export class TablePanelEditorCtrl {

@ -1,8 +1,8 @@
///<reference path="../../../headers/common.d.ts" />
import _ = require('lodash');
import kbn = require('app/core/utils/kbn');
import _ from 'lodash';
import $ from 'jquery';
import moment from 'moment';
import angular from 'angular';

@ -1,8 +1,8 @@
///<reference path="../../../headers/common.d.ts" />
import _ = require('lodash');
import kbn = require('app/core/utils/kbn');
import _ from 'lodash';
import moment from 'moment';
import kbn from 'app/core/utils/kbn';
export class TableRenderer {
formaters: any[];

@ -1,7 +1,7 @@
///<reference path="../../../headers/common.d.ts" />
import moment = require('moment');
import _ = require('lodash');
import _ from 'lodash';
import moment from 'moment';
import flatten from '../../../core/utils/flatten';
import TimeSeries from '../../../core/time_series2';
import TableModel from '../../../core/table_model';

@ -1,8 +1,8 @@
import {describe, beforeEach, it, sinon, expect} from 'test/lib/common'
import * as dateMath from 'app/core/utils/datemath';
import * as _ from 'lodash';
import moment from 'moment';
import _ from 'lodash';
describe("DateMath", () => {
var spans = ['s', 'm', 'h', 'd', 'w', 'M', 'y'];

@ -1,7 +1,7 @@
import {describe, beforeEach, it, sinon, expect} from 'test/lib/common'
import * as rangeUtil from 'app/core/utils/rangeutil';
import * as _ from 'lodash';
import _ from 'lodash';
import moment from 'moment';
describe("rangeUtil", () => {

Loading…
Cancel
Save