Commit b6d2ee03 by xuzhenghua

分享

parents 60233a38 c7f5958a
...@@ -21,7 +21,11 @@ class Invite extends Component { ...@@ -21,7 +21,11 @@ class Invite extends Component {
let uid = jsCookie.get('uid'); let uid = jsCookie.get('uid');
let shareuid = getParam('shareuid'); let shareuid = getParam('shareuid');
if(uid === shareuid) { if(uid === shareuid) {
<<<<<<< HEAD
=======
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
} else { } else {
if(getParam('new')) { if(getParam('new')) {
this.props.history.push(`/activity?shareuid=${shareuid}&code=${inviteCode}`); this.props.history.push(`/activity?shareuid=${shareuid}&code=${inviteCode}`);
...@@ -81,10 +85,17 @@ class Invite extends Component { ...@@ -81,10 +85,17 @@ class Invite extends Component {
if(is_weixin()) { if(is_weixin()) {
// TODO 这里需要运营确定文案 // TODO 这里需要运营确定文案
wxShare({ wxShare({
<<<<<<< HEAD
title: 'AI充电节,积福气享1折秒课,超10万元奖品来就送!!', title: 'AI充电节,积福气享1折秒课,超10万元奖品来就送!!',
desc: '把这门超5万人报名的【Python基础入门 升级版】课程送给你,附200元红包,请笑纳!--七月在线', desc: '把这门超5万人报名的【Python基础入门 升级版】课程送给你,附200元红包,请笑纳!--七月在线',
link: encodeURI(location.origin + `/invite?shareuid=${jsCookie.get('uid')}&new=1&code=${inviteCode}`), link: encodeURI(location.origin + `/invite?shareuid=${jsCookie.get('uid')}&new=1&code=${inviteCode}`),
imgUrl: 'https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/index-share-img.png', imgUrl: 'https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/index-share-img.png',
=======
title: "哈哈哈哈哈哈哈",
desc: "你的老相好在七月在线学习呢你来不来",
link: encodeURI(location.origin + `/invite?shareuid=${jsCookie.get('uid')}&new=1&code=${inviteCode}`),
imgUrl: 'https://julyedu-img-public.oss-cn-beijing.aliyuncs.com/Public/Image/20a86c1353.jpg'
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
}); });
this.setState({ this.setState({
showTip: true, showTip: true,
...@@ -139,7 +150,11 @@ class Invite extends Component { ...@@ -139,7 +150,11 @@ class Invite extends Component {
</div> </div>
</div> </div>
</div> </div>
<<<<<<< HEAD
=======
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
<div className="but__con"> <div className="but__con">
<div className="button__content" onClick={this.inviteFriends}> <div className="button__content" onClick={this.inviteFriends}>
......
<<<<<<< HEAD
import React, { Component } from 'react'; import React, { Component } from 'react';
import QRCode from 'qrcode'; import QRCode from 'qrcode';
import { http, SendMessageToApp,wxShare,is_weixin} from '@/utils'; import { http, SendMessageToApp,wxShare,is_weixin} from '@/utils';
import { Link } from 'react-router-dom'; import { Link } from 'react-router-dom';
import { throttle, findIndex } from 'lodash'; import { throttle, findIndex } from 'lodash';
=======
import React, { Component } from 'react'
import QRCode from 'qrcode'
import { http, SendMessageToApp } from '@/utils'
import { Link } from 'react-router-dom'
import { throttle, findIndex, debounce } from 'lodash'
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
import RulePopup from './rulePopup/index' import RulePopup from './rulePopup/index'
import CoursePopup from './coursePopup/index' import CoursePopup from './coursePopup/index'
import RecordPopup from './recordPopup/index' import RecordPopup from './recordPopup/index'
import CourseList from './courseList/index'; import CourseList from './courseList/index'
import SharePopup from './sharePopup/index'; import SharePopup from './sharePopup/index'
import LuckDraw from './luckDraw/index'; import LuckDraw from './luckDraw/index'
import CollectBlessing from './collectBlessing/index'; import CollectBlessing from './collectBlessing/index'
import ReserveCourse from './ReserveCourse/index'; import ReserveCourse from './ReserveCourse/index'
import ListHeader from './listHeader/index'; import ListHeader from './listHeader/index'
import LevelTest from './levelTest/index'; import LevelTest from './levelTest/index'
import RankList from './rankList/index'; import RankList from './rankList/index'
import './index.scss' import './index.scss'
import { Popup } from '@/common' import { Popup } from '@/common'
import {CopyToClipboard} from 'react-copy-to-clipboard' import { CopyToClipboard } from 'react-copy-to-clipboard'
import { Toast } from "antd-mobile" import { Toast } from "antd-mobile"
import Live from './live' import Live from './live'
import Banner from './banner' import Banner from './banner'
<<<<<<< HEAD
import { getParam } from '../../utils'; import { getParam } from '../../utils';
=======
import { getParam } from '../../utils'
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
class BlessingPreheat extends Component { class BlessingPreheat extends Component {
constructor(props) { constructor(props) {
super(props) super(props)
this.navTop = 183; this.navTop = 183
this.prevY = 0; this.prevY = 0
this.state = { this.state = {
isRule: false, isRule: false,
isCourse: false, isCourse: false,
...@@ -74,6 +86,7 @@ class BlessingPreheat extends Component { ...@@ -74,6 +86,7 @@ class BlessingPreheat extends Component {
} }
componentDidMount() { componentDidMount() {
<<<<<<< HEAD
this.fetchUserBlessing(); this.fetchUserBlessing();
window.addEventListener('scroll', throttle(this.calcNavActive, 100)); window.addEventListener('scroll', throttle(this.calcNavActive, 100));
if(is_weixin()) { if(is_weixin()) {
...@@ -84,23 +97,62 @@ class BlessingPreheat extends Component { ...@@ -84,23 +97,62 @@ class BlessingPreheat extends Component {
imgUrl: 'https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/index-share-img.png', imgUrl: 'https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/active19_1111/m/index-share-img.png',
}) })
} }
=======
this.fetchUserBlessing()
this.setInitialNavActiveStatus()
window.addEventListener('scroll', throttle(this.calcNavActive, 100))
}
getActiveIndex = (arr, n) => {
for (let i = 0, len = arr.length; i < len; i++) {
if (arr[i] > n) {
if (!i) {
return i
} else {
if (Math.abs(n - arr[i]) < Math.abs(n - arr[i - 1])) {
return i
} else {
return i - 1
}
}
}
}
return arr.length - 1
}
setInitialNavActiveStatus = () => {
const observer = new MutationObserver(debounce((list, observer) => {
const navs = this.state.navs.map(item => document.querySelector(`#${item.id}`))
if (navs.every(item => item)) {
const navsTop = navs.map(item => item.offsetTop)
const index = this.getActiveIndex(navsTop, window.pageYOffset)
this.setState({index, navsTop}, () => {
this.calcNavActive()
observer.disconnect()
})
}
}, 30))
observer.observe(document.querySelector('#blessing-preheat'), {childList: true, subtree: true})
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
} }
initNav = (isFormal) => { initNav = (isFormal) => {
const { navs } = this.state; const {navs} = this.state
if(isFormal) { if (isFormal) {
this.setState({ this.setState({
navs: navs.filter(item => item.id !== 'deposit') navs: navs.filter(item => item.id !== 'deposit')
}); })
} }
} }
fetchMoudleId = (str) => { fetchMoudleId = (str) => {
const { navs } = this.state; const {navs} = this.state
return findIndex(navs, item => item.id === str); return findIndex(navs, item => item.id === str)
} }
fetchUserBlessing() { fetchUserBlessing() {
<<<<<<< HEAD
// 判断登录未登录 根据this.state.userInfo.isLogin // 判断登录未登录 根据this.state.userInfo.isLogin
if(getParam('version')) { if(getParam('version')) {
// app 平台 // app 平台
...@@ -108,9 +160,18 @@ class BlessingPreheat extends Component { ...@@ -108,9 +160,18 @@ class BlessingPreheat extends Component {
// H5 // H5
} }
const { userInfo } = this.state; const { userInfo } = this.state;
=======
// 判断登录未登录 根据this.state.userInfo.isLogin
if (getParam('version')) {
// app 平台
} else {
// H5
}
const {userInfo} = this.state
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
http.get(`${API.home}/sys/user/blessing`).then(res => { http.get(`${API.home}/sys/user/blessing`).then(res => {
const { code, data } = res.data; const {code, data} = res.data
if(code === 200) { if (code === 200) {
this.setState({ this.setState({
isSign: !!data.today_signed, isSign: !!data.today_signed,
isFormal: data.is_activity, isFormal: data.is_activity,
...@@ -118,38 +179,39 @@ class BlessingPreheat extends Component { ...@@ -118,38 +179,39 @@ class BlessingPreheat extends Component {
isLogin: !!data.is_login, isLogin: !!data.is_login,
blessingVal: data.user_blessing_value, blessingVal: data.user_blessing_value,
}) })
}); })
if(data.is_login === 1) { if (data.is_login === 1) {
this.handleToSign(); this.handleToSign()
} }
this.initNav(data.is_activity); this.initNav(data.is_activity)
} }
}); })
} }
handleToSign = () => { handleToSign = () => {
http.post(`${API.home}/sys/add/blessing`, { http.post(`${API.home}/sys/add/blessing`, {
type: 1 // 1:签到;3:分享;4:浏览课程; type: 1 // 1:签到;3:分享;4:浏览课程;
}).then(res => { }).then(res => {
const {code } = res.data; const {code} = res.data
if (code === 200) { if (code === 200) {
this.setState({ this.setState({
isSign: true, isSign: true,
}); })
Toast.info('+5点福气值~', 2, null, false); Toast.info('+5点福气值~', 2, null, false)
} }
}); })
} }
handleToHide = (key) => { handleToHide = (key) => {
let obj = {} let obj = {}
obj[key] = false; obj[key] = false
this.setState({ this.setState({
...obj ...obj
}) })
} }
handleToShow = (key, isLogin = false) => { handleToShow = (key, isLogin = false) => {
<<<<<<< HEAD
const { userInfo } = this.state; const { userInfo } = this.state;
// 需要用户登录 并且用户未登录 // 需要用户登录 并且用户未登录
if(isLogin && !userInfo.isLogin) { if(isLogin && !userInfo.isLogin) {
...@@ -157,22 +219,38 @@ class BlessingPreheat extends Component { ...@@ -157,22 +219,38 @@ class BlessingPreheat extends Component {
}else{ }else{
let obj = {}; let obj = {};
obj[key] = true; obj[key] = true;
=======
const {userInfo} = this.state
// 需要用户登录 并且用户未登录
if (isLogin && !userInfo.isLogin) {
this.toLogin()
} else {
let obj = {}
obj[key] = true
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
this.setState({ this.setState({
...obj ...obj
}); })
} }
} }
// 邀请好友注册 // 邀请好友注册
handleToShowInvite = () => { handleToShowInvite = () => {
<<<<<<< HEAD
const { userInfo } = this.state; const { userInfo } = this.state;
if(userInfo.isLogin) { if(userInfo.isLogin) {
if(!getParam('version')) { if(!getParam('version')) {
=======
const {userInfo} = this.state
if (userInfo.isLogin) {
if (!getParam('version')) {
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
QRCode.toDataURL('http://m.julyedu.com/invite', { QRCode.toDataURL('http://m.julyedu.com/invite', {
width: 120, width: 120,
height: 120, height: 120,
margin: 1 margin: 1
}) })
<<<<<<< HEAD
.then(url => { .then(url => {
this.setState({ this.setState({
inviteUrl: url, inviteUrl: url,
...@@ -183,6 +261,18 @@ class BlessingPreheat extends Component { ...@@ -183,6 +261,18 @@ class BlessingPreheat extends Component {
console.error(err) console.error(err)
}); });
}else{ }else{
=======
.then(url => {
this.setState({
inviteUrl: url,
inviteVisible: true
})
})
.catch(err => {
console.error(err)
})
} else {
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
let data = { let data = {
title: '11.11-11.13 AI充电节,预热来袭!重磅好课1折秒,超10万元奖品来就送-七月在线', // 标题 title: '11.11-11.13 AI充电节,预热来袭!重磅好课1折秒,超10万元奖品来就送-七月在线', // 标题
desc: '11.11-11.13 AI充电节,预热来袭!重磅好课1折秒,超10万元奖品来就送-七月在线', // 描述 desc: '11.11-11.13 AI充电节,预热来袭!重磅好课1折秒,超10万元奖品来就送-七月在线', // 描述
...@@ -192,19 +282,24 @@ class BlessingPreheat extends Component { ...@@ -192,19 +282,24 @@ class BlessingPreheat extends Component {
SendMessageToApp("toShare", data) SendMessageToApp("toShare", data)
} }
} else { } else {
<<<<<<< HEAD
this.toLogin(); this.toLogin();
=======
this.toLogin()
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
} }
} }
handleToShowNotice = () => { handleToShowNotice = () => {
http.get(`${API['base-api']}/sys/activity/create_blessing_qrcode`).then(res => { http.get(`${API['base-api']}/sys/activity/create_blessing_qrcode`).then(res => {
const {errno, data} = res.data; const {errno, data} = res.data
if (errno === 200) { if (errno === 200) {
QRCode.toDataURL(data.url, { QRCode.toDataURL(data.url, {
width: 120, width: 120,
height: 120, height: 120,
margin: 1 margin: 1
}) })
<<<<<<< HEAD
.then(url => { .then(url => {
this.setState({ this.setState({
isServer: true, isServer: true,
...@@ -216,8 +311,30 @@ class BlessingPreheat extends Component { ...@@ -216,8 +311,30 @@ class BlessingPreheat extends Component {
}); });
}else if(errno === 4030 || errno === 4040) { }else if(errno === 4030 || errno === 4040) {
this.toLogin(); this.toLogin();
=======
.then(url => {
this.setState({
isServer: true,
serverUrl: url,
})
})
.catch(err => {
console.error(err)
})
} else if (errno === 4030 || errno === 4040) {
this.toLogin()
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
} }
}); })
}
toLogin = () => {
const {history} = this.props
if (!getParam('version')) {
history.push('/passport')
} else {
SendMessageToApp("toLogin")
}
} }
toLogin = () => { toLogin = () => {
...@@ -230,20 +347,20 @@ class BlessingPreheat extends Component { ...@@ -230,20 +347,20 @@ class BlessingPreheat extends Component {
} }
onCopy = () => { onCopy = () => {
Toast.info('复制成功', 2,null,false) Toast.info('复制成功', 2, null, false)
} }
toSection = (i, e) => { toSection = (i, e) => {
const { navs } = this.state; const {navs} = this.state
e.preventDefault(); e.preventDefault()
let top = document.querySelector(`#${navs[i].id}`).offsetTop let top = document.querySelector(`#${navs[i].id}`).offsetTop
this.setState({ this.setState({
index: i index: i
}); })
window.scrollTo({ window.scrollTo({
top: top - 60, top: top - 60,
left: 0 left: 0
}); })
} }
calcNavActive = () => { calcNavActive = () => {
...@@ -259,7 +376,11 @@ class BlessingPreheat extends Component { ...@@ -259,7 +376,11 @@ class BlessingPreheat extends Component {
} }
let el = document.querySelector(`#${navs[_index].id}`) let el = document.querySelector(`#${navs[_index].id}`)
let nav = document.querySelector('#main-nav') let nav = document.querySelector('#main-nav')
<<<<<<< HEAD
if(el) { if(el) {
=======
if (el) {
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
let top = el.offsetTop let top = el.offsetTop
if (y <= this.navTop) { if (y <= this.navTop) {
...@@ -300,6 +421,7 @@ class BlessingPreheat extends Component { ...@@ -300,6 +421,7 @@ class BlessingPreheat extends Component {
showRecordList, showRecordList,
shareMark, shareMark,
index index
<<<<<<< HEAD
} = this.state; } = this.state;
const {history} = this.props; const {history} = this.props;
return ( return (
...@@ -310,8 +432,20 @@ class BlessingPreheat extends Component { ...@@ -310,8 +432,20 @@ class BlessingPreheat extends Component {
toSection={this.toSection} toSection={this.toSection}
index={index} index={index}
/> />
=======
} = this.state
const {history} = this.props
return (
<div id={'blessing-preheat'}>
<Banner
isFormal={isFormal}
navs={navs}
toSection={this.toSection}
index={index}
/>
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
{/* 积福气 */} {/* 积福气 */}
<ListHeader id={'lucky-value'} text="积福气,享受更多福利" styles={{margin: '60px 0 15px'}} /> <ListHeader id={'lucky-value'} text="积福气,享受更多福利" styles={{margin: '60px 0 15px'}}/>
<Link className="luck-draw__button" to="/blessingRank">福气排行榜></Link> <Link className="luck-draw__button" to="/blessingRank">福气排行榜></Link>
<CollectBlessing <CollectBlessing
isSign={isSign} isSign={isSign}
...@@ -328,22 +462,26 @@ class BlessingPreheat extends Component { ...@@ -328,22 +462,26 @@ class BlessingPreheat extends Component {
/> />
{/* 幸运大抽奖--预热 */} {/* 幸运大抽奖--预热 */}
<ListHeader id={'lucky-draw'} text="幸运大抽奖" styles={{margin: '30px 0 10px'}} /> <ListHeader id={'lucky-draw'} text="幸运大抽奖" styles={{margin: '30px 0 10px'}}/>
<p className="luck-draw__tip">- 将于111110点开启 -</p> <p className="luck-draw__tip">- 将于111110点开启 -</p>
<button className="luck-draw__button" onClick={() => this.handleToShow('isRule')}>活动规则></button> <button className="luck-draw__button" onClick={() => this.handleToShow('isRule')}>活动规则></button>
<LuckDraw /> <LuckDraw/>
{/*定金--只在预热期间显示*/} {/*定金--只在预热期间显示*/}
{ {
isFormal === 0 && isFormal === 0 &&
<> <>
<ListHeader id={'deposit'} text="预付1元定金,最高可省100元" styles={{margin: '30px 0 15px'}} /> <ListHeader id={'deposit'} text="预付1元定金,最高可省100元" styles={{margin: '30px 0 15px'}}/>
<ReserveCourse /> <ReserveCourse/>
</> </>
} }
{/* 精品课程特惠专区 */} {/* 精品课程特惠专区 */}
<<<<<<< HEAD
<ListHeader id={'best-courses'} text="精品课程特惠专区" styles={{margin: '30px 0 15px'}} /> <ListHeader id={'best-courses'} text="精品课程特惠专区" styles={{margin: '30px 0 15px'}} />
=======
<ListHeader id={'best-courses'} text="精品课程特惠专区" styles={{margin: '30px 0 15px'}}/>
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
<CourseList isFormal={isFormal} isLogin={userInfo.isLogin} toLogin={this.toLogin}/> <CourseList isFormal={isFormal} isLogin={userInfo.isLogin} toLogin={this.toLogin}/>
{ {
...@@ -352,7 +490,12 @@ class BlessingPreheat extends Component { ...@@ -352,7 +490,12 @@ class BlessingPreheat extends Component {
} }
{ {
isCourse && isCourse &&
<<<<<<< HEAD
<CoursePopup toLogin={this.toLogin} history={history} isLogin={userInfo.isLogin} handleToHide={() => this.handleToHide('isCourse')}/> <CoursePopup toLogin={this.toLogin} history={history} isLogin={userInfo.isLogin} handleToHide={() => this.handleToHide('isCourse')}/>
=======
<CoursePopup toLogin={this.toLogin} history={history} isLogin={userInfo.isLogin}
handleToHide={() => this.handleToHide('isCourse')}/>
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
} }
{ {
showRecordList && showRecordList &&
...@@ -360,7 +503,7 @@ class BlessingPreheat extends Component { ...@@ -360,7 +503,7 @@ class BlessingPreheat extends Component {
} }
{ {
shareMark && shareMark &&
<SharePopup /> <SharePopup/>
} }
<Popup <Popup
visible={inviteVisible} visible={inviteVisible}
...@@ -381,8 +524,11 @@ class BlessingPreheat extends Component { ...@@ -381,8 +524,11 @@ class BlessingPreheat extends Component {
</Popup> </Popup>
<<<<<<< HEAD
=======
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
<Popup visible={this.state.joinLotteryVisible} <Popup visible={this.state.joinLotteryVisible}
title={'你已成功参与本时段抽奖'} title={'你已成功参与本时段抽奖'}
className={'join-lottery'} className={'join-lottery'}
...@@ -391,20 +537,29 @@ class BlessingPreheat extends Component { ...@@ -391,20 +537,29 @@ class BlessingPreheat extends Component {
<div className="code">抽奖码为:99999999</div> <div className="code">抽奖码为:99999999</div>
<div className="time">本时段的中奖结果将在xx:xx公布</div> <div className="time">本时段的中奖结果将在xx:xx公布</div>
<div className="hint">你可关注‘七月在线’服务号第一时间获得中奖信息。</div> <div className="hint">你可关注‘七月在线’服务号第一时间获得中奖信息。</div>
<img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/tinypng-common/right_weixin.png" className='qr-code' alt=""/> <img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/tinypng-common/right_weixin.png"
className='qr-code' alt=""/>
</div> </div>
<button onClick={() => {this.setState({joinLottery: false})}}>知道了</button> <button onClick={() => {
this.setState({joinLottery: false})
}}>知道了
</button>
</Popup> </Popup>
<Popup title={'微信扫码分享到微信朋友圈'} <Popup title={'微信扫码分享到微信朋友圈'}
visible={this.state.timelineShareVisible} visible={this.state.timelineShareVisible}
className={'timeline-share'} className={'timeline-share'}
> >
<img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/tinypng-common/right_weixin.png" alt="" className="qr-code"/> <img src="https://julyedu-cdn.oss-cn-beijing.aliyuncs.com/tinypng-common/right_weixin.png" alt=""
className="qr-code"/>
</Popup> </Popup>
<<<<<<< HEAD
<ListHeader id={'ai-test'} text="全国AI工程师水平测试" styles={{margin: '30px 0 15px'}} /> <ListHeader id={'ai-test'} text="全国AI工程师水平测试" styles={{margin: '30px 0 15px'}} />
=======
<ListHeader id={'ai-test'} text="全国AI工程师水平测试" styles={{margin: '30px 0 15px'}}/>
>>>>>>> c7f5958a86fc21ab5be3a03fb9e7277cfb2be9ba
<div className="test__record" onClick={() => this.handleToShow('showRecordList', true)}> <div className="test__record" onClick={() => this.handleToShow('showRecordList', true)}>
测试记录> 测试记录>
</div> </div>
...@@ -419,4 +574,4 @@ class BlessingPreheat extends Component { ...@@ -419,4 +574,4 @@ class BlessingPreheat extends Component {
} }
} }
export default BlessingPreheat; export default BlessingPreheat
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment