summaryrefslogtreecommitdiff
path: root/web_page/main.js
blob: dbb349519eeced04f0b113d573485f5e3d1977a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { createRoot } from "react-dom/client";

// Clear the existing HTML content
document.body.innerHTML = '<div id="app"></div>';

// Render your React component instead
const root = createRoot(document.getElementById("app"));
root.render(<h1>Hello, world</h1>);

function click_send() {
  data = document.getElementById("inp1").value;
  console.log(data);

  fetch("https://sl.azuminha.com/add/" + encodeURIComponent(data))
    .then((response) => {
      if (!response.ok) {
        throw new Error("Network response was not ok");
      }
      return response.text();
    })
    .then((result) => {
      console.log(result);
      const res = document.createElement("p");
      res.textContent = data + " => " + "sl.azuminha.com/" + result;
      document.body.appendChild(res);
    });
  return 10 * 3;
}

document.addEventListener("DOMContentLoaded", function () {
  const input = document.getElementById("inp1");

  input.addEventListener("keydown", function (event) {
    if (event.key === "Enter") click_send();
  });
});