feat(Field): highlight word num when reaching maxlength

This commit is contained in:
陈嘉涵 2020-02-05 15:58:51 +08:00
parent eb7abea49c
commit 61093ef00f
5 changed files with 32 additions and 1 deletions

View File

@ -303,9 +303,13 @@ export default createComponent({
genWordLimit() { genWordLimit() {
if (this.showWordLimit && this.maxlength) { if (this.showWordLimit && this.maxlength) {
const count = this.value.length;
const full = count >= this.maxlength;
return ( return (
<div class={bem('word-limit')}> <div class={bem('word-limit')}>
{this.value.length}/{this.maxlength} <span class={bem('word-num', { full })}>{count}</span>/
{this.maxlength}
</div> </div>
); );
} }

View File

@ -131,6 +131,12 @@
text-align: right; text-align: right;
} }
&__word-num {
&--full {
color: @field-word-num-full-color;
}
}
&--error { &--error {
.van-field__control { .van-field__control {
&, &,

View File

@ -53,6 +53,15 @@ exports[`label-width prop without unit 1`] = `
</div> </div>
`; `;
exports[`reach max word-limit 1`] = `
<div class="van-cell van-field">
<div class="van-cell__value van-cell__value--alone">
<div class="van-field__body"><input type="text" class="van-field__control"></div>
<div class="van-field__word-limit"><span class="van-field__word-num van-field__word-num--full">3</span>/3</div>
</div>
</div>
`;
exports[`render input slot 1`] = ` exports[`render input slot 1`] = `
<div class="van-cell van-field"> <div class="van-cell van-field">
<div class="van-cell__value van-cell__value--alone"> <div class="van-cell__value van-cell__value--alone">

View File

@ -280,3 +280,14 @@ test('formatter prop', () => {
input.trigger('input'); input.trigger('input');
expect(wrapper.emitted('input')[1][0]).toEqual('efg'); expect(wrapper.emitted('input')[1][0]).toEqual('efg');
}); });
test('reach max word-limit', () => {
const wrapper = mount(Field, {
propsData: {
value: 'foo',
maxlength: 3,
showWordLimit: true,
},
});
expect(wrapper).toMatchSnapshot();
});

View File

@ -345,6 +345,7 @@
@field-word-limit-color: @gray-7; @field-word-limit-color: @gray-7;
@field-word-limit-font-size: @font-size-sm; @field-word-limit-font-size: @font-size-sm;
@field-word-limit-line-height: 16px; @field-word-limit-line-height: 16px;
@field-word-num-full-color: @red;
// GridItem // GridItem
@grid-item-content-padding: @padding-md @padding-xs; @grid-item-content-padding: @padding-md @padding-xs;