mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 18:22:29 +08:00
added radix rule and changed files to follow rule (#13153)
This commit is contained in:

committed by
Torkel Ödegaard

parent
5d87aa2fa4
commit
2b74b1c4d6
@ -16,7 +16,7 @@ export function parseTime(value, isUtc = false, asString = false) {
|
|||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
if (!isNaN(value)) {
|
if (!isNaN(value)) {
|
||||||
const epoch = parseInt(value);
|
const epoch = parseInt(value, 10);
|
||||||
const m = isUtc ? moment.utc(epoch) : moment(epoch);
|
const m = isUtc ? moment.utc(epoch) : moment(epoch);
|
||||||
return asString ? m.format(DATE_FORMAT) : m;
|
return asString ? m.format(DATE_FORMAT) : m;
|
||||||
}
|
}
|
||||||
|
@ -111,7 +111,7 @@ export function describeTextRange(expr: any) {
|
|||||||
const parts = /^now([-+])(\d+)(\w)/.exec(expr);
|
const parts = /^now([-+])(\d+)(\w)/.exec(expr);
|
||||||
if (parts) {
|
if (parts) {
|
||||||
const unit = parts[3];
|
const unit = parts[3];
|
||||||
const amount = parseInt(parts[2]);
|
const amount = parseInt(parts[2], 10);
|
||||||
const span = spans[unit];
|
const span = spans[unit];
|
||||||
if (span) {
|
if (span) {
|
||||||
opt.display = isLast ? 'Last ' : 'Next ';
|
opt.display = isLast ? 'Last ' : 'Next ';
|
||||||
|
@ -70,7 +70,7 @@ export class TimeSrv {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isNaN(value)) {
|
if (!isNaN(value)) {
|
||||||
const epoch = parseInt(value);
|
const epoch = parseInt(value, 10);
|
||||||
return moment.utc(epoch);
|
return moment.utc(epoch);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ export class DashboardViewState {
|
|||||||
|
|
||||||
getQueryStringState() {
|
getQueryStringState() {
|
||||||
const state = this.$location.search();
|
const state = this.$location.search();
|
||||||
state.panelId = parseInt(state.panelId) || null;
|
state.panelId = parseInt(state.panelId, 10) || null;
|
||||||
state.fullscreen = state.fullscreen ? true : null;
|
state.fullscreen = state.fullscreen ? true : null;
|
||||||
state.edit = state.edit === 'true' || state.edit === true || null;
|
state.edit = state.edit === 'true' || state.edit === true || null;
|
||||||
state.editview = state.editview || null;
|
state.editview = state.editview || null;
|
||||||
|
@ -12,7 +12,7 @@ export class SoloPanelCtrl {
|
|||||||
appEvents.emit('toggle-sidemenu-hidden');
|
appEvents.emit('toggle-sidemenu-hidden');
|
||||||
|
|
||||||
const params = $location.search();
|
const params = $location.search();
|
||||||
panelId = parseInt(params.panelId);
|
panelId = parseInt(params.panelId, 10);
|
||||||
|
|
||||||
$scope.onAppEvent('dashboard-initialized', $scope.initPanelScope);
|
$scope.onAppEvent('dashboard-initialized', $scope.initPanelScope);
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ export class PlaylistEditCtrl {
|
|||||||
filterFoundPlaylistItems() {
|
filterFoundPlaylistItems() {
|
||||||
this.filteredDashboards = _.reject(this.dashboardresult, playlistItem => {
|
this.filteredDashboards = _.reject(this.dashboardresult, playlistItem => {
|
||||||
return _.find(this.playlistItems, listPlaylistItem => {
|
return _.find(this.playlistItems, listPlaylistItem => {
|
||||||
return parseInt(listPlaylistItem.value) === playlistItem.id;
|
return parseInt(listPlaylistItem.value, 10) === playlistItem.id;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -208,7 +208,7 @@ export class ElasticBucketAggCtrl {
|
|||||||
const id = _.reduce(
|
const id = _.reduce(
|
||||||
$scope.target.bucketAggs.concat($scope.target.metrics),
|
$scope.target.bucketAggs.concat($scope.target.metrics),
|
||||||
(max, val) => {
|
(max, val) => {
|
||||||
return parseInt(val.id) > max ? parseInt(val.id) : max;
|
return parseInt(val.id, 10) > max ? parseInt(val.id, 10) : max;
|
||||||
},
|
},
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
@ -177,7 +177,7 @@ export class ElasticMetricAggCtrl {
|
|||||||
const id = _.reduce(
|
const id = _.reduce(
|
||||||
$scope.target.bucketAggs.concat($scope.target.metrics),
|
$scope.target.bucketAggs.concat($scope.target.metrics),
|
||||||
(max, val) => {
|
(max, val) => {
|
||||||
return parseInt(val.id) > max ? parseInt(val.id) : max;
|
return parseInt(val.id, 10) > max ? parseInt(val.id, 10) : max;
|
||||||
},
|
},
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
@ -314,7 +314,7 @@ export default class InfluxDatasource {
|
|||||||
|
|
||||||
const parts = /^now-(\d+)([d|h|m|s])$/.exec(date);
|
const parts = /^now-(\d+)([d|h|m|s])$/.exec(date);
|
||||||
if (parts) {
|
if (parts) {
|
||||||
const amount = parseInt(parts[1]);
|
const amount = parseInt(parts[1], 10);
|
||||||
const unit = parts[2];
|
const unit = parts[2];
|
||||||
return 'now() - ' + amount + unit;
|
return 'now() - ' + amount + unit;
|
||||||
}
|
}
|
||||||
|
@ -408,11 +408,11 @@ export default class OpenTsDatasource {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (target.counterMax && target.counterMax.length) {
|
if (target.counterMax && target.counterMax.length) {
|
||||||
query.rateOptions.counterMax = parseInt(target.counterMax);
|
query.rateOptions.counterMax = parseInt(target.counterMax, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (target.counterResetValue && target.counterResetValue.length) {
|
if (target.counterResetValue && target.counterResetValue.length) {
|
||||||
query.rateOptions.resetValue = parseInt(target.counterResetValue);
|
query.rateOptions.resetValue = parseInt(target.counterResetValue, 10);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tsdbVersion >= 2) {
|
if (tsdbVersion >= 2) {
|
||||||
|
@ -37,7 +37,7 @@ export class ResultTransformer {
|
|||||||
|
|
||||||
metricLabel = this.createMetricLabel(metricData.metric, options);
|
metricLabel = this.createMetricLabel(metricData.metric, options);
|
||||||
|
|
||||||
const stepMs = parseInt(options.step) * 1000;
|
const stepMs = parseInt(options.step, 10) * 1000;
|
||||||
let baseTimestamp = start * 1000;
|
let baseTimestamp = start * 1000;
|
||||||
|
|
||||||
if (metricData.values === undefined) {
|
if (metricData.values === undefined) {
|
||||||
|
@ -53,7 +53,7 @@ export class ThresholdManager {
|
|||||||
function stopped() {
|
function stopped() {
|
||||||
// calculate graph level
|
// calculate graph level
|
||||||
let graphValue = plot.c2p({ left: 0, top: posTop }).y;
|
let graphValue = plot.c2p({ left: 0, top: posTop }).y;
|
||||||
graphValue = parseInt(graphValue.toFixed(0));
|
graphValue = parseInt(graphValue.toFixed(0), 10);
|
||||||
model.value = graphValue;
|
model.value = graphValue;
|
||||||
|
|
||||||
handleElem.off('mousemove', dragging);
|
handleElem.off('mousemove', dragging);
|
||||||
|
@ -271,7 +271,7 @@ function pushToYBuckets(buckets, bucketNum, value, point, bounds) {
|
|||||||
let count = 1;
|
let count = 1;
|
||||||
// Use the 3rd argument as scale/count
|
// Use the 3rd argument as scale/count
|
||||||
if (point.length > 3) {
|
if (point.length > 3) {
|
||||||
count = parseInt(point[2]);
|
count = parseInt(point[2], 10);
|
||||||
}
|
}
|
||||||
if (buckets[bucketNum]) {
|
if (buckets[bucketNum]) {
|
||||||
buckets[bucketNum].values.push(value);
|
buckets[bucketNum].values.push(value);
|
||||||
|
@ -493,7 +493,7 @@ class SingleStatCtrl extends MetricsPanelCtrl {
|
|||||||
|
|
||||||
const bgColor = config.bootData.user.lightTheme ? 'rgb(230,230,230)' : 'rgb(38,38,38)';
|
const bgColor = config.bootData.user.lightTheme ? 'rgb(230,230,230)' : 'rgb(38,38,38)';
|
||||||
|
|
||||||
const fontScale = parseInt(panel.valueFontSize) / 100;
|
const fontScale = parseInt(panel.valueFontSize, 10) / 100;
|
||||||
const fontSize = Math.min(dimension / 5, 100) * fontScale;
|
const fontSize = Math.min(dimension / 5, 100) * fontScale;
|
||||||
// Reduce gauge width if threshold labels enabled
|
// Reduce gauge width if threshold labels enabled
|
||||||
const gaugeWidthReduceRatio = panel.gauge.thresholdLabels ? 1.5 : 1;
|
const gaugeWidthReduceRatio = panel.gauge.thresholdLabels ? 1.5 : 1;
|
||||||
|
@ -51,7 +51,7 @@
|
|||||||
"one-line": [true, "check-open-brace", "check-catch", "check-else"],
|
"one-line": [true, "check-open-brace", "check-catch", "check-else"],
|
||||||
"only-arrow-functions": [true, "allow-declarations", "allow-named-functions"],
|
"only-arrow-functions": [true, "allow-declarations", "allow-named-functions"],
|
||||||
"prefer-const": true,
|
"prefer-const": true,
|
||||||
"radix": false,
|
"radix": true,
|
||||||
"typedef-whitespace": [
|
"typedef-whitespace": [
|
||||||
true,
|
true,
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user