aboutsummaryrefslogblamecommitdiffstats
path: root/spring-front/src/components/Left.js
blob: af4def7b214e20b0922d4eb40f8dd572c8f2c461 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          
                                 
                                         
                                           
                                                              



                                            


                                    









                                                     












                                                              
                                                     

                                   
   
 

            






                                                             


            

 








                                                       
 

                                                 
   
 
                      







                                                                      



                                                                 
 







                                                               
                                


















                                                                             

                                               


                                                 
                       


                  



                                


                


          
import React from "react";
import ReactDOM from "react-dom";
import hljs from "highlight.js/lib/core";
import "highlight.js/styles/devibeans.css";
import markdown from "highlight.js/lib/languages/markdown.js";
import "../index.css";

hljs.registerLanguage("markdown", markdown);

class Code extends React.Component {
  constructor(props) {
    super(props);
    this.updateCodeSyntaxHighlighting =
      this.updateCodeSyntaxHighlighting.bind(this);
    this.handleChange = this.handleChange.bind(this);
    this.state = { value: "" };
  }

  handleChange(event) {
    this.setState({ value: event.target.value });
    this.updateCodeSyntaxHighlighting();
    console.log(this.state.value);
  }

  componentDidMount() {
    this.updateCodeSyntaxHighlighting();
  }

  componentDidUpdate() {
    this.updateCodeSyntaxHighlighting();
  }

  updateCodeSyntaxHighlighting() {
    document.querySelectorAll("pre code").forEach((block) => {
      console.log("block:", block);
      console.log("blockt text:", block.textContent);
      hljs.highlightElement(block);
    });
  }

  render() {
    return (
      <pre id="highlight" aria-hidden="true" direction="rtl">
        <code
          id="highlight-content"
          onChange={this.handleChange.bind(this)}
          class="language-markdown"
          direction="rtl"
        ></code>
      </pre>
    );
  }
}

class Editor extends React.Component {
  constructor(props) {
    super(props);
    this.handleInput = this.handleInput.bind(this);
    this.handleScroll = this.handleScroll.bind(this);
    this.handleKeyDown = this.handleKeyDown.bind(this);
    this.handleChange = this.handleChange.bind(this);
    this.state = { value: "" };
  }

  handleChange(event) {
    this.setState({ value: event.target.value });
  }

  handleInput(event) {
    let text = this.state.value;
    let result_element = document.getElementById("highlight-content");
    // if (text[text.length - 1] == "\n") {
    //   text += " ";
    // }
    result_element.textContent = text;
    // .replace(new RegExp("&", "g"), "&")
    // .replace(new RegExp("<", "g"), "<");
    let result_element_2 = document.querySelector("#highlight");
    result_element_2.scrollTop = event.currentTarget.scrollTop;
    result_element_2.scrollLeft = event.currentTarget.scrollLeft;
  }

  handleScroll(event) {
    let result_element = document.querySelector("#highlight");
    result_element.scrollTop = event.currentTarget.scrollTop;
    result_element.scrollLeft = event.currentTarget.scrollLeft;
  }

  handleKeyDown(event) {
    let element = event.currentTarget;
    let code = this.state.value;
    if (event.key == "Tab") {
      event.preventDefault();
      let before_tab = code.slice(0, element.selectionStart);
      let after_tab = code.slice(element.selectionEnd, element.value.length);
      let cursor_pos = element.selectionEnd + 1;
      element.value = before_tab + "\t" + after_tab;
      element.selectionStart = cursor_pos;
      element.selectionEnd = cursor_pos;
      this.handleInput(element.value, element);
    }
  }

  render() {
    return (
      <textarea
        spellcheck="false"
        name="editor"
        className="editor"
        id="editor"
        value={this.state.value}
        onChange={this.handleChange.bind(this)}
        onInput={this.handleInput.bind(this)}
        onScroll={this.handleScroll.bind(this)}
        onKeyDown={this.handleKeyDown.bind(this)}
        direction="rtl"
      ></textarea>
    );
  }
}

export default function Left() {
  return (
    <div>
      <Editor />
      <Code />
    </div>
  );
}