Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pro-blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
pro-blocks
Commits
061a1e7d
Commit
061a1e7d
authored
Apr 15, 2019
by
陈帅
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
type: beter type
parent
278a1ce9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
116 additions
and
97 deletions
+116
-97
Analysis/src/components/Charts/Pie/index.tsx
Analysis/src/components/Charts/Pie/index.tsx
+26
-13
Analysis/src/components/OfflineData.tsx
Analysis/src/components/OfflineData.tsx
+30
-28
Analysis/src/components/ProportionSales.tsx
Analysis/src/components/ProportionSales.tsx
+52
-50
Analysis/src/utils/Yuan.tsx
Analysis/src/utils/Yuan.tsx
+8
-6
No files found.
Analysis/src/components/Charts/Pie/index.tsx
View file @
061a1e7d
...
...
@@ -34,14 +34,10 @@ export interface IPieProps {
valueFormat
?:
(
value
:
string
)
=>
string
|
React
.
ReactNode
;
subTitle
?:
React
.
ReactNode
;
}
/* eslint react/no-danger:0 */
interface
IPieState
{
legendData
:
Array
<
{
checked
:
boolean
;
x
:
string
;
color
:
string
;
percent
:
number
;
y
:
string
}
>
;
legendBlock
:
boolean
;
}
class
Pie
extends
Component
<
IPieProps
,
IPieState
>
{
state
:
IPieState
=
{
legendData
:
[],
...
...
@@ -74,8 +70,10 @@ class Pie extends Component<IPieProps, IPieState> {
window
.
cancelAnimationFrame
(
this
.
requestRef
);
}
window
.
removeEventListener
(
'
resize
'
,
this
.
resize
);
if
(
this
.
resize
)
{
(
this
.
resize
as
any
).
cancel
();
}
}
getG2Instance
=
(
chart
:
G2
.
Chart
)
=>
{
this
.
chart
=
chart
;
...
...
@@ -85,8 +83,6 @@ class Pie extends Component<IPieProps, IPieState> {
});
};
root
!
:
HTMLDivElement
;
chart
:
G2
.
Chart
|
undefined
;
// for custom lengend view
getLegendData
=
()
=>
{
if
(
!
this
.
chart
)
return
;
...
...
@@ -94,7 +90,7 @@ class Pie extends Component<IPieProps, IPieState> {
if
(
!
geom
)
return
;
const
items
=
geom
.
get
(
'
dataArray
'
)
||
[];
// 获取图形对应的
const
legendData
=
items
.
map
((
item
:
Array
<
any
>
)
=>
{
const
legendData
=
items
.
map
((
item
:
{
color
:
any
;
_origin
:
any
}[]
)
=>
{
/* eslint no-underscore-dangle:0 */
const
origin
=
item
[
0
].
_origin
;
origin
.
color
=
item
[
0
].
color
;
...
...
@@ -106,7 +102,6 @@ class Pie extends Component<IPieProps, IPieState> {
legendData
,
});
};
handleRoot
=
(
n
:
HTMLDivElement
)
=>
{
this
.
root
=
n
;
};
...
...
@@ -128,6 +123,8 @@ class Pie extends Component<IPieProps, IPieState> {
legendData
,
});
};
root
!
:
HTMLDivElement
;
chart
:
G2
.
Chart
|
undefined
;
// for window resize auto responsive legend
@
Bind
()
...
...
@@ -139,7 +136,11 @@ class Pie extends Component<IPieProps, IPieState> {
window
.
removeEventListener
(
'
resize
'
,
this
.
resize
);
return
;
}
if
((
this
.
root
!
.
parentNode
!
as
HTMLDivElement
).
clientWidth
<=
380
)
{
if
(
this
.
root
&&
this
.
root
.
parentNode
&&
(
this
.
root
.
parentNode
as
HTMLElement
).
clientWidth
<=
380
)
{
if
(
!
legendBlock
)
{
this
.
setState
({
legendBlock
:
true
,
...
...
@@ -160,11 +161,13 @@ class Pie extends Component<IPieProps, IPieState> {
hasLegend
=
false
,
className
,
style
,
height
=
1
,
height
=
0
,
forceFit
=
true
,
percent
,
color
,
inner
=
0.75
,
animate
=
true
,
colors
,
lineWidth
=
1
,
}
=
this
.
props
;
...
...
@@ -183,9 +186,12 @@ class Pie extends Component<IPieProps, IPieState> {
let
data
=
propsData
||
[];
let
selected
=
propsSelected
;
let
tooltip
=
propsTooltip
;
const
defaultColors
=
colors
;
data
=
data
||
[];
selected
=
selected
||
true
;
tooltip
=
tooltip
||
true
;
let
formatColor
;
const
scale
=
{
x
:
{
...
...
@@ -200,6 +206,12 @@ class Pie extends Component<IPieProps, IPieState> {
if
(
percent
||
percent
===
0
)
{
selected
=
false
;
tooltip
=
false
;
formatColor
=
(
value
:
string
)
=>
{
if
(
value
===
'
占比
'
)
{
return
color
||
'
rgba(24, 144, 255, 0.85)
'
;
}
return
'
#F0F2F5
'
;
};
data
=
[
{
...
...
@@ -221,7 +233,7 @@ class Pie extends Component<IPieProps, IPieState> {
}),
];
const
padding
:
[
number
,
number
,
number
,
number
]
=
[
12
,
0
,
12
,
0
];
const
padding
=
[
12
,
0
,
12
,
0
]
as
[
number
,
number
,
number
,
number
];
const
dv
=
new
DataView
();
dv
.
source
(
data
).
transform
({
...
...
@@ -248,9 +260,10 @@ class Pie extends Component<IPieProps, IPieState> {
<
Coord
type
=
"theta"
innerRadius
=
{
inner
}
/>
<
Geom
style
=
{
{
lineWidth
,
stroke
:
'
#fff
'
}
}
tooltip
=
{
tooltip
&&
tooltipFormat
}
tooltip
=
{
tooltip
?
tooltipFormat
:
undefined
}
type
=
"intervalStack"
position
=
"percent"
color
=
{
[
'
x
'
,
percent
||
percent
===
0
?
formatColor
:
defaultColors
]
as
any
}
selected
=
{
selected
}
/>
</
Chart
>
...
...
Analysis/src/components/OfflineData.tsx
View file @
061a1e7d
...
...
@@ -13,7 +13,8 @@ const CustomTab = ({
}:
{
data
:
IOfflineData
;
currentTabKey
:
string
;
})
=>
(
})
=>
{
return
(
<
Row
gutter
=
{
8
}
style
=
{
{
width
:
138
,
margin
:
'
8px 0
'
}
}
>
<
Col
span
=
{
12
}
>
<
NumberInfo
...
...
@@ -40,7 +41,8 @@ const CustomTab = ({
/>
</
Col
>
</
Row
>
);
);
};
const
{
TabPane
}
=
Tabs
;
...
...
Analysis/src/components/ProportionSales.tsx
View file @
061a1e7d
...
...
@@ -21,7 +21,8 @@ const ProportionSales = ({
salesType
:
'
all
'
|
'
online
'
|
'
stores
'
;
salesPieData
:
ISalesData
[];
handleChangeSalesType
?:
(
e
:
RadioChangeEvent
)
=>
void
;
})
=>
(
})
=>
{
return
(
<
Card
loading
=
{
loading
}
className
=
{
styles
.
salesCard
}
...
...
@@ -72,6 +73,7 @@ const ProportionSales = ({
/>
</
div
>
</
Card
>
);
);
};
export
default
ProportionSales
;
Analysis/src/utils/Yuan.tsx
View file @
061a1e7d
import
React
from
'
react
'
;
import
{
yuan
}
from
'
ant-design-pro/lib
/Charts
'
;
import
{
yuan
}
from
'
../components
/Charts
'
;
/**
* 减少使用 dangerouslySetInnerHTML
*/
export
default
class
Yuan
extends
React
.
PureComponent
{
export
default
class
Yuan
extends
React
.
Component
<
{
children
:
React
.
ReactText
;
}
>
{
componentDidMount
()
{
this
.
render
t
oHtml
();
this
.
render
T
oHtml
();
}
componentDidUpdate
()
{
this
.
render
t
oHtml
();
this
.
render
T
oHtml
();
}
render
t
oHtml
=
()
=>
{
main
:
HTMLSpanElement
|
undefined
|
null
;
render
T
oHtml
=
()
=>
{
const
{
children
}
=
this
.
props
;
if
(
this
.
main
)
{
this
.
main
.
innerHTML
=
yuan
(
children
);
...
...
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