Explorar o código

Add Hebrew transliteration via Dicta; add list options.

scossu hai 1 ano
pai
achega
621f808c88

+ 31 - 0
scriptshifter/hooks/hebrew/dicta_api.py

@@ -0,0 +1,31 @@
+from json import dumps
+from os import environ
+
+from requests import post
+
+from scriptshifter.exceptions import BREAK
+
+EP = environ.get("TXL_DICTA_EP")
+DEFAULT_GENRE = "rabbinic"
+
+
+def s2r_post_config(ctx):
+    """
+    Romanize Hebrew text using the Dicta API service.
+    """
+    ctx.warnings = []
+    rsp = post(
+            EP,
+            data=dumps({
+                "data": ctx.src,
+                "genre": ctx.options.get("genre", DEFAULT_GENRE)
+            }))
+    rsp.raise_for_status()
+
+    rom = rsp.json().get("transliteration")
+    ctx.dest = rom
+
+    if not rom:
+        ctx.warnings.append("Upstream service returned empty result.")
+
+    return BREAK

+ 22 - 0
scriptshifter/tables/data/hebrew.yml

@@ -0,0 +1,22 @@
+general:
+  name: Hebrew
+  description: Hebrew S2R.
+
+options:
+  - id: genre
+    label: Genre
+    description: Genre of the script.
+    type: list
+    options:
+      - id: rabbinic
+        label: Rabbinic
+      - id: modern
+        label: Modern
+    default: modern
+
+script_to_roman:
+  hooks:
+    post_config:
+      -
+        - hebrew.dicta_api.s2r_post_config
+

+ 2 - 0
scriptshifter/tables/data/index.yml

@@ -32,6 +32,8 @@ ethiopic:
   name: Ethiopic (Amharic)
 georgian:
   name: Georgian
+hebrew:
+  name: Hebrew
 hindi:
   name: Hindi (Devanagari)
 kazakh:

+ 16 - 2
scriptshifter/templates/index.html

@@ -107,11 +107,25 @@
                         label.setAttribute("for", opt.id);
                         label.append(opt.label);
 
-                        let input = document.createElement("input");
+                        var input;
+                        if (opt.type == "list") {
+                            input = document.createElement("select");
+                            opt.options.forEach((sel) => {
+                                let option = document.createElement("option");
+                                option.append(sel.label);
+                                option.value = sel.id;
+                                if (option.value == opt.default) {
+                                    option.selected = true;
+                                };
+                                input.append(option);
+                            })
+                        } else {
+                            input = document.createElement("input");
+                            input.value = opt.default;
+                        }
                         input.setAttribute("id", opt.id);
                         input.setAttribute("name", opt.id);
                         input.classList.add("option_i");
-                        input.value = opt.default;
 
                         let descr = document.createElement("p");
                         descr.setAttribute("class", "input_descr");