show structure at example edit

pull/8/head
Luka Kavčič 4 years ago
parent 19d3e38dcb
commit 197cc6199c

@ -30,7 +30,7 @@ all: build
build: copy $(CSS_FILE) bundle.js local.js build: copy $(CSS_FILE) bundle.js local.js
transcrypt: $(RES_PY_FILE) $(TS_BUILD) transcrypt: $(RES_PY_FILE) $(TS_BUILD)
python3 -m transcrypt $(TS_FLAGS) $< transcrypt $(TS_FLAGS) $<
bundle.js: transcrypt $(CONV_FILE) bundle.js: transcrypt $(CONV_FILE)
cd ..; browserify $(BR_FLAGS) build/$(TS_BUILD)/main.js -o build/bundle.js cd ..; browserify $(BR_FLAGS) build/$(TS_BUILD)/main.js -o build/bundle.js

@ -281,8 +281,6 @@ class SkeInsert(DataChgClickMessage):
structure.append("") # Bad fix: we have to add something for structure l-gg-ggn structure.append("") # Bad fix: we have to add something for structure l-gg-ggn
for i in range(len(structure_name)): for i in range(len(structure_name)):
console.log("current:", i, "\ngramrel:", gramrel[i], "\nstructure:", structure[i], "\nstruc_name:", structure_name[i])
lex = ComponentLexeme() lex = ComponentLexeme()
structure[i] = structure[i].replace("Inf-", "") structure[i] = structure[i].replace("Inf-", "")

@ -72,6 +72,9 @@ def edit_example(example, sense):
return result return result
divs.append(h("div.flex.five.example-component", {}, [h("div.one-fifth", {}, "Struktura:"),
h("div.three-fifth", {}, example.inner.other_attributes["structureName"])]))
for idx, component in enumerate(example.components): for idx, component in enumerate(example.components):
role_txt = component.role if component.role is not None else "none" role_txt = component.role if component.role is not None else "none"
color_class = ".example-component-" + role_txt color_class = ".example-component-" + role_txt

Loading…
Cancel
Save