togroup.js 12.3 KB
Newer Older
1
import React, { Component } from 'react'
xuzhenghua committed
2
import './togroup.scss'
3
import { HeaderBar, VList } from '../../../common'
4
import { getParam, http, browser, wxShare } from "@/utils";
5 6
import { connect } from "react-redux"
import { Link } from "react-router-dom"
7
import { WingBlank, WhiteSpace, Flex, Toast, Modal } from 'antd-mobile'
xuzhenghua committed
8

9 10

@connect(state => ({user: state.user}))
xuzhenghua committed
11 12 13 14
class ToGroup extends Component {
    constructor(props) {
        super(props)
        this.state = {
15 16 17 18 19 20 21
            data: {},
            share: false,
            pdd_price: 0,
            groupon_member: [],
            person_num: 0, // 共多少人成团
            is_success: false, // 是否拼团成功
            number: 0, // 差几人成团
22 23
            isBuy: false,
            modal: false,
xuzhenghua committed
24
            pddOrderId:''
25 26 27 28 29
        }
    }

    invitedFriends = () => {
        const {pdd_price, number, data} = this.state;
30
        if (browser.isWeixin) {
xuzhenghua committed
31 32 33 34
            let share = this.state.share;
            this.setState({
                share: !share,
            });
xuzhenghua committed
35
            wxShare({
36
                title: `【仅剩${number}个名额】我${pdd_price}元拼了《${data.course_title}》`,
xuzhenghua committed
37
                desc: data.course_title,
FE committed
38
                link: location.href+'&is_originator=1',
xuzhenghua committed
39
                imgUrl: data.image_name,
40
            });
xuzhenghua committed
41

42
        } else {
43
            Toast.info('请在微信中使用分享功能!', 2);
xuzhenghua committed
44 45 46
        }
    }

47
    componentDidMount() {
48 49
        http.get(`${API['base-api']}/pdd/info/${getParam('id')}`).then(res => {
            if (res.data.errno !== 0) {
wangshuo committed
50 51 52
                Toast.info(res.data.msg, 2);
                return;
            }
53 54 55 56 57 58 59 60
            this.setState({
                data: res.data.data.course_info,
                pdd_price: res.data.data.pdd_price,
                groupon_member: res.data.data.groupon_member,
                is_success: res.data.data.is_success,
                person_num: res.data.data.person_num,
                course_list: res.data.data.course_list,
                number: res.data.data.number,
xuzhenghua committed
61
                pddOrderId: res.data.data.pdd_order_id,
wangshuo committed
62
                countdown: '',
63
                isBuy: res.data.data.is_buy
64 65
            });

66
            if (res.data.data.is_success === 0) {
wangshuo committed
67
                let date = res.data.data.end_time * 1000,
68 69 70
                    hours = 0,
                    minutes = 0,
                    seconds = 0;
wangshuo committed
71 72
                setInterval(() => {
                    date -= 1000
xuzhenghua committed
73 74 75
                    hours = `${parseInt(date / (60 * 60 * 1000))}`.padStart(2, 0);
                    minutes = `${parseInt((date - hours * 3600000) / 60000)}`.padStart(2, 0);
                    seconds = `${parseInt((date - hours * 3600000 - minutes * 60000) / 1000)}`.padStart(2, 0);
wangshuo committed
76
                    this.setState({
xuzhenghua committed
77
                        countdown: `${hours}:${minutes}:${seconds}`
wangshuo committed
78 79 80
                    });
                }, 1000)
            }
81 82 83
        });
    }

84
    toCourseDetail = (id) => {
85 86 87
        const {history} = this.props;
        history.push(`/detail?id=${id}`, {href: '/classify'});
        return false;
88 89
    }

90
    handleToGroup = () => {
91 92 93
        const {isBuy = false, data = {}} = this.state;
        const {user, history, location} = this.props;
        if (user.hasError) {
FE committed
94 95 96 97 98 99 100 101 102 103
            if (browser.isWeixin) {
                let redirectURI = window.location.href
                if (redirectURI.includes('code=') && redirectURI.includes('state=STATE')) {
                    let index = redirectURI.lastIndexOf('code=');
                    redirectURI = redirectURI.substr(0, index - 1);
                }
                window.location.assign(`https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx23dac6775ac82877&redirect_uri=${encodeURIComponent(redirectURI)}&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect`)
            } else {
                history.push('/passport', {from: location})
            }
104 105 106 107 108
            return
        }


        if (!isBuy) {
109 110 111
            history.push(
                `/order?id=${data.course_id}`,
                {
xuzhenghua committed
112 113
                    group: 1,
                    pdd_order_id:this.state.pddOrderId
114 115
                }
            )
116
        } else {
117 118 119 120 121 122
            this.setState({
                modal: true
            })
        }
    }

xuzhenghua committed
123
    render() {
124
        const {data: {course_id, course_title, simpledescription, price0, price1}, pdd_price, is_success, person_num, groupon_member, course_list} = this.state;
xuzhenghua committed
125 126
        const Info = (
            <div className="info">
127 128
                <p className='title' onClick={() => this.toCourseDetail(course_id)}>
                    {/* <Link to={`/detail?id=${course_id}`}> */}
129
                    {course_title}
130
                    {/* </Link> */}
xuzhenghua committed
131
                </p>
132
                <p className='contact text-overflow-2'>{simpledescription}</p>
xuzhenghua committed
133 134
                <div className='des'>
                    <p className="course-price">
135 136
                        <span className="new">¥{price1}</span>
                        <span className="old">¥{price0}</span>
xuzhenghua committed
137 138 139 140 141 142
                    </p>
                </div>
            </div>
        )
        return (
            <div className='to-group-box'>
FE committed
143 144
                <HeaderBar title='拼团' cart={false} toHref={'/'}></HeaderBar>
                <Modal
145 146 147 148 149 150 151 152 153 154 155 156
                    transparent
                    visible={this.state.modal}
                    title="提示"
                    footer={[
                        {
                            text: '确定',
                            onPress: () => {
                                this.setState({
                                    modal: false
                                });
                                this.props.history.push('/');
                            }
157
                        }
158
                    ]}
159 160 161
                >
                    <p>您已经购买过该课程~</p>
                </Modal>
162
                {
xuzhenghua committed
163 164 165 166
                    !is_success &&
                    <VList
                        img={this.state.data.image_name}
                        id={this.state.data.course_id}
167 168 169
                        info={Info}
                        toDetail={this.toCourseDetail}
                    />
170
                }
xuzhenghua committed
171

FE committed
172 173
                <GorupContent
                    data={this.state}
174 175
                    invitedFriends={this.invitedFriends}
                    handleToGroup={this.handleToGroup}
176
                    userInfo={this.props.user}
177
                />
xuzhenghua committed
178

179
                <WhiteSpace></WhiteSpace>
xuzhenghua committed
180 181 182
                <div className="group-course">
                    <div className="top-title">
                        <span>本周特惠</span>
183 184
                        <Link to={`/preferential`} className='more'>更多<i
                            className='iconfont iconiconfront-70'></i></Link>
xuzhenghua committed
185
                    </div>
186 187 188 189
                    {
                        (course_list && course_list.length > 0) && (course_list[0].course && course_list[0].course.length > 0) && course_list[0].course.slice(0, 4).map(item => {

                            let weekInfo = <div className="info">
190 191
                                <p className='title' onClick={() => this.toCourseDetail(item.course_id)}>
                                    {/* <Link to={`/detail?id=${item.course_id}`}> */}
192
                                    {item.course_title}
193
                                    {/* </Link> */}
194
                                </p>
195 196 197 198 199 200 201
                                <p className='contact text-overflow-2'>{item.simpledescription}</p>
                                <div className='des'>
                                    <p className="course-price">
                                        <span className="new">¥{item.price1}</span>
                                        <span className="old">¥{item.price0}</span>
                                    </p>
                                </div>
202
                            </div>
203
                            return (
xuzhenghua committed
204 205 206 207
                                <VList
                                    img={item.image_name}
                                    key={item.uid}
                                    id={item.course_id}
208 209 210 211
                                    info={weekInfo}
                                    toDetail={this.toCourseDetail}
                                />
                            )
212 213 214
                        })
                    }

xuzhenghua committed
215 216 217 218 219 220 221
                </div>
            </div>
        )
    }
}

function GorupContent(props) {
222
    let tip, btn, dec, groupTip, shareTip, groupSuccessMbc;
223 224 225 226
    const {pdd_price, data, groupon_member, is_success, person_num, share, number, countdown} = props.data;
    const {userInfo} = props
    let ary = [], num = number;
    while (num != 0) {
227 228
        ary.push(num);
        num--;
xuzhenghua committed
229
    }
230 231 232 233 234 235
    groupTip = (<div className='group-user-list'>
        <Flex justify='center' className='imgList'>
            {
                groupon_member.map(item => {
                    return (
                        <div className='imgContainer' key={Math.random()}>
236
                            <img className='imgname' src={item.avatar} alt=''/>
237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259
                            {
                                item.user_type === 1 ? (
                                    <div className='leaderFlag'>
                                        <span>团长</span>
                                    </div>
                                ) : null
                            }
                        </div>);
                })
            }
            {
                ary.map(item => {
                    return (<div className='imgContainer' key={Math.random()}>
                        <div className='imgname'>
                            <i className='iconfont iconwode-xianxing no-body'></i>
                        </div>
                    </div>)
                })
            }
        </Flex>
    </div>);

    if (groupon_member && groupon_member.length > 0) {
FE committed
260
        let flag = false;
261 262
        !userInfo.hasError && groupon_member.map(item => {
            if (item.uid == userInfo.data.uid) {
xuzhenghua committed
263
                flag = true
FE committed
264
                return;
265 266
            }
        })
267 268
        if (flag) {
            tip = <p className='tip'>{`拼团省¥${data.price1 - pdd_price}元`}</p>
wangshuo committed
269
            btn = <span className='group-btn' onClick={props.invitedFriends}>邀请好友参团 {countdown} 后结束</span>
270 271
            dec = <p className='dec'>分享到3个群后,成团率高达98%</p>
        } else {
FE committed
272
            if(getParam('is_originator') == 1){
FE committed
273 274 275 276 277 278
                tip = <p className='tip'>{`拼团省¥${data.price1 - pdd_price}元`}</p>
                btn = <a href="javascript:;" className='group-btn' onClick={props.handleToGroup}>一键参团</a>
            } else {
                tip = <p className='tip'>{`拼团省¥${data.price1 - pdd_price}元`}</p>
                btn = <span className='group-btn' onClick={props.invitedFriends}>邀请好友参团 {countdown} 后结束</span>
                dec = <p className='dec'>分享到3个群后,成团率高达98%</p>
FE committed
279
            }
280 281 282 283
        }
    }

    if (is_success === 1) {
xuzhenghua committed
284
        tip = <p className='success'>拼团成功</p>
xuzhenghua committed
285
        btn = <Link to={`/detail?id=${data.course_id}`} className='tostudy'>去学习</Link>
xuzhenghua committed
286 287 288
    }
    return (
        <div className='gorup-content'>
289 290 291 292
            {
                share ? (
                    <div className='groupSuccessMbc' onClick={props.invitedFriends}>
                        <div className='tipContent'>
xuzhenghua committed
293

294 295 296 297 298 299 300 301 302
                            {`还差${number}人,分享到3个群,成团率高达98%`}
                        </div>
                        <div className='tipArrow'>
                            <i className='iconfont iconyindao'></i>
                        </div>
                    </div>
                ) : null
            }

xuzhenghua committed
303
            {tip}
304 305 306 307 308 309
            <WingBlank>
                {groupTip}
            </WingBlank>
            <WingBlank>
                {btn}
            </WingBlank>
xuzhenghua committed
310 311
            {dec}
            {
312
                !is_success &&
xuzhenghua committed
313 314 315 316
                <div className="group-dec">
                    <span>
                        <i className='iconfont iconiconfront-1'></i>
                        ·好友参团  ·人满成交  ·人不满退款
317 318
                        </span>
                    <span className='allNum'>{`累计${person_num}人成团`}</span>
xuzhenghua committed
319 320 321 322 323 324 325
                </div>
            }
        </div>
    )
}

export default ToGroup