index.md.jsx 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. *
  19. */
  20. import React from 'react';
  21. import ReactDOM from 'react-dom';
  22. import cookie from 'js-cookie';
  23. import Language from '../../components/language';
  24. import Header from '../../components/header';
  25. import Footer from '../../components/footer';
  26. import Md2Html from '../../components/md2html';
  27. import Sidemenu from '../../components/sidemenu';
  28. import siteConfig from '../../../site_config/site';
  29. import docs120Config from '../../../site_config/docs1-2-0';
  30. import docs121Config from '../../../site_config/docs1-2-1';
  31. import docs131Config from '../../../site_config/docs1-3-1';
  32. import docs132Config from '../../../site_config/docs1-3-2';
  33. import docs133Config from '../../../site_config/docs1-3-3';
  34. import docs134Config from '../../../site_config/docs1-3-4';
  35. import docs135Config from '../../../site_config/docs1-3-5';
  36. import docs136Config from '../../../site_config/docs1-3-6';
  37. import docs138Config from '../../../site_config/docs1-3-8';
  38. import docs139Config from '../../../site_config/docs1-3-9';
  39. import docs200Config from '../../../site_config/docs2-0-0';
  40. import docs201Config from '../../../site_config/docs2-0-1';
  41. import docs202Config from '../../../site_config/docs2-0-2';
  42. import docs203Config from '../../../site_config/docs2-0-3';
  43. import docs205Config from '../../../site_config/docs2-0-5';
  44. import docs206Config from '../../../site_config/docs2-0-6';
  45. import docs300Config from '../../../site_config/docs3-0-0';
  46. import docs301Config from '../../../site_config/docs3-0-1';
  47. import docsDevConfig from '../../../site_config/docsdev';
  48. const docsSource = {
  49. '1.2.0': docs120Config,
  50. '1.2.1': docs121Config,
  51. '1.3.1': docs131Config,
  52. '1.3.2': docs132Config,
  53. '1.3.3': docs133Config,
  54. '1.3.4': docs134Config,
  55. '1.3.5': docs135Config,
  56. '1.3.6': docs136Config,
  57. '1.3.8': docs138Config,
  58. '1.3.9': docs139Config,
  59. '2.0.0': docs200Config,
  60. '2.0.1': docs201Config,
  61. '2.0.2': docs202Config,
  62. '2.0.3': docs203Config,
  63. '2.0.5': docs205Config,
  64. '2.0.6': docs206Config,
  65. '3.0.0': docs300Config,
  66. '3.0.1': docs301Config,
  67. dev: docsDevConfig,
  68. };
  69. const isValidVersion = version => version && docsSource.hasOwnProperty(version);
  70. class Docs extends Md2Html(Language) {
  71. render() {
  72. const language = this.getLanguage();
  73. let dataSource = {};
  74. // from location path
  75. let version = window.location.pathname.split('/')[3];
  76. if (isValidVersion(version) || version === 'latest') {
  77. cookie.set('docs_version', version);
  78. }
  79. // from rendering html
  80. if (!version && this.props.subdir) {
  81. version = this.props.subdir.split('/')[0];
  82. }
  83. if (isValidVersion(version)) {
  84. dataSource = docsSource[version][language];
  85. } else if (isValidVersion(cookie.get('docs_version'))) {
  86. dataSource = docsSource[cookie.get('docs_version')][language];
  87. } else if (isValidVersion(siteConfig.docsLatest)) {
  88. dataSource = docsSource[siteConfig.docsLatest][language];
  89. dataSource.sidemenu.forEach((menu) => {
  90. menu.children.forEach((submenu) => {
  91. if (!submenu.children) {
  92. submenu.link = submenu.link.replace(`docs/${siteConfig.docsLatest}`, 'docs/latest');
  93. } else {
  94. submenu.children.forEach((menuLevel3) => {
  95. menuLevel3.link = menuLevel3.link.replace(`docs/${siteConfig.docsLatest}`, 'docs/latest');
  96. });
  97. }
  98. });
  99. });
  100. } else {
  101. return null;
  102. }
  103. const __html = this.props.__html || this.state.__html;
  104. return (
  105. <div className="md2html docs-page">
  106. <Header
  107. currentKey="docs"
  108. type="dark"
  109. logo="/img/hlogo_white.svg"
  110. language={language}
  111. onLanguageChange={this.onLanguageChange}
  112. />
  113. <section className="content-section">
  114. <Sidemenu dataSource={dataSource.sidemenu} />
  115. <div
  116. className="doc-content markdown-body"
  117. ref={(node) => { this.markdownContainer = node; }}
  118. dangerouslySetInnerHTML={{ __html }}
  119. />
  120. </section>
  121. <Footer logo="/img/ds_gray.svg" language={language} />
  122. </div>
  123. );
  124. }
  125. }
  126. document.getElementById('root') && ReactDOM.render(<Docs />, document.getElementById('root'));
  127. export default Docs;