content.jsx 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import React, { Component } from 'react';
  2. import '../content.less';
  3. import LeftTab from './leftTab';
  4. class Content extends Component {
  5. constructor() {
  6. super();
  7. this.state = {
  8. loading: false,
  9. component: 'div'
  10. };
  11. }
  12. componentWillMount() {
  13. if (window.location.hash) {
  14. this.getKey(window.location.hash.substr(1));
  15. } else {
  16. this.getKey("normal");
  17. };
  18. }
  19. getKey(key) {
  20. switch (key) {
  21. case 'normal':
  22. require.ensure([], () => {
  23. const Normal = require('./normal').default;
  24. this.setState({
  25. component: Normal
  26. });
  27. });
  28. break;
  29. case 'collection':
  30. require.ensure([], () => {
  31. const Collection = require('./collection').default;
  32. this.setState({
  33. component: Collection
  34. });
  35. });
  36. break;
  37. };
  38. window.location.hash = key;
  39. }
  40. render() {
  41. return (
  42. <div className="acc-content">
  43. <LeftTab handlekey={this.getKey.bind(this)} />
  44. <div className="content-right">
  45. <this.state.component />
  46. </div>
  47. </div>
  48. )
  49. }
  50. }
  51. export default Content;