-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
feat: update Statistic #2386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
feat: update Statistic #2386
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,57 +1,50 @@ | ||
import padEnd from 'lodash/padEnd'; | ||
import { createVNode } from 'vue'; | ||
|
||
export default { | ||
name: 'AStatisticNumber', | ||
functional: true, | ||
render(h, context) { | ||
const { | ||
value, | ||
formatter, | ||
precision, | ||
decimalSeparator, | ||
groupSeparator = '', | ||
prefixCls, | ||
} = context.props; | ||
let valueNode; | ||
export default (_, { attrs }) => { | ||
const { value, formatter, precision, decimalSeparator, groupSeparator = '', prefixCls } = attrs; | ||
let valueNode; | ||
|
||
if (typeof formatter === 'function') { | ||
// Customize formatter | ||
valueNode = formatter({ value, h }); | ||
if (typeof formatter === 'function') { | ||
// Customize formatter | ||
valueNode = formatter({ value, h: createVNode }); | ||
} else { | ||
// Internal formatter | ||
const val = String(value); | ||
const cells = val.match(/^(-?)(\d*)(\.(\d+))?$/); | ||
// Process if illegal number | ||
if (!cells) { | ||
valueNode = val; | ||
} else { | ||
// Internal formatter | ||
const val = String(value); | ||
const cells = val.match(/^(-?)(\d*)(\.(\d+))?$/); | ||
// Process if illegal number | ||
if (!cells) { | ||
valueNode = val; | ||
} else { | ||
const negative = cells[1]; | ||
let int = cells[2] || '0'; | ||
let decimal = cells[4] || ''; | ||
const negative = cells[1]; | ||
let int = cells[2] || '0'; | ||
let decimal = cells[4] || ''; | ||
|
||
int = int.replace(/\B(?=(\d{3})+(?!\d))/g, groupSeparator); | ||
if (typeof precision === 'number') { | ||
decimal = padEnd(decimal, precision, '0').slice(0, precision); | ||
} | ||
|
||
if (decimal) { | ||
decimal = `${decimalSeparator}${decimal}`; | ||
} | ||
int = int.replace(/\B(?=(\d{3})+(?!\d))/g, groupSeparator); | ||
if (typeof precision === 'number') { | ||
decimal = padEnd(decimal, precision, '0').slice(0, precision); | ||
} | ||
|
||
valueNode = [ | ||
<span key="int" class={`${prefixCls}-content-value-int`}> | ||
{negative} | ||
{int} | ||
</span>, | ||
decimal && ( | ||
<span key="decimal" class={`${prefixCls}-content-value-decimal`}> | ||
{decimal} | ||
</span> | ||
), | ||
]; | ||
if (decimal) { | ||
decimal = `${decimalSeparator}${decimal}`; | ||
} | ||
|
||
valueNode = [ | ||
<span key="int" class={`${prefixCls}-content-value-int`}> | ||
{negative} | ||
{int} | ||
</span>, | ||
decimal && ( | ||
<span key="decimal" class={`${prefixCls}-content-value-decimal`}> | ||
{decimal} | ||
</span> | ||
), | ||
]; | ||
} | ||
} | ||
|
||
return <span class={`${prefixCls}-content-value`}>{valueNode}</span>; | ||
}, | ||
return <span class={`${prefixCls}-content-value`}>{valueNode}</span>; | ||
}; | ||
|
||
const name = 'AStatisticNumber'; | ||
export { name }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
import Statistic from './Statistic'; | ||
import Countdown from './Countdown'; | ||
import Base from '../base'; | ||
|
||
Statistic.Countdown = Countdown; | ||
/* istanbul ignore next */ | ||
Statistic.install = function(Vue) { | ||
Vue.use(Base); | ||
Vue.component(Statistic.name, Statistic); | ||
Vue.component(Statistic.Countdown.name, Statistic.Countdown); | ||
Statistic.install = function(app) { | ||
app.component(Statistic.name, Statistic); | ||
app.component(Statistic.Countdown.name, Statistic.Countdown); | ||
}; | ||
|
||
export default Statistic; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,35 @@ | ||
<template> | ||
<a-empty /> | ||
<a-row :gutter="16"> | ||
<a-col :span="12"> | ||
<a-statistic-countdown | ||
title="Countdown" | ||
:value="deadline" | ||
style="margin-right: 50px" | ||
@finish="onFinish" | ||
/> | ||
</a-col> | ||
<a-col :span="12"> | ||
<a-statistic-countdown | ||
title="Million Seconds" | ||
:value="deadline" | ||
format="HH:mm:ss:SSS" | ||
style="margin-right: 50px" | ||
/> | ||
</a-col> | ||
<a-col :span="24" style="margin-top: 32px;"> | ||
<a-statistic-countdown title="Day Level" :value="deadline" format="D 天 H 时 m 分 s 秒" /> | ||
</a-col> | ||
</a-row> | ||
</template> | ||
<script> | ||
export default { | ||
data() { | ||
return { | ||
deadline: Date.now() + 1000 * 5, | ||
}; | ||
}, | ||
methods: { | ||
onFinish() {}, | ||
}, | ||
}; | ||
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
属性扁平化处理 不需要在套一层 props
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
用到的 finish 事件,在props 声明为属性 onFinish