私はWebpack、Redux、およびReactJSを使用しています。htmlをJSX、ReactJSコンポーネントに変換するには?
現在、私はindex.html
に次のような設定をしていますが、JSX、ReactJS Componentに変換します。そうするための正しい方法と正しい方法は何ですか?
そして、私のindex.html
<head/>
で、classie.js
と呼ばれるクラスのヘルパー関数を持っている:
<script src="classie.js"></script>
<script>
function init() {
window.addEventListener('scroll', function(e){
var distanceY = window.pageYOffset || document.documentElement.scrollTop,
shrinkOn = 300,
header = document.querySelector("header");
if (distanceY > shrinkOn) {
classie.add(header,"smaller");
} else {
if (classie.has(header,"smaller")) {
classie.remove(header,"smaller");
}
}
});
}
window.onload = init();
</script>
そして、私のindex.html
<body/>
中:
<div id="wrapper">
<header>
<div class="container clearfix">
<h1 id="logo">
Practice Navigation Bar
</h1>
<nav>
<a href="">Button 1</a>
<a href="">Button 2</a>
</nav>
</div>
</header>
</div>
したがって、次のReactJS構成要素の形式などに変換します
//App.js
import React, { Component } from 'react'
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import actions from '../redux/actions'
class NavBar extends Component {
render() {
return (
<div>
{/*e.g. What should go in here?*/}
</div>
);
}
}
function mapStateToProps(state) {
return state
}
function mapDispatchToProps(dispatch) {
return {
actions: bindActionCreators(actions, dispatch)
}
}
export default connect(
mapStateToProps,
mapDispatchToProps
)(NavBar)
ありがとうございます!
これは正しい前提です!私の 'index.html'の'