summaryrefslogtreecommitdiff
path: root/client/components/Scroller.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2017-06-21 14:02:42 +0200
committerJules Laplace <julescarbon@gmail.com>2017-06-21 14:02:42 +0200
commit08e9e158f9e1b60cb2aefd0fcb88fc82c8b5ed5a (patch)
treee1e98fb624a435838d0b897a2112be2a36139c6c /client/components/Scroller.js
parent8a6b1cc6a1d20a9d3a3170ba12b86adbb48cb2eb (diff)
refactor
Diffstat (limited to 'client/components/Scroller.js')
-rw-r--r--client/components/Scroller.js72
1 files changed, 72 insertions, 0 deletions
diff --git a/client/components/Scroller.js b/client/components/Scroller.js
new file mode 100644
index 0000000..9bbe7d4
--- /dev/null
+++ b/client/components/Scroller.js
@@ -0,0 +1,72 @@
+import { h, Component } from 'preact'
+import { Lethargy } from 'lethargy'
+import { Link } from 'react-router-dom'
+
+export default class Scroller extends Component {
+ constructor() {
+ super()
+ this.state = {
+ index: 0,
+ }
+ this.lastScroll = Date.now()
+ this.onScroll = this.onScroll.bind(this)
+ this.lethargy = new Lethargy(8, 100, 1.1, 1000)
+ document.body.addEventListener('wheel', this.onScroll)
+ document.body.addEventListener('DOMMouseScroll', this.onScroll)
+ }
+ onScroll(e) {
+ e.preventDefault()
+ e.stopPropagation()
+ const scrollDirection = this.lethargy.check(e)
+ const now = Date.now()
+ if (scrollDirection !== false && now - this.lastScroll > 600) {
+ this.lastScroll = now
+ const cellCount = this.props.data.painting.length + 1
+ const index = (this.state.index + cellCount - scrollDirection) % cellCount
+ this.setState({ index })
+ }
+ }
+ render() {
+ const paintings = this.props.data.painting.map( (painting, i) => {
+ return (
+ <div class='cell' key={i}>
+ <div class='painting'>
+ <div class='image' style={'background-image: url(' + painting.image.uri + ')'} />
+ </div>
+ <div class='about'>
+ <div>
+ {painting.title}<br/>
+ {painting.medium}<br/>
+ {painting.date}<br/>
+ {painting.image.caption}<br/>
+ <br/>
+ <Link to={'/painting/' + painting.id}>
+ More info &gt;
+ </Link>
+ </div>
+ </div>
+ </div>
+ )
+ })
+ const about = this.props.data.page[0]
+ const body = (about.body || '').replace(/\n/g,'<br>')
+ const page = (
+ <div class='cell'>
+ <div class='painting'>
+ <div class='image' style={'background-image: url(' + about.image.uri + ')'} />
+ </div>
+ <div class='about' dangerouslySetInnerHTML={{ __html: body }}>
+ </div>
+ </div>
+ )
+ const scrollPercentage = this.state.index * -100
+ return (
+ <div class='scroller'
+ style={'transform:translateY(' + scrollPercentage + 'vh)'}
+ >
+ {paintings}
+ {page}
+ </div>
+ )
+ }
+}