File size: 3,629 Bytes
b6a3b8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
caabf1a
b6a3b8d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Link to backend translation functionality (dummy translation example included)
// async function translateText(rumiText) {
//   // Simulate a backend translation API call
//   return new Promise((resolve) => {
//       setTimeout(() => {
//           const translatedText = rumiText
//               ? `Jawi translation of: ${rumiText}`
//               : "";
//           resolve(translatedText);
//       }, 1000); // Simulate a delay
//   });
// }

async function translateText(rumiText) {
  try {
      const response = await fetch('https://huggingface.co/spaces/GobLyne/Jawi-Translation/translate', { // Replace with your FastAPI server URL
          method: 'POST',
          headers: {
              'Content-Type': 'application/json',
          },
          body: JSON.stringify({ text: rumiText }),
      });

      if (!response.ok) {
          throw new Error('Failed to fetch translation');
      }

      const data = await response.json();
      return data.translated_text; // Assuming the FastAPI response includes "translated_text"
  } catch (error) {
      console.error('Error:', error);
      return 'Error: Unable to fetch translation';
  }
}

// DOM Elements
const rumiTextArea = document.getElementById("rumi-text");
const jawiTextArea = document.getElementById("jawi-text");
const clearButton = document.querySelector(".btn.clear");
const translateButton = document.querySelector(".btn.translate");
const copyButton = document.querySelector(".btn.copy");

// Character limit counter
const charLimit = 120;
const charCounter = document.createElement("div");
charCounter.style.marginTop = "10px";
charCounter.style.color = "#838383";
charCounter.textContent = `Characters: 0/${charLimit}`;
rumiTextArea.parentElement.appendChild(charCounter);

// Event Listeners
rumiTextArea.addEventListener("input", () => {
  const inputText = rumiTextArea.value;
  const charCount = inputText.length;

  if (charCount > charLimit) {
      rumiTextArea.value = inputText.slice(0, charLimit);
  }

  charCounter.textContent = `Characters: ${Math.min(charCount, charLimit)}/${charLimit}`;
});

clearButton.addEventListener("click", () => {
  rumiTextArea.value = "";
  jawiTextArea.value = "";
  charCounter.textContent = `Characters: 0/${charLimit}`;
});

translateButton.addEventListener("click", async () => {
  const rumiText = rumiTextArea.value.trim();

  if (!rumiText) {
      alert("Sila masukkan teks Rumi untuk diterjemahkan.");
      return;
  }

  jawiTextArea.value = "Translating...";

  try {
      const translatedText = await translateText(rumiText);
      jawiTextArea.value = translatedText;
  } catch (error) {
      jawiTextArea.value = "Error: Unable to translate the text. Please try again later.";
      console.error("Translation error:", error);
  }
});

copyButton.addEventListener("click", () => {
  if (jawiTextArea.value) {
      jawiTextArea.select();
      document.execCommand("copy");

      // Display text pop-up inside the website
      const popup = document.createElement("div");
      popup.textContent = "Teks telah disalin!";
      popup.style.position = "fixed";
      popup.style.bottom = "20px";
      popup.style.right = "20px";
      popup.style.backgroundColor = "#4CAF50";
      popup.style.color = "white";
      popup.style.padding = "10px";
      popup.style.borderRadius = "5px";
      popup.style.boxShadow = "0px 4px 6px rgba(0, 0, 0, 0.1)";
      popup.style.zIndex = "1000";
      document.body.appendChild(popup);

      setTimeout(() => {
          document.body.removeChild(popup);
      }, 2000);
  } else {
      alert("Tiada teks untuk disalin.");
  }
});