mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-05 05:25:49 +01:00
This commit is contained in:
@@ -145,6 +145,9 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
|
||||
var t = translator.Translator.create();
|
||||
Promise.all([
|
||||
t.translateKey('admin/general/dashboard:graphs.page-views', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.page-views-registered', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.page-views-guest', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.page-views-bot', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.unique-visitors', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.registered-users', []),
|
||||
t.translateKey('admin/general/dashboard:graphs.anonymous-users', []),
|
||||
@@ -169,6 +172,36 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
|
||||
},
|
||||
{
|
||||
label: translations[1],
|
||||
backgroundColor: 'rgba(220,110,110,0.2)',
|
||||
borderColor: 'rgba(220,110,110,1)',
|
||||
pointBackgroundColor: 'rgba(220,110,110,1)',
|
||||
pointHoverBackgroundColor: '#fff',
|
||||
pointBorderColor: '#fff',
|
||||
pointHoverBorderColor: 'rgba(220,220,220,1)',
|
||||
data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
||||
},
|
||||
{
|
||||
label: translations[2],
|
||||
backgroundColor: 'rgba(220,220,220,0.2)',
|
||||
borderColor: 'rgba(220,220,220,1)',
|
||||
pointBackgroundColor: 'rgba(220,220,220,1)',
|
||||
pointHoverBackgroundColor: '#fff',
|
||||
pointBorderColor: '#fff',
|
||||
pointHoverBorderColor: 'rgba(220,220,220,1)',
|
||||
data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
||||
},
|
||||
{
|
||||
label: translations[3],
|
||||
backgroundColor: 'rgba(220,220,220,0.2)',
|
||||
borderColor: 'rgba(220,220,220,1)',
|
||||
pointBackgroundColor: 'rgba(220,220,220,1)',
|
||||
pointHoverBackgroundColor: '#fff',
|
||||
pointBorderColor: '#fff',
|
||||
pointHoverBorderColor: 'rgba(220,220,220,1)',
|
||||
data: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
||||
},
|
||||
{
|
||||
label: translations[4],
|
||||
backgroundColor: 'rgba(151,187,205,0.2)',
|
||||
borderColor: 'rgba(151,187,205,1)',
|
||||
pointBackgroundColor: 'rgba(151,187,205,1)',
|
||||
@@ -215,7 +248,7 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
|
||||
position: 'right',
|
||||
scaleLabel: {
|
||||
display: true,
|
||||
labelString: translations[1],
|
||||
labelString: translations[4],
|
||||
},
|
||||
}],
|
||||
},
|
||||
@@ -415,7 +448,10 @@ define('admin/general/dashboard', ['semver', 'Chart', 'translator', 'benchpress'
|
||||
}
|
||||
|
||||
graphs.traffic.data.datasets[0].data = data.pageviews;
|
||||
graphs.traffic.data.datasets[1].data = data.uniqueVisitors;
|
||||
graphs.traffic.data.datasets[1].data = data.pageviewsRegistered;
|
||||
graphs.traffic.data.datasets[2].data = data.pageViewsGuest;
|
||||
graphs.traffic.data.datasets[3].data = data.pageViewsBot;
|
||||
graphs.traffic.data.datasets[4].data = data.uniqueVisitors;
|
||||
graphs.traffic.data.labels = graphs.traffic.data.xLabels;
|
||||
|
||||
graphs.traffic.update();
|
||||
|
||||
Reference in New Issue
Block a user