content.jsx 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. import React, { Component } from "react";
  2. import "../content.less";
  3. import "./content.less";
  4. import LeftTab from "../leftTab";
  5. import { getMenu } from "../publicMenu.js";
  6. class Content extends Component {
  7. constructor() {
  8. super();
  9. this.state = {
  10. loading: false,
  11. component: <div></div>,
  12. };
  13. }
  14. componentWillMount() {
  15. var ids = window.location.href.indexOf("rid=");
  16. var idk = window.location.href.substr(ids + 4);
  17. var rid = idk.split("#");
  18. let menu = getMenu(rid);
  19. let curry;
  20. if (menu[0].subMenus.length > 0) {
  21. curry = menu[0].subMenus[0].url.split("#");
  22. } else {
  23. curry = menu[0].url.split("#");
  24. }
  25. if (window.location.hash) {
  26. this.getKey(window.location.hash.substr(1));
  27. } else {
  28. this.getKey(curry[1]);
  29. }
  30. }
  31. getKey(key) {
  32. switch (key) {
  33. //私有渠道
  34. case "channelunit":
  35. require.ensure([], () => {
  36. const Channelunit = require("./channelunit").default;
  37. this.setState({
  38. component: <Channelunit />,
  39. });
  40. });
  41. break;
  42. //公共渠道
  43. case "channelpublic":
  44. require.ensure([], () => {
  45. const Channelpublic = require("./channelunit/publist").default;
  46. this.setState({
  47. component: <Channelpublic />,
  48. });
  49. });
  50. break;
  51. //空白
  52. default:
  53. require.ensure([], () => {
  54. const Module = require("../module").default;
  55. this.setState({
  56. component: <Module />,
  57. });
  58. });
  59. }
  60. window.location.hash = key;
  61. }
  62. render() {
  63. return (
  64. <div className="manage-content">
  65. <LeftTab handlekey={this.getKey.bind(this)} />
  66. <div className="content-right">{this.state.component}</div>
  67. </div>
  68. );
  69. }
  70. }
  71. export default Content;