feat(Progress): add --van-progress-inactive-color var (#9711)

* feat(Progress): add --van-progress-inactive-color var

* fix: doc
This commit is contained in:
neverland 2021-10-22 15:27:00 +08:00 committed by GitHub
parent b07f733efb
commit b558db3093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 28 additions and 10 deletions

View File

@ -28,7 +28,7 @@ export default defineComponent({
setup(props) { setup(props) {
const background = computed(() => const background = computed(() =>
props.inactive ? '#cacaca' : props.color props.inactive ? undefined : props.color
); );
const renderPivot = () => { const renderPivot = () => {
@ -44,7 +44,10 @@ export default defineComponent({
}; };
return ( return (
<span style={style} class={bem('pivot')}> <span
style={style}
class={bem('pivot', { inactive: props.inactive })}
>
{text} {text}
</span> </span>
); );
@ -64,7 +67,10 @@ export default defineComponent({
return ( return (
<div class={bem()} style={rootStyle}> <div class={bem()} style={rootStyle}>
<span class={bem('portion')} style={portionStyle}></span> <span
class={bem('portion', { inactive: props.inactive })}
style={portionStyle}
/>
{renderPivot()} {renderPivot()}
</div> </div>
); );

View File

@ -98,6 +98,7 @@ The component provides the following CSS variables, which can be used to customi
| --- | --- | --- | | --- | --- | --- |
| --van-progress-height | _4px_ | - | | --van-progress-height | _4px_ | - |
| --van-progress-color | _var(--van-primary-color)_ | - | | --van-progress-color | _var(--van-primary-color)_ | - |
| --van-progress-inactive-color | _var(--van-gray-5)_ | - |
| --van-progress-background-color | _var(--van-gray-3)_ | - | | --van-progress-background-color | _var(--van-gray-3)_ | - |
| --van-progress-pivot-padding | _0 5px_ | - | | --van-progress-pivot-padding | _0 5px_ | - |
| --van-progress-pivot-text-color | _var(--van-white)_ | - | | --van-progress-pivot-text-color | _var(--van-white)_ | - |

View File

@ -102,6 +102,7 @@ progressRef.value?.resize();
| ------------------------------------- | -------------------------- | ---- | | ------------------------------------- | -------------------------- | ---- |
| --van-progress-height | _4px_ | - | | --van-progress-height | _4px_ | - |
| --van-progress-color | _var(--van-primary-color)_ | - | | --van-progress-color | _var(--van-primary-color)_ | - |
| --van-progress-inactive-color | _var(--van-gray-5)_ | - |
| --van-progress-background-color | _var(--van-gray-3)_ | - | | --van-progress-background-color | _var(--van-gray-3)_ | - |
| --van-progress-pivot-padding | _0 5px_ | - | | --van-progress-pivot-padding | _0 5px_ | - |
| --van-progress-pivot-text-color | _var(--van-white)_ | - | | --van-progress-pivot-text-color | _var(--van-white)_ | - |

View File

@ -57,7 +57,7 @@ const reduce = () => {
</demo-block> </demo-block>
<demo-block :title="t('transition')"> <demo-block :title="t('transition')">
<van-progress inactive :percentage="percentage" /> <van-progress :percentage="percentage" />
<div style="margin-top: 15px"> <div style="margin-top: 15px">
<van-button :text="t('add')" type="primary" size="small" @click="add" /> <van-button :text="t('add')" type="primary" size="small" @click="add" />
<van-button <van-button

View File

@ -3,6 +3,7 @@
:root { :root {
--van-progress-height: @progress-height; --van-progress-height: @progress-height;
--van-progress-color: @progress-color; --van-progress-color: @progress-color;
--van-progress-inactive-color: @progress-inactive-color;
--van-progress-background-color: @progress-background-color; --van-progress-background-color: @progress-background-color;
--van-progress-pivot-padding: @progress-pivot-padding; --van-progress-pivot-padding: @progress-pivot-padding;
--van-progress-pivot-text-color: @progress-pivot-text-color; --van-progress-pivot-text-color: @progress-pivot-text-color;
@ -27,6 +28,10 @@
transform-origin: 0; transform-origin: 0;
transition: all var(--van-animation-duration-base) transition: all var(--van-animation-duration-base)
var(--van-animation-timing-function-enter); var(--van-animation-timing-function-enter);
&--inactive {
background: var(--van-progress-inactive-color);
}
} }
&__pivot { &__pivot {
@ -44,5 +49,9 @@
border-radius: 1em; border-radius: 1em;
transition: all var(--van-animation-duration-base) transition: all var(--van-animation-duration-base)
var(--van-animation-timing-function-enter); var(--van-animation-timing-function-enter);
&--inactive {
background: var(--van-progress-inactive-color);
}
} }
} }

View File

@ -31,12 +31,12 @@ exports[`should render demo and match snapshot 1`] = `
</div> </div>
<div> <div>
<div class="van-progress"> <div class="van-progress">
<span class="van-progress__portion" <span class="van-progress__portion van-progress__portion--inactive"
style="background: rgb(202, 202, 202); transform: scaleX(0.5);" style="transform: scaleX(0.5);"
> >
</span> </span>
<span style="left: 50%; transform: translate(-50%,-50%); background: rgb(202, 202, 202);" <span style="left: 50%; transform: translate(-50%,-50%);"
class="van-progress__pivot" class="van-progress__pivot van-progress__pivot--inactive"
> >
50% 50%
</span> </span>
@ -80,10 +80,10 @@ exports[`should render demo and match snapshot 1`] = `
<div> <div>
<div class="van-progress"> <div class="van-progress">
<span class="van-progress__portion" <span class="van-progress__portion"
style="background: rgb(202, 202, 202); transform: scaleX(0.5);" style="transform: scaleX(0.5);"
> >
</span> </span>
<span style="left: 50%; transform: translate(-50%,-50%); background: rgb(202, 202, 202);" <span style="left: 50%; transform: translate(-50%,-50%);"
class="van-progress__pivot" class="van-progress__pivot"
> >
50% 50%

View File

@ -2,6 +2,7 @@
@progress-height: 4px; @progress-height: 4px;
@progress-color: var(--van-primary-color); @progress-color: var(--van-primary-color);
@progress-inactive-color: var(--van-gray-5);
@progress-background-color: var(--van-gray-3); @progress-background-color: var(--van-gray-3);
@progress-pivot-padding: 0 5px; @progress-pivot-padding: 0 5px;
@progress-pivot-text-color: var(--van-white); @progress-pivot-text-color: var(--van-white);