Skip to content

Commit 09f200a

Browse files
wyj580231wyj
and
wyj
authored
feat(Tips): 单行文本时关闭按钮垂直居中 (#98)
* feat(Tips): 单行文本时关闭按钮垂直居中 * feat(Tips): getTextType避免重复触发didUpdate Co-authored-by: wyj <[email protected]>
1 parent b6f48c3 commit 09f200a

File tree

4 files changed

+61
-76
lines changed

4 files changed

+61
-76
lines changed

src/Tips/TipsItem/index.less

+13-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
@import (reference) "../../_base/index.less";
1+
@import (reference) '../../_base/index.less';
22
.amd-tips-content-core {
3-
display: flex;
3+
display: flex;
4+
align-items: center;
45
}
56
.amd-tips-title {
6-
overflow: hidden;
7-
line-height: 1.4;
8-
text-overflow: ellipsis;
9-
display: box;
10-
-webkit-line-clamp: 3;
11-
-webkit-box-orient: vertical;
7+
overflow: hidden;
8+
line-height: 1.4;
9+
text-overflow: ellipsis;
10+
display: -webkit-box;
11+
-webkit-line-clamp: 3;
12+
-webkit-box-orient: vertical;
1213
}
1314
.amd-tips-content {
14-
.amd-button-content {
15-
font-size: 24 * @rpx;
16-
height: 49 * @rpx;
17-
}
15+
.amd-button-content {
16+
font-size: 24 * @rpx;
17+
height: 49 * @rpx;
18+
}
1819
}

src/Tips/index.axml

+10-23
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,20 @@
11
<view
2-
class="amd-tips {{className ? className : ''}}"
2+
class="amd-tips {{className ? className : ''}} amd-tips-{{$id}} amd-tips-{{textType}}"
33
a:if="{{_show}}">
4-
<view class="amd-tips-wrap">
5-
<view class="amd-tips-wrap-pseudo">
6-
<view class="amd-tips-wrap-pseudo-content">
7-
<tips-item image="{{image}}"
8-
buttonText="{{buttonText}}"
9-
buttonPosition="{{buttonPosition}}"
10-
showClose="{{showClose}}"
11-
onButtonTap="onButtonTap"
12-
onHideTips="onHideTips"
13-
title="{{title}}">
14-
<slot/>
15-
</tips-item>
16-
</view>
17-
<view class="amd-tips-arrow amd-tips-arrow-{{arrowPosition}}"
18-
a:if="{{arrowPosition}}" />
19-
</view>
20-
<!-- 为了实现背景半透明,箭头与背景叠加的而复制一份内容,通过定位实现 -->
21-
<view class="amd-tips-wrap-real">
22-
<tips-item image="{{image}}"
4+
<view class="amd-tips-wrap {{}}">
5+
<view class="amd-tips-wrap-content">
6+
<tips-item
7+
image="{{image}}"
238
buttonText="{{buttonText}}"
249
buttonPosition="{{buttonPosition}}"
2510
showClose="{{showClose}}"
2611
onButtonTap="onButtonTap"
2712
onHideTips="onHideTips"
28-
title="{{title}}" >
29-
<slot/>
30-
</tips-item>
13+
title="{{title}}">
14+
<slot/>
15+
</tips-item>
3116
</view>
17+
<view class="amd-tips-arrow amd-tips-arrow-{{arrowPosition}}"
18+
a:if="{{arrowPosition}}" />
3219
</view>
3320
</view>

src/Tips/index.less

+10-27
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import (reference) "./variable.less";
1+
@import (reference) './variable.less';
22

33
@tipsPrefix: amd-tips;
44

@@ -10,29 +10,16 @@
1010
color: @color-text-base;
1111
border-radius: @corner-radius-lg;
1212
max-width: 702 * @rpx;
13-
&-pseudo {
14-
opacity: 0.75;
15-
background: #000;
16-
border-radius: @corner-radius-lg;
17-
z-index: 5;
18-
&-content {
19-
opacity: 0;
20-
display: flex;
21-
align-items: center;
22-
padding: @v-spacing-standard @h-spacing-large;
23-
pointer-events: none;
24-
}
25-
}
26-
&-real {
27-
position: absolute;
28-
top: 0;
29-
left: 0;
30-
right: 0;
31-
bottom: 0;
13+
background: rgba(0, 0, 0, 0.75);
14+
&-content {
3215
display: flex;
3316
align-items: center;
34-
padding: 10 * @rpx @h-spacing-large;
35-
border-radius: @corner-radius-lg;
17+
padding: @v-spacing-standard @h-spacing-large;
18+
}
19+
}
20+
&-single {
21+
:not(.@{tipsPrefix}-content-bottom) ~ .@{tipsPrefix}-close {
22+
align-self: center;
3623
}
3724
}
3825
&-content {
@@ -50,6 +37,7 @@
5037
box-sizing: content-box;
5138
margin-top: 6 * @rpx;
5239
margin-bottom: 6 * @rpx;
40+
flex-shrink: 0;
5341
}
5442
&-close {
5543
align-self: flex-start;
@@ -75,11 +63,6 @@
7563
}
7664
}
7765
}
78-
&-title {
79-
display: flex;
80-
flex: 1;
81-
align-items: center;
82-
}
8366
&-arrow {
8467
position: absolute;
8568
width: 0;

src/Tips/index.ts

+28-14
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,41 @@
11
import { TipsDefaultProps } from './props';
2-
import { log } from '../_util/console';
32

43
Component({
54
props: TipsDefaultProps,
65
data: {
7-
_show: false
6+
_show: false,
7+
textType: 'multi',
88
},
99
didMount() {
1010
this.setData({
11-
_show: this.props.visible
12-
})
11+
_show: this.props.visible,
12+
});
13+
this.getTextType();
1314
},
1415
didUpdate(prevProps) {
15-
if(prevProps.visible !== this.props.visible){
16+
if (prevProps.visible !== this.props.visible) {
1617
this.setData({
17-
_show: this.props.visible
18-
})
19-
if(this.props.visible === false){
20-
this.beforeClose()
18+
_show: this.props.visible,
19+
});
20+
if (this.props.visible === false) {
21+
this.beforeClose();
2122
}
2223
}
24+
if (prevProps.title !== this.props.title) {
25+
this.getTextType();
26+
}
2327
},
2428
methods: {
29+
getTextType() {
30+
my.createSelectorQuery()
31+
.select(`.amd-tips-${this.$id} .amd-tips-title`)
32+
.boundingClientRect()
33+
.exec((ret) => {
34+
if (ret && ret[0] && ret[0].height) {
35+
this.setData({ textType: ret[0].height < 30 ? 'single' : 'multi' });
36+
}
37+
});
38+
},
2539
onButtonTap() {
2640
const { onButtonTap } = this.props;
2741
if (onButtonTap) {
@@ -32,12 +46,12 @@ Component({
3246
this.setData({
3347
_show: t,
3448
});
35-
this.beforeClose()
49+
this.beforeClose();
3650
},
37-
beforeClose(){
38-
if(typeof this.props.onClose ==="function"){
39-
this.props.onClose()
51+
beforeClose() {
52+
if (typeof this.props.onClose === 'function') {
53+
this.props.onClose();
4054
}
41-
}
55+
},
4256
},
4357
});

0 commit comments

Comments
 (0)