First question loads
This commit is contained in:
@ -2,10 +2,17 @@ import { Cat } from 'thundercats';
|
||||
import stamp from 'stampit';
|
||||
import { Disposable, Observable } from 'rx';
|
||||
|
||||
import { postJSON$ } from '../utils/ajax-stream.js';
|
||||
import { AppActions, AppStore } from './flux';
|
||||
import { HikesActions } from './routes/Hikes/flux';
|
||||
import { JobActions, JobsStore} from './routes/Jobs/flux';
|
||||
|
||||
const ajaxStamp = stamp({
|
||||
methods: {
|
||||
postJSON$: postJSON$
|
||||
}
|
||||
});
|
||||
|
||||
export default Cat().init(({ instance: cat, args: [services] }) => {
|
||||
const serviceStamp = stamp({
|
||||
methods: {
|
||||
@ -30,7 +37,7 @@ export default Cat().init(({ instance: cat, args: [services] }) => {
|
||||
}
|
||||
});
|
||||
|
||||
cat.register(HikesActions.compose(serviceStamp), null, services);
|
||||
cat.register(HikesActions.compose(serviceStamp, ajaxStamp), null, services);
|
||||
cat.register(AppActions.compose(serviceStamp), null, services);
|
||||
cat.register(AppStore, null, cat);
|
||||
|
||||
|
@ -8,7 +8,9 @@ const initValue = {
|
||||
points: 0,
|
||||
hikesApp: {
|
||||
hikes: [],
|
||||
currentHikes: {}
|
||||
currentHikes: {},
|
||||
currentQuestion: 1,
|
||||
showQuestion: false
|
||||
}
|
||||
};
|
||||
|
||||
@ -20,13 +22,13 @@ export default Store({
|
||||
init({ instance: appStore, args: [cat] }) {
|
||||
const { updateRoute, getUser, setTitle } = cat.getActions('appActions');
|
||||
const register = createRegistrar(appStore);
|
||||
const { fetchHikes } = cat.getActions('hikesActions');
|
||||
const { toggleQuestions, fetchHikes } = cat.getActions('hikesActions');
|
||||
|
||||
// app
|
||||
register(setter(fromMany(getUser, setTitle, updateRoute)));
|
||||
|
||||
// hikes
|
||||
register(fetchHikes);
|
||||
register(fromMany(fetchHikes, toggleQuestions));
|
||||
|
||||
return appStore;
|
||||
}
|
||||
|
@ -12,38 +12,22 @@ export default React.createClass({
|
||||
displayName: 'Hike',
|
||||
|
||||
propTypes: {
|
||||
dashedName: PropTypes.string,
|
||||
currentHike: PropTypes.object,
|
||||
showQuestions: PropTypes.bool
|
||||
},
|
||||
|
||||
renderBody(showQuestions, currentHike, dashedName) {
|
||||
renderBody(showQuestions) {
|
||||
if (showQuestions) {
|
||||
return (
|
||||
<Questions hike={ currentHike }/>
|
||||
);
|
||||
return <Questions />;
|
||||
}
|
||||
|
||||
const {
|
||||
challengeSeed: [ id ] = ['1'],
|
||||
description = []
|
||||
} = currentHike;
|
||||
|
||||
return (
|
||||
<Lecture
|
||||
dashedName={ dashedName }
|
||||
description={ description }
|
||||
id={ id } />
|
||||
);
|
||||
return <Lecture />;
|
||||
},
|
||||
|
||||
render() {
|
||||
const {
|
||||
currentHike = {},
|
||||
dashedName,
|
||||
currentHike: { title } = {},
|
||||
showQuestions
|
||||
} = this.props;
|
||||
const { title } = currentHike;
|
||||
|
||||
const videoTitle = <h2>{ title }</h2>;
|
||||
|
||||
@ -53,7 +37,7 @@ export default React.createClass({
|
||||
<Panel
|
||||
className={ 'text-center' }
|
||||
title={ videoTitle }>
|
||||
{ this.renderBody(showQuestions, currentHike, dashedName) }
|
||||
{ this.renderBody(showQuestions) }
|
||||
</Panel>
|
||||
</Row>
|
||||
</Col>
|
||||
|
@ -31,7 +31,8 @@ export default contain(
|
||||
children: PropTypes.element,
|
||||
currentHike: PropTypes.object,
|
||||
hikes: PropTypes.array,
|
||||
params: PropTypes.object
|
||||
params: PropTypes.object,
|
||||
showQuestions: PropTypes.bool
|
||||
},
|
||||
|
||||
componentWillMount() {
|
||||
@ -45,15 +46,15 @@ export default contain(
|
||||
);
|
||||
},
|
||||
|
||||
renderChild(children, hikes, currentHike, dashedName) {
|
||||
renderChild({ children, ...props }) {
|
||||
if (!children) {
|
||||
return null;
|
||||
}
|
||||
return React.cloneElement(children, { hikes, currentHike, dashedName });
|
||||
return React.cloneElement(children, props);
|
||||
},
|
||||
|
||||
render() {
|
||||
const { hikes, children, currentHike } = this.props;
|
||||
const { hikes } = this.props;
|
||||
const { dashedName } = this.props.params;
|
||||
const preventOverflow = { overflow: 'hidden' };
|
||||
return (
|
||||
@ -61,7 +62,7 @@ export default contain(
|
||||
<Row style={ preventOverflow }>
|
||||
{
|
||||
// render sub-route
|
||||
this.renderChild(children, hikes, currentHike, dashedName) ||
|
||||
this.renderChild({ ...this.props, dashedName }) ||
|
||||
// if no sub-route render hikes map
|
||||
this.renderMap(hikes)
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
import React, { PropTypes } from 'react';
|
||||
import { contain } from 'thundercats-react';
|
||||
import { Button, Col, Row } from 'react-bootstrap';
|
||||
import { History } from 'react-router';
|
||||
import Vimeo from 'react-vimeo';
|
||||
@ -6,53 +7,82 @@ import debugFactory from 'debug';
|
||||
|
||||
const debug = debugFactory('freecc:hikes');
|
||||
|
||||
export default React.createClass({
|
||||
displayName: 'Lecture',
|
||||
mixins: [History],
|
||||
export default contain(
|
||||
{
|
||||
actions: ['hikesActions'],
|
||||
store: 'appStore',
|
||||
map(state) {
|
||||
const {
|
||||
currentHike: {
|
||||
dashedName,
|
||||
description,
|
||||
challengeSeed: [id] = [0]
|
||||
} = {}
|
||||
} = state.hikesApp;
|
||||
|
||||
propTypes: {
|
||||
dashedName: PropTypes.string,
|
||||
description: PropTypes.array,
|
||||
id: PropTypes.string
|
||||
return {
|
||||
dashedName,
|
||||
description,
|
||||
id
|
||||
};
|
||||
}
|
||||
},
|
||||
React.createClass({
|
||||
displayName: 'Lecture',
|
||||
mixins: [History],
|
||||
|
||||
handleError: debug,
|
||||
propTypes: {
|
||||
dashedName: PropTypes.string,
|
||||
description: PropTypes.array,
|
||||
id: PropTypes.string,
|
||||
hikesActions: PropTypes.object
|
||||
},
|
||||
|
||||
handleFinish() {
|
||||
debug('loading questions');
|
||||
},
|
||||
shouldComponentUpdate(nextProps) {
|
||||
const { props } = this;
|
||||
return nextProps.id !== props.id;
|
||||
},
|
||||
|
||||
renderTranscript(transcript, dashedName) {
|
||||
return transcript.map((line, index) => (
|
||||
<p key={ dashedName + index }>{ line }</p>
|
||||
));
|
||||
},
|
||||
handleError: debug,
|
||||
|
||||
render() {
|
||||
const {
|
||||
id = '1',
|
||||
dashedName,
|
||||
description = []
|
||||
} = this.props;
|
||||
handleFinish(hikesActions) {
|
||||
debug('loading questions');
|
||||
hikesActions.toggleQuestions();
|
||||
},
|
||||
|
||||
return (
|
||||
<Col xs={ 12 }>
|
||||
<Row>
|
||||
<Vimeo
|
||||
onError={ this.handleError }
|
||||
onFinish= { this.handleFinish }
|
||||
videoId={ id } />
|
||||
</Row>
|
||||
<Row>
|
||||
{ this.renderTranscript(description, dashedName) }
|
||||
<Button
|
||||
block={ true }
|
||||
bsSize='large'
|
||||
onClick={ this.handleFinish }>
|
||||
Take me to the Questions
|
||||
</Button>
|
||||
</Row>
|
||||
</Col>
|
||||
);
|
||||
}
|
||||
});
|
||||
renderTranscript(transcript, dashedName) {
|
||||
return transcript.map((line, index) => (
|
||||
<p key={ dashedName + index }>{ line }</p>
|
||||
));
|
||||
},
|
||||
|
||||
render() {
|
||||
const {
|
||||
id = '1',
|
||||
description = [],
|
||||
hikesActions
|
||||
} = this.props;
|
||||
const dashedName = 'foo';
|
||||
|
||||
return (
|
||||
<Col xs={ 12 }>
|
||||
<Row>
|
||||
<Vimeo
|
||||
onError={ this.handleError }
|
||||
onFinish= { this.handleFinish }
|
||||
videoId={ id } />
|
||||
</Row>
|
||||
<Row>
|
||||
{ this.renderTranscript(description, dashedName) }
|
||||
<Button
|
||||
block={ true }
|
||||
bsSize='large'
|
||||
onClick={ () => this.handleFinish(hikesActions) }>
|
||||
Take me to the Questions
|
||||
</Button>
|
||||
</Row>
|
||||
</Col>
|
||||
);
|
||||
}
|
||||
})
|
||||
);
|
||||
|
@ -1,6 +1,6 @@
|
||||
import React, { PropTypes } from 'react';
|
||||
import { Motion } from 'react-motion';
|
||||
import { History, Lifecycle } from 'react-router';
|
||||
import { contain } from 'thundercats-react';
|
||||
import debugFactory from 'debug';
|
||||
import {
|
||||
Button,
|
||||
@ -10,269 +10,250 @@ import {
|
||||
Row
|
||||
} from 'react-bootstrap';
|
||||
|
||||
import { postJSON$ } from '../../../../utils/ajax-stream.js';
|
||||
|
||||
const debug = debugFactory('freecc:hikes');
|
||||
const ANSWER_THRESHOLD = 200;
|
||||
|
||||
export default React.createClass({
|
||||
displayName: 'Questions',
|
||||
export default contain(
|
||||
{
|
||||
store: 'appStore',
|
||||
actions: ['hikesAction'],
|
||||
map(state) {
|
||||
const { currentQuestion, currentHike } = state.hikesApp;
|
||||
|
||||
mixins: [
|
||||
History,
|
||||
Lifecycle
|
||||
],
|
||||
|
||||
propTypes: {
|
||||
currentHike: PropTypes.object,
|
||||
dashedName: PropTypes.string,
|
||||
hikes: PropTypes.array,
|
||||
params: PropTypes.object
|
||||
},
|
||||
|
||||
getInitialState: () => ({
|
||||
mouse: [0, 0],
|
||||
correct: false,
|
||||
delta: [0, 0],
|
||||
isPressed: false,
|
||||
showInfo: false,
|
||||
shake: false
|
||||
}),
|
||||
|
||||
getTweenValues() {
|
||||
const { mouse: [x, y] } = this.state;
|
||||
return {
|
||||
val: { x, y },
|
||||
config: [120, 10]
|
||||
};
|
||||
},
|
||||
|
||||
handleMouseDown({ pageX, pageY, touches }) {
|
||||
if (touches) {
|
||||
({ pageX, pageY } = touches[0]);
|
||||
return {
|
||||
hike: currentHike,
|
||||
currentQuestion
|
||||
};
|
||||
}
|
||||
const { mouse: [pressX, pressY] } = this.state;
|
||||
const dx = pageX - pressX;
|
||||
const dy = pageY - pressY;
|
||||
this.setState({
|
||||
isPressed: true,
|
||||
delta: [dx, dy],
|
||||
mouse: [pageX - dx, pageY - dy]
|
||||
});
|
||||
},
|
||||
React.createClass({
|
||||
displayName: 'Questions',
|
||||
|
||||
handleMouseUp() {
|
||||
const { correct } = this.state;
|
||||
if (correct) {
|
||||
return this.setState({
|
||||
isPressed: false,
|
||||
delta: [0, 0]
|
||||
});
|
||||
}
|
||||
this.setState({
|
||||
isPressed: false,
|
||||
propTypes: {
|
||||
dashedName: PropTypes.string,
|
||||
currentQuestion: PropTypes.number,
|
||||
hike: PropTypes.object,
|
||||
hikesActions: PropTypes.object
|
||||
},
|
||||
|
||||
getInitialState: () => ({
|
||||
mouse: [0, 0],
|
||||
delta: [0, 0]
|
||||
});
|
||||
},
|
||||
correct: false,
|
||||
delta: [0, 0],
|
||||
isPressed: false,
|
||||
showInfo: false,
|
||||
shake: false
|
||||
}),
|
||||
|
||||
handleMouseMove(answer) {
|
||||
return (e) => {
|
||||
let { pageX, pageY, touches } = e;
|
||||
getTweenValues() {
|
||||
const { mouse: [x, y] } = this.state;
|
||||
return {
|
||||
val: { x, y },
|
||||
config: [120, 10]
|
||||
};
|
||||
},
|
||||
|
||||
handleMouseDown({ pageX, pageY, touches }) {
|
||||
if (touches) {
|
||||
e.preventDefault();
|
||||
// these reassins the values of pageX, pageY from touches
|
||||
({ pageX, pageY } = touches[0]);
|
||||
}
|
||||
|
||||
const { isPressed, delta: [dx, dy] } = this.state;
|
||||
if (isPressed) {
|
||||
const mouse = [pageX - dx, pageY - dy];
|
||||
if (mouse[0] >= ANSWER_THRESHOLD) {
|
||||
this.handleMouseUp();
|
||||
return this.onAnswer(answer, true)();
|
||||
}
|
||||
if (mouse[0] <= -ANSWER_THRESHOLD) {
|
||||
this.handleMouseUp();
|
||||
return this.onAnswer(answer, false)();
|
||||
}
|
||||
this.setState({ mouse });
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
hideInfo() {
|
||||
this.setState({ showInfo: false });
|
||||
},
|
||||
|
||||
onAnswer(answer, userAnswer) {
|
||||
return (e) => {
|
||||
if (e && e.preventDefault) {
|
||||
e.preventDefault();
|
||||
}
|
||||
|
||||
if (this.disposeTimeout) {
|
||||
clearTimeout(this.disposeTimeout);
|
||||
this.disposeTimeout = null;
|
||||
}
|
||||
|
||||
if (answer === userAnswer) {
|
||||
debug('correct answer!');
|
||||
this.setState({
|
||||
correct: true,
|
||||
mouse: [ userAnswer ? 1000 : -1000, 0]
|
||||
});
|
||||
this.disposeTimeout = setTimeout(() => {
|
||||
this.onCorrectAnswer();
|
||||
}, 1000);
|
||||
return;
|
||||
}
|
||||
|
||||
debug('incorrect');
|
||||
const { mouse: [pressX, pressY] } = this.state;
|
||||
const dx = pageX - pressX;
|
||||
const dy = pageY - pressY;
|
||||
this.setState({
|
||||
showInfo: true,
|
||||
shake: true
|
||||
isPressed: true,
|
||||
delta: [dx, dy],
|
||||
mouse: [pageX - dx, pageY - dy]
|
||||
});
|
||||
},
|
||||
|
||||
this.disposeTimeout = setTimeout(
|
||||
() => this.setState({ shake: false }),
|
||||
500
|
||||
);
|
||||
};
|
||||
},
|
||||
|
||||
onCorrectAnswer() {
|
||||
const { hikes, currentHike } = this.props;
|
||||
const { dashedName, number } = this.props.params;
|
||||
const { id, name, difficulty, tests } = currentHike;
|
||||
const nextQuestionIndex = +number;
|
||||
|
||||
postJSON$('/completed-challenge', { id, name }).subscribeOnCompleted(() => {
|
||||
if (tests[nextQuestionIndex]) {
|
||||
return this.history.pushState(
|
||||
null,
|
||||
`/hikes/${ dashedName }/questions/${ nextQuestionIndex + 1 }`
|
||||
);
|
||||
handleMouseUp() {
|
||||
const { correct } = this.state;
|
||||
if (correct) {
|
||||
return this.setState({
|
||||
isPressed: false,
|
||||
delta: [0, 0]
|
||||
});
|
||||
}
|
||||
// next questions does not exist;
|
||||
debug('finding next hike');
|
||||
const nextHike = [].slice.call(hikes)
|
||||
// hikes is in oder of difficulty, lets get reverse order
|
||||
.reverse()
|
||||
// now lets find the hike with the difficulty right above this one
|
||||
.reduce((lowerHike, hike) => {
|
||||
if (hike.difficulty > difficulty) {
|
||||
return hike;
|
||||
this.setState({
|
||||
isPressed: false,
|
||||
mouse: [0, 0],
|
||||
delta: [0, 0]
|
||||
});
|
||||
},
|
||||
|
||||
handleMouseMove(answer) {
|
||||
return (e) => {
|
||||
let { pageX, pageY, touches } = e;
|
||||
|
||||
if (touches) {
|
||||
e.preventDefault();
|
||||
// these reassins the values of pageX, pageY from touches
|
||||
({ pageX, pageY } = touches[0]);
|
||||
}
|
||||
|
||||
const { isPressed, delta: [dx, dy] } = this.state;
|
||||
if (isPressed) {
|
||||
const mouse = [pageX - dx, pageY - dy];
|
||||
if (mouse[0] >= ANSWER_THRESHOLD) {
|
||||
this.handleMouseUp();
|
||||
return this.onAnswer(answer, true)();
|
||||
}
|
||||
return lowerHike;
|
||||
}, null);
|
||||
|
||||
if (nextHike) {
|
||||
return this.history.pushState(null, `/hikes/${ nextHike.dashedName }`);
|
||||
}
|
||||
debug(
|
||||
'next Hike was not found, currentHike %s',
|
||||
currentHike.dashedName
|
||||
);
|
||||
this.history.pushState(null, '/hikes');
|
||||
});
|
||||
},
|
||||
|
||||
routerWillLeave(nextState, router, cb) {
|
||||
// TODO(berks): do animated transitions here stuff here
|
||||
this.setState({
|
||||
showInfo: false,
|
||||
correct: false,
|
||||
mouse: [0, 0]
|
||||
}, cb);
|
||||
},
|
||||
|
||||
renderInfo(showInfo, info) {
|
||||
if (!info) {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
<Modal
|
||||
backdrop={ true }
|
||||
onHide={ this.hideInfo }
|
||||
show={ showInfo }>
|
||||
<Modal.Body>
|
||||
<h3>
|
||||
{ info }
|
||||
</h3>
|
||||
</Modal.Body>
|
||||
<Modal.Footer>
|
||||
<Button
|
||||
block={ true }
|
||||
bsSize='large'
|
||||
onClick={ this.hideInfo }>
|
||||
hide
|
||||
</Button>
|
||||
</Modal.Footer>
|
||||
</Modal>
|
||||
);
|
||||
},
|
||||
|
||||
renderQuestion(number, question, answer, shake) {
|
||||
return ({ x: xFunc }) => {
|
||||
const x = xFunc().val.x;
|
||||
const style = {
|
||||
WebkitTransform: `translate3d(${ x }px, 0, 0)`,
|
||||
transform: `translate3d(${ x }px, 0, 0)`
|
||||
if (mouse[0] <= -ANSWER_THRESHOLD) {
|
||||
this.handleMouseUp();
|
||||
return this.onAnswer(answer, false)();
|
||||
}
|
||||
this.setState({ mouse });
|
||||
}
|
||||
};
|
||||
const title = <h4>Question { number }</h4>;
|
||||
},
|
||||
|
||||
hideInfo() {
|
||||
this.setState({ showInfo: false });
|
||||
},
|
||||
|
||||
onAnswer(answer, userAnswer) {
|
||||
return (e) => {
|
||||
if (e && e.preventDefault) {
|
||||
e.preventDefault();
|
||||
}
|
||||
|
||||
if (this.disposeTimeout) {
|
||||
clearTimeout(this.disposeTimeout);
|
||||
this.disposeTimeout = null;
|
||||
}
|
||||
|
||||
if (answer === userAnswer) {
|
||||
debug('correct answer!');
|
||||
this.setState({
|
||||
correct: true,
|
||||
mouse: [ userAnswer ? 1000 : -1000, 0]
|
||||
});
|
||||
this.disposeTimeout = setTimeout(() => {
|
||||
this.onCorrectAnswer();
|
||||
}, 1000);
|
||||
return;
|
||||
}
|
||||
|
||||
debug('incorrect');
|
||||
this.setState({
|
||||
showInfo: true,
|
||||
shake: true
|
||||
});
|
||||
|
||||
this.disposeTimeout = setTimeout(
|
||||
() => this.setState({ shake: false }),
|
||||
500
|
||||
);
|
||||
};
|
||||
},
|
||||
|
||||
onCorrectAnswer() {
|
||||
const {
|
||||
hikesActions,
|
||||
hike: { id, name }
|
||||
} = this.props;
|
||||
|
||||
hikesActions.completedHike({ id, name });
|
||||
},
|
||||
|
||||
routerWillLeave(nextState, router, cb) {
|
||||
// TODO(berks): do animated transitions here stuff here
|
||||
this.setState({
|
||||
showInfo: false,
|
||||
correct: false,
|
||||
mouse: [0, 0]
|
||||
}, cb);
|
||||
},
|
||||
|
||||
renderInfo(showInfo, info) {
|
||||
if (!info) {
|
||||
return null;
|
||||
}
|
||||
return (
|
||||
<Panel
|
||||
className={ shake ? 'animated swing shake' : '' }
|
||||
header={ title }
|
||||
onMouseDown={ this.handleMouseDown }
|
||||
onMouseLeave={ this.handleMouseUp }
|
||||
onMouseMove={ this.handleMouseMove(answer) }
|
||||
onMouseUp={ this.handleMouseUp }
|
||||
onTouchEnd={ this.handleMouseUp }
|
||||
onTouchMove={ this.handleMouseMove(answer) }
|
||||
onTouchStart={ this.handleMouseDown }
|
||||
style={ style }>
|
||||
<p>{ question }</p>
|
||||
</Panel>
|
||||
<Modal
|
||||
backdrop={ true }
|
||||
onHide={ this.hideInfo }
|
||||
show={ showInfo }>
|
||||
<Modal.Body>
|
||||
<h3>
|
||||
{ info }
|
||||
</h3>
|
||||
</Modal.Body>
|
||||
<Modal.Footer>
|
||||
<Button
|
||||
block={ true }
|
||||
bsSize='large'
|
||||
onClick={ this.hideInfo }>
|
||||
hide
|
||||
</Button>
|
||||
</Modal.Footer>
|
||||
</Modal>
|
||||
);
|
||||
};
|
||||
},
|
||||
},
|
||||
|
||||
render() {
|
||||
const { showInfo, shake } = this.state;
|
||||
const { currentHike: { tests = [] } } = this.props;
|
||||
const { number = '1' } = this.props.params;
|
||||
|
||||
const [question, answer, info] = tests[number - 1] || [];
|
||||
|
||||
return (
|
||||
<Col
|
||||
onMouseUp={ this.handleMouseUp }
|
||||
xs={ 8 }
|
||||
xsOffset={ 2 }>
|
||||
<Row>
|
||||
<Motion style={{ x: this.getTweenValues }}>
|
||||
{ this.renderQuestion(number, question, answer, shake) }
|
||||
</Motion>
|
||||
{ this.renderInfo(showInfo, info) }
|
||||
<Panel>
|
||||
<Button
|
||||
bsSize='large'
|
||||
className='pull-left'
|
||||
onClick={ this.onAnswer(answer, false, info) }>
|
||||
false
|
||||
</Button>
|
||||
<Button
|
||||
bsSize='large'
|
||||
className='pull-right'
|
||||
onClick={ this.onAnswer(answer, true, info) }>
|
||||
true
|
||||
</Button>
|
||||
renderQuestion(number, question, answer, shake) {
|
||||
return ({ x: xFunc }) => {
|
||||
const x = xFunc().val.x;
|
||||
const style = {
|
||||
WebkitTransform: `translate3d(${ x }px, 0, 0)`,
|
||||
transform: `translate3d(${ x }px, 0, 0)`
|
||||
};
|
||||
const title = <h4>Question { number }</h4>;
|
||||
return (
|
||||
<Panel
|
||||
className={ shake ? 'animated swing shake' : '' }
|
||||
header={ title }
|
||||
onMouseDown={ this.handleMouseDown }
|
||||
onMouseLeave={ this.handleMouseUp }
|
||||
onMouseMove={ this.handleMouseMove(answer) }
|
||||
onMouseUp={ this.handleMouseUp }
|
||||
onTouchEnd={ this.handleMouseUp }
|
||||
onTouchMove={ this.handleMouseMove(answer) }
|
||||
onTouchStart={ this.handleMouseDown }
|
||||
style={ style }>
|
||||
<p>{ question }</p>
|
||||
</Panel>
|
||||
</Row>
|
||||
</Col>
|
||||
);
|
||||
}
|
||||
});
|
||||
);
|
||||
};
|
||||
},
|
||||
|
||||
render() {
|
||||
const { showInfo, shake } = this.state;
|
||||
const {
|
||||
hike: { tests = [] } = {},
|
||||
currentQuestion
|
||||
} = this.props;
|
||||
|
||||
const [ question, answer, info ] = tests[currentQuestion - 1] || [];
|
||||
|
||||
return (
|
||||
<Col
|
||||
onMouseUp={ this.handleMouseUp }
|
||||
xs={ 8 }
|
||||
xsOffset={ 2 }>
|
||||
<Row>
|
||||
<Motion style={{ x: this.getTweenValues }}>
|
||||
{ this.renderQuestion(currentQuestion, question, answer, shake) }
|
||||
</Motion>
|
||||
{ this.renderInfo(showInfo, info) }
|
||||
<Panel>
|
||||
<Button
|
||||
bsSize='large'
|
||||
className='pull-left'
|
||||
onClick={ this.onAnswer(answer, false, info) }>
|
||||
false
|
||||
</Button>
|
||||
<Button
|
||||
bsSize='large'
|
||||
className='pull-right'
|
||||
onClick={ this.onAnswer(answer, true, info) }>
|
||||
true
|
||||
</Button>
|
||||
</Panel>
|
||||
</Row>
|
||||
</Col>
|
||||
);
|
||||
}
|
||||
})
|
||||
);
|
||||
|
@ -1,3 +1,5 @@
|
||||
import _ from 'lodash';
|
||||
import { Observable } from 'rx';
|
||||
import { Actions } from 'thundercats';
|
||||
import debugFactory from 'debug';
|
||||
|
||||
@ -24,6 +26,15 @@ function getCurrentHike(hikes = [{}], dashedName, currentHike) {
|
||||
}, currentHike || {});
|
||||
}
|
||||
|
||||
function findNextHike(hikes, id) {
|
||||
if (!id) {
|
||||
debug('find next hike no id provided');
|
||||
return hikes[0];
|
||||
}
|
||||
const currentIndex = _.findIndex(hikes, ({ id: _id }) => _id === id);
|
||||
return hikes[currentIndex + 1] || hikes[0];
|
||||
}
|
||||
|
||||
export default Actions({
|
||||
refs: { displayName: 'HikesActions' },
|
||||
shouldBindMethods: true,
|
||||
@ -47,19 +58,53 @@ export default Actions({
|
||||
|
||||
return this.readService$('hikes', null, null)
|
||||
.map(hikes => {
|
||||
const hikesApp = {
|
||||
hikes,
|
||||
currentHike: getCurrentHike(hikes, dashedName)
|
||||
};
|
||||
|
||||
const currentHike = getCurrentHike(hikes, dashedName);
|
||||
return {
|
||||
transform(oldState) {
|
||||
return Object.assign({}, oldState, { hikesApp });
|
||||
transform(state) {
|
||||
const hikesApp = { ...state.hikesApp, currentHike, hikes };
|
||||
return { ...state, hikesApp };
|
||||
}
|
||||
};
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
});
|
||||
},
|
||||
|
||||
toggleQuestions() {
|
||||
return {
|
||||
transform(state) {
|
||||
state.hikesApp.showQuestions = !state.hikesApp.showQuestions;
|
||||
return Object.assign({}, state);
|
||||
}
|
||||
};
|
||||
},
|
||||
|
||||
completedHike(data = {}) {
|
||||
return this.postJSON$('/completed-challenge', data)
|
||||
.map(() => {
|
||||
return {
|
||||
transform(state) {
|
||||
const { hikes, currentHike: { id } } = state.hikesApp;
|
||||
const currentHike = findNextHike(hikes, id);
|
||||
|
||||
// go to next route
|
||||
state.route = currentHike && currentHike.dashedName ?
|
||||
`/hikes/${ currentHike.dashedName }` :
|
||||
'/hikes';
|
||||
|
||||
const hikesApp = { ...state.hikesApp, currentHike };
|
||||
return { ...state, hikesApp };
|
||||
}
|
||||
};
|
||||
})
|
||||
.catch(err => {
|
||||
console.error(err);
|
||||
return Observable.just({
|
||||
set: {
|
||||
error: err
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user