Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
radegast
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jan Hrabal
radegast
Commits
58b208b0
Commit
58b208b0
authored
Jul 13, 2019
by
jhrabal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gui
parent
4220d743
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
96 additions
and
147 deletions
+96
-147
index.js
frontend/app/components/DoughnutChartLegend/index.js
+1
-1
messages-cs.json
frontend/app/components/FetchedContent/messages-cs.json
+0
-36
index.js
frontend/app/components/RatingBarChart/index.js
+27
-18
messages.js
frontend/app/components/RatingBarChart/messages.js
+13
-0
index.js
frontend/app/components/RatingPieChart/index.js
+25
-68
messages.js
frontend/app/components/RatingPieChart/messages.js
+9
-0
style.scss
frontend/app/components/RatingPieChart/style.scss
+0
-0
messages.js
frontend/app/components/StatusChart/messages.js
+0
-22
index.js
frontend/app/containers/Home/index.js
+21
-2
cs.js
frontend/app/translations/cs.js
+0
-0
en.js
frontend/app/translations/en.js
+0
-0
No files found.
frontend/app/components/DoughnutChartLegend/index.js
View file @
58b208b0
...
...
@@ -53,7 +53,7 @@ export default ({ labels, colors, values, percents, currency, i18n, useChartColo
<
/div>
<
div
className
=
"values"
>
<
div
className
=
"value"
style
=
{
useChartColors
?
{
color
:
color
}
:
null
}
>
{
formatMoney
(
value
,
currency
,
i18n
)
}
{
value
}
<
/div>
{
percent
}
<
/div>
...
...
frontend/app/components/FetchedContent/messages-cs.json
deleted
100644 → 0
View file @
4220d743
{
"changed"
:
{},
"translated"
:
{
"emptyListMain"
:
{
"id"
:
"components.FetchedContent.emptyListMain"
,
"message"
:
"Prázdný seznam"
,
"defaultMessage"
:
"This list is empty"
,
"version"
:
1549353832408
},
"emptyListSecondary"
:
{
"id"
:
"components.FetchedContent.emptyListSecondary"
,
"message"
:
"Nemáme zde co zobrazit. Chcete přidat nějaké položky?"
,
"defaultMessage"
:
"We have nothing to display here. Do you want to add some items?"
,
"version"
:
1549353832408
},
"errorMain"
:
{
"id"
:
"components.FetchedContent.errorMain"
,
"message"
:
"Něco se pokazilo"
,
"defaultMessage"
:
"Something went wrong"
,
"version"
:
1549404083272
},
"errorSecondary"
:
{
"id"
:
"components.FetchedContent.errorSecondary"
,
"message"
:
"Nemůžeme získat data"
,
"defaultMessage"
:
"We were unable to fetch the data"
,
"version"
:
1549404083272
},
"errorTryAgainButton"
:
{
"id"
:
"components.FetchedContent.errorTryAgainButton"
,
"message"
:
"Zkusit znova"
,
"defaultMessage"
:
"Try again"
,
"version"
:
1549404083272
}
}
}
\ No newline at end of file
frontend/app/components/RatingBarChart/index.js
View file @
58b208b0
...
...
@@ -2,23 +2,11 @@ import React, { Component } from 'react';
import
{
Bar
,
HorizontalBar
}
from
'react-chartjs-2'
;
import
palette
from
'utils/palette'
;
import
{
injectIntl
}
from
'react-intl'
;
import
messages
from
'./messages.js'
;
const
options
=
{
responsive
:
true
,
animation
:
false
,
maintainAspectRatio
:
false
,
legend
:
{
display
:
false
,
},
tooltips
:
{
display
:
false
,
callbacks
:
{
label
:
()
=>
""
}
},
};
function
emptyLabels
()
{
...
...
@@ -38,8 +26,8 @@ function emptyValues() {
}
export
default
(
props
)
=>
{
let
{
className
,
values
}
=
props
;
export
default
injectIntl
(
(
props
)
=>
{
let
{
className
,
values
,
intl
}
=
props
;
let
empty
=
false
;
if
(
!
values
)
{
...
...
@@ -60,9 +48,30 @@ export default (props) => {
}]
};
const
options
=
{
responsive
:
true
,
animation
:
false
,
maintainAspectRatio
:
false
,
legend
:
{
display
:
false
,
},
tooltips
:
{
display
:
false
,
callbacks
:
{
title
:
function
(
tooltipItem
,
data
)
{
return
intl
.
formatMessage
(
messages
.
title
,
{
rating
:
data
.
labels
[
tooltipItem
[
0
].
index
]
});
},
label
:
function
(
tooltipItem
,
data
)
{
return
intl
.
formatMessage
(
messages
.
value
,
{
count
:
data
.
datasets
[
tooltipItem
.
datasetIndex
].
data
[
tooltipItem
.
index
]
});
}
}
},
};
return
(
<
div
className
=
{
className
}
style
=
{{
minHeight
:
300
}}
>
<
Bar
data
=
{
data
}
options
=
{
options
}
/
>
<
/div
>
);
};
\ No newline at end of file
});
\ No newline at end of file
frontend/app/components/RatingBarChart/messages.js
0 → 100644
View file @
58b208b0
export
default
{
title
:
{
id
:
"components.RatingBarChart.title"
,
defaultMessage
:
"Rating {rating}"
},
value
:
{
id
:
"components.RatingBarChart.value"
,
defaultMessage
:
"Count: {count}"
},
}
\ No newline at end of file
frontend/app/components/
Status
Chart/index.js
→
frontend/app/components/
RatingPie
Chart/index.js
View file @
58b208b0
import
React
,
{
Component
}
from
'react'
;
import
{
Doughnut
}
from
'react-chartjs-2'
;
import
DoughnutChartLegend
from
'components/DoughnutChartLegend'
;
import
{
format
Date
,
formatMoney
,
format
Number
,
formatPercent
}
from
'lib/i18n'
;
import
{
formatNumber
,
formatPercent
}
from
'lib/i18n'
;
import
palette
from
'utils/palette'
;
import
{
injectIntl
}
from
'react-intl'
;
...
...
@@ -10,8 +10,8 @@ import messages from './messages.js';
require
(
'./style.scss'
);
const
draftColor
=
"#BABABA"
,
plannedColor
=
"#08acff"
,
finishedColor
=
"#00c900"
,
overdueColor
=
"#ff0707"
,
emptyColor
=
"#DEDEDE"
;
const
emptyColors
=
palette
([
"#BEBEBE"
],
4
);
const
chartColors
=
palette
([
"#4EC3E0"
,
"#1287ED"
],
10
)
;
const
emptyColors
=
palette
([
"#BEBEBE"
],
10
);
let
options
=
{
cutoutPercentage
:
65
,
...
...
@@ -30,7 +30,7 @@ let options = {
function
renderTooltip
(
i18n
,
labels
,
currency
,
empty
)
{
if
(
empty
)
{
return
()
=>
{
return
format
Money
(
0
,
currency
,
i18n
);
return
format
Number
(
0
,
i18n
);
};
}
return
(
tooltipItem
,
data
)
=>
{
...
...
@@ -39,18 +39,21 @@ function renderTooltip(i18n, labels, currency, empty) {
return
previousValue
+
currentValue
;
});
let
currentValue
=
dataset
.
data
[
tooltipItem
.
index
];
return
formatMoney
(
currentValue
,
currency
,
i18n
)
+
" ("
+
formatPercent
(
currentValue
/
total
*
100
,
i18n
)
+
")"
;
return
currentValue
+
" ("
+
formatPercent
(
currentValue
/
total
*
100
,
i18n
)
+
")"
;
}
}
function
renderTitle
(
intl
,
labels
,
empty
)
{
return
(
tooltipItem
,
data
)
=>
{
return
data
.
labels
[
tooltipItem
[
0
].
index
];
}
}
export
default
injectIntl
(({
data
,
empty
,
currency
,
i18n
,
intl
,
className
=
"p10"
,
...
props
})
=>
{
let
{
draftLabel
=
intl
.
formatMessage
(
messages
.
draftLabel
),
activeLabel
=
intl
.
formatMessage
(
messages
.
activeLabel
),
finishedLabel
=
intl
.
formatMessage
(
messages
.
finishedLabel
),
overdueLabel
=
intl
.
formatMessage
(
messages
.
overdueLabel
)
}
=
props
;
let
sums
=
[];
let
vals
=
[];
...
...
@@ -60,74 +63,27 @@ export default injectIntl(({ data, empty, currency, i18n, intl, className = "p10
let
total
=
0
,
val
=
0
;
let
percents
=
[];
if
(
!
data
||
empty
)
{
if
(
draftLabel
)
{
labels
.
push
(
draftLabel
);
colors
.
push
(
emptyColors
[
0
]);
sums
.
push
(
1
);
vals
.
push
(
0
);
}
if
(
activeLabel
)
{
labels
.
push
(
activeLabel
);
colors
.
push
(
emptyColors
[
1
]);
sums
.
push
(
1
);
vals
.
push
(
0
);
}
if
(
finishedLabel
)
{
labels
.
push
(
finishedLabel
);
colors
.
push
(
emptyColors
[
2
]);
sums
.
push
(
1
);
vals
.
push
(
0
);
for
(
let
i
=
10
;
i
>
0
;
i
--
)
{
labels
.
push
(
intl
.
formatMessage
(
messages
.
rating
,
{
rating
:
i
}));
}
if
(
overdueLabel
)
{
labels
.
push
(
overdueLabel
)
;
colors
.
push
(
emptyColors
[
3
]);
if
(
!
data
||
empty
)
{
colors
=
emptyColors
;
for
(
let
i
=
10
;
i
>
0
;
i
--
)
{
sums
.
push
(
1
);
vals
.
push
(
0
);
}
sums
.
map
(
s
=>
percents
.
push
(
0
));
}
else
{
if
(
draftLabel
)
{
labels
.
push
(
draftLabel
);
colors
.
push
(
draftColor
);
val
=
data
.
draft
||
0
;
colors
=
chartColors
;
for
(
let
i
=
10
;
i
>
0
;
i
--
)
{
val
=
data
[
i
]
||
0
;
sums
.
push
(
val
);
vals
.
push
(
val
);
total
+=
val
;
}
if
(
activeLabel
)
{
labels
.
push
(
activeLabel
);
colors
.
push
(
plannedColor
);
val
=
data
.
active
||
0
;
sums
.
push
(
val
);
vals
.
push
(
val
);
total
+=
val
;
}
if
(
finishedLabel
)
{
labels
.
push
(
finishedLabel
);
colors
.
push
(
finishedColor
);
val
=
data
.
finished
||
0
;
sums
.
push
(
val
);
vals
.
push
(
val
);
total
+=
val
;
}
if
(
overdueLabel
)
{
labels
.
push
(
overdueLabel
);
colors
.
push
(
overdueColor
);
val
=
data
.
overdue
||
0
;
vals
.
push
(
val
);
sums
.
push
(
val
);
total
+=
val
;
}
if
(
total
==
0
)
{
sums
.
forEach
(
s
=>
percents
.
push
(
0
));
sums
=
sums
.
map
(
s
=>
1
);
...
...
@@ -150,17 +106,18 @@ export default injectIntl(({ data, empty, currency, i18n, intl, className = "p10
};
let
tooltip
=
renderTooltip
(
i18n
,
labels
,
currency
,
total
==
0
||
empty
||
!
data
);
let
title
=
renderTitle
(
intl
,
labels
,
total
==
0
||
empty
||
!
data
);
return
(
<
div
className
=
{
className
}
>
<
div
className
=
"status-chart"
>
<
div
>
<
div
className
=
"status-chart-div"
>
<
Doughnut
data
=
{
chartData
}
options
=
{
{
...
options
,
tooltips
:
{
callbacks
:
{
label
:
tooltip
}}
}
}
redraw
=
{
true
}
/>
<
Doughnut
data
=
{
chartData
}
options
=
{
{
...
options
,
tooltips
:
{
callbacks
:
{
label
:
tooltip
,
title
:
title
}}
}
}
redraw
=
{
true
}
/>
<
/div>
<
/div>
<
div
>
<
DoughnutChartLegend
labels
=
{
labels
}
colors
=
{
colors
}
values
=
{
vals
}
percents
=
{
percents
}
currency
=
{
currency
}
i18n
=
{
i18n
}
useChartColors
/>
<
DoughnutChartLegend
labels
=
{
labels
}
colors
=
{
colors
}
values
=
{
vals
}
percents
=
{
percents
}
i18n
=
{
i18n
}
useChartColors
/>
<
/div>
<
/div>
<
/div>
...
...
frontend/app/components/RatingPieChart/messages.js
0 → 100644
View file @
58b208b0
export
default
{
rating
:
{
id
:
"components.StatusChart.rating"
,
defaultMessage
:
"Rating {rating}"
},
}
\ No newline at end of file
frontend/app/components/
Status
Chart/style.scss
→
frontend/app/components/
RatingPie
Chart/style.scss
View file @
58b208b0
File moved
frontend/app/components/StatusChart/messages.js
deleted
100644 → 0
View file @
4220d743
export
default
{
draftLabel
:
{
id
:
"components.StatusChart.draftLabel"
,
defaultMessage
:
"Draft"
},
activeLabel
:
{
id
:
"components.StatusChart.activeLabel"
,
defaultMessage
:
"Active"
},
finishedLabel
:
{
id
:
"components.StatusChart.finishedLabel"
,
defaultMessage
:
"Finished"
},
overdueLabel
:
{
id
:
"components.StatusChart.overdueLabel"
,
defaultMessage
:
"Overdue"
},
}
\ No newline at end of file
frontend/app/containers/Home/index.js
View file @
58b208b0
...
...
@@ -8,7 +8,7 @@ import { fetchStatsAction, fetchRatingsAction, selector } from './redux.js';
import
{
PageTitle
,
ActivityIndicator
,
Info
,
MessagePanel
,
SummaryPanel
,
ToolbarButton
,
Toolbar
,
ToolbarSection
,
ToolbarButtons
,
ToolbarRow
,
PageSwitcher
}
from
'lib/components'
;
//components
import
StatusChart
from
'components/Status
Chart'
;
import
RatingPieChart
from
'components/RatingPie
Chart'
;
import
RatingBarChart
from
'components/RatingBarChart'
;
import
CopyrightInfo
from
'components/CopyrightInfo'
;
import
FetchedContent
,
{
ErrorInfo
}
from
'components/FetchedContent'
;
...
...
@@ -18,7 +18,6 @@ import { injectIntl } from 'react-intl';
import
{
formatMoney
,
formatDate
,
formatNumber
}
from
'lib/i18n'
;
import
{
settingsSelector
}
from
'utils/settings'
;
import
{
Doughnut
,
HorizontalBar
}
from
'react-chartjs-2'
;
import
palette
from
'utils/palette'
;
import
icons
from
'constants/icons'
;
import
messages
from
'./messages.js'
;
...
...
@@ -161,6 +160,25 @@ DashboardBarChart = connect(settingsSelector((state, props) => state.getIn(["hom
DashboardBarChart
=
injectIntl
(
DashboardBarChart
);
class
DashboardPieChart
extends
Component
{
render
()
{
let
{
data
,
status
,
i18n
,
intl
,
className
}
=
this
.
props
;
if
(
!
data
)
{
data
=
{};
}
return
(
<
div
>
{
status
==
"failed"
?
<
ErrorInfo
/>
:
<
RatingPieChart
data
=
{
data
.
values
}
empty
=
{
!
data
.
ratings
}
/> }
<
ActivityIndicator
show
=
{
status
==
"pending"
}
type
=
"overlay"
/>
<
/div>
);
}
}
DashboardPieChart
=
connect
(
settingsSelector
((
state
,
props
)
=>
state
.
getIn
([
"home"
,
"stats"
]).
toJS
()),
(
dispatch
)
=>
({}))(
DashboardPieChart
);
DashboardPieChart
=
injectIntl
(
DashboardPieChart
);
class
Home
extends
Component
{
...
...
@@ -235,6 +253,7 @@ class Home extends Component {
<
/div>
<
div
className
=
"p10"
>
<
DashboardBarChart
i18n
=
{
i18n
}
onRefresh
=
{
this
.
init
}
/>
<
DashboardPieChart
i18n
=
{
i18n
}
onRefresh
=
{
this
.
init
}
/>
<
/div>
<
/div>
<
/div>
...
...
frontend/app/translations/cs.js
View file @
58b208b0
This diff is collapsed.
Click to expand it.
frontend/app/translations/en.js
View file @
58b208b0
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment