note.js 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736
  1. var _display = "para";
  2. var _mode = "read";
  3. var _direction = "row";
  4. var _word = "";
  5. var _channal = "";
  6. var _lang = "";
  7. var _author = "";
  8. var _arrData = new Array();
  9. var _channalData;
  10. var MAX_NOTE_NEST = 2;
  11. var gBuildinDictIsOpen = false;
  12. var note_renderer = new marked.Renderer();
  13. note_renderer.code = function(code, language) {
  14. if (language == "mermaid") return '<pre class="mermaid">' + code + "</pre>";
  15. else return "<pre><code>" + code + "</code></pre>";
  16. };
  17. /*
  18. {{203-1654-23-45@11@en@*}}
  19. <note>203-1654-23-45@11@en@*</note>
  20. <note id=guid book=203 para=1654 begin=23 end=45 author=11 lang=en tag=*></note>
  21. <note id=guid book=203 para=1654 begin=23 end=45 author=11 lang=en tag=*>
  22. <div class=text>
  23. pali text
  24. </div>
  25. <tran>
  26. </tran>
  27. <ref>
  28. </ref>
  29. </note>
  30. */
  31. /*
  32. 解析百科字符串
  33. {{203-1654-23-45@11@en@*}}
  34. <note id=12345 info="203-1654-23-45@11@en@*"><note>
  35. <note id="guid" book=203 para=1654 begin=23 end=45 author=11 lang=en tag=*></note>
  36. */
  37. function note_create() {
  38. $.post("../ucenter/get_setting.php", {}, function (data, status) {
  39. setting = JSON.parse(data);
  40. });
  41. wbw_channal_list_init();
  42. note_sent_edit_dlg_init();
  43. term_edit_dlg_init();
  44. pali_sim_dlg_init();
  45. related_para_dlg_init();
  46. term_get_all_pali();
  47. }
  48. function note_sent_edit_dlg_init() {
  49. $("body").append(
  50. '<div id="note_sent_edit_dlg" title="' +
  51. gLocal.gui.edit +
  52. '"><guide gid="markdown_guide"></guide><div id="edit_dialog_content"></div></div>'
  53. );
  54. guide_init();
  55. $("#note_sent_edit_dlg").dialog({
  56. autoOpen: false,
  57. width: 550,
  58. buttons: [
  59. {
  60. text: gLocal.gui.save,
  61. click: function () {
  62. note_sent_save();
  63. $(this).dialog("close");
  64. },
  65. },
  66. {
  67. text: gLocal.gui.cancel,
  68. click: function () {
  69. $(this).dialog("close");
  70. },
  71. },
  72. ],
  73. });
  74. }
  75. function note_init(input,channel="",editor="",lang="en") {
  76. if (input) {
  77. let output = "<div>";
  78. //output += marked(input);
  79. output += marked(term_std_str_to_tran(input, channel, editor, lang), { renderer: note_renderer });
  80. output += "</div>";
  81. let newString = output.replace(/\{\{/g, '<span class="note_shell"><note style="" info="');
  82. newString = newString.replace(/\}\}/g, '" ></note></span>');
  83. return newString;
  84. } else {
  85. return "";
  86. }
  87. }
  88. function note_update_background_style() {
  89. var mSentsBook = new Array();
  90. var mBgIndex = 1;
  91. $("note[info]").each(function () {
  92. let info = $(this).attr("info").split("-");
  93. if (info.length >= 2) {
  94. let book = info[0];
  95. $(this).attr("book", book);
  96. if (!mSentsBook[book]) {
  97. mSentsBook[book] = mBgIndex;
  98. mBgIndex++;
  99. }
  100. $(this).addClass("bg_color_" + mSentsBook[book]);
  101. }
  102. });
  103. }
  104. //
  105. function note_refresh_new(callback = null) {
  106. let Params={
  107. maxSentenceOneRequest:0
  108. };
  109. note_update_background_style();
  110. let objNotes = document.querySelectorAll("note");
  111. let arrSentInfo = new Array();
  112. let noteCounter = 0;
  113. for (const iterator of objNotes) {
  114. let id = iterator.id;
  115. if (id == null || id == "") {
  116. //查看这个节点是第几层note嵌套。大于预定层数退出。
  117. let layout = 1;
  118. let parent = iterator.parentNode;
  119. while (parent.nodeType == 1) {
  120. if (parent.nodeName == "NOTE") {
  121. layout++;
  122. if (layout > MAX_NOTE_NEST) {
  123. return false;
  124. }
  125. } else if (parent.nodeName == "BODY") {
  126. break;
  127. }
  128. parent = parent.parentNode;
  129. }
  130. id = com_guid();
  131. iterator.id = id;
  132. if (iterator.hasAttribute("info")) {
  133. let info = iterator.getAttribute("info");
  134. if (info != null || info != "") {
  135. /*
  136. let arrInfo = info.split("-");
  137. if (arrInfo.length >= 2) {
  138. let book = arrInfo[0];
  139. let para = arrInfo[1];
  140. }
  141. */
  142. arrSentInfo.push({ id: id, data: info });
  143. }
  144. }
  145. noteCounter++;
  146. if(Params.maxSentenceOneRequest>0 && noteCounter>=Params.maxSentenceOneRequest){
  147. break;
  148. }
  149. }
  150. }
  151. if (arrSentInfo.length > 0) {
  152. let setting = new Object();
  153. setting.lang = "";
  154. setting.channal = _channal;
  155. $.post(
  156. "../term/note.php",
  157. {
  158. setting: JSON.stringify(setting),
  159. data: JSON.stringify(arrSentInfo),
  160. },
  161. function (data, status) {
  162. if (status == "success") {
  163. try {
  164. let sentData = JSON.parse(data);
  165. //开始渲染句子
  166. for (const iterator of sentData) {
  167. let id = iterator.id;
  168. let strHtml = "<a name='" + id + "'></a>";
  169. if (_mode && _mode == "read") {
  170. //阅读模式
  171. strHtml += render_read_mode_sent(iterator);
  172. $("#" + id).html(strHtml);
  173. } else {
  174. //编辑模式
  175. strHtml += note_json_html(iterator);
  176. $("#" + id).html(strHtml);
  177. }
  178. }
  179. //句子渲染完毕
  180. //处理<code>标签作为气泡注释
  181. popup_init();
  182. //刷新句子链接递归,有加层数限制。
  183. //note_refresh_new();
  184. //将新的数据添加到数据总表
  185. _arrData = _arrData.concat(sentData);
  186. note_ref_init();
  187. //获取术语字典
  188. term_get_dict(callback);
  189. //刷新channel列表
  190. note_channal_list();
  191. //显示不同的巴利语脚本
  192. refresh_pali_script();
  193. //把巴利语单词用<w>分隔用于点词查询等
  194. splite_pali_word();
  195. //处理编辑框消息
  196. tran_sent_textarea_event_init();
  197. //处理鼠标移入显示菜单消息
  198. setSentToolBarEvent();
  199. //初始化mermaid
  200. mermaid.initialize({startOnLoad:true});
  201. //初始化气泡
  202. guide_init();
  203. } catch (e) {
  204. console.error(e);
  205. }
  206. }
  207. }
  208. );
  209. } else {
  210. term_get_dict(callback);
  211. }
  212. return arrSentInfo.length;
  213. }
  214. //渲染巴利原文句子
  215. function render_pali_sent(palitext){
  216. let output = "";
  217. output =
  218. "<pali book='" +
  219. palitext.book +
  220. "' para='" +
  221. palitext.para +
  222. "' begin='" +
  223. palitext.begin +
  224. "' end='" +
  225. palitext.end +
  226. "' >";
  227. if(palitext.book<1000){
  228. output += palitext.palitext;
  229. }
  230. else{
  231. output += marked(palitext.palitext);
  232. }
  233. output +="</pali>";
  234. return output;
  235. }
  236. //渲染阅读模式句子
  237. function render_read_mode_sent(iterator) {
  238. let id = iterator.id;
  239. let strPalitext =render_pali_sent(iterator);
  240. if (
  241. $("#" + id)
  242. .parent()
  243. .parent()
  244. .children(".para_div").length == 0
  245. ) {
  246. let tranDivHtml = "";
  247. if (_channal != "") {
  248. let arrChannal = _channal.split(",");
  249. for (let index = arrChannal.length - 1; index >= 0; index--) {
  250. const iChannal = arrChannal[index];
  251. tranDivHtml += "<div class='tran_div_channel' channal='" + iChannal + "'></div>";
  252. }
  253. } else {
  254. tranDivHtml = "<div class='tran_div_channel' channal='0'></div>";
  255. }
  256. $("#" + id)
  257. .parent()
  258. .parent()
  259. .prepend(
  260. "<div class='para_div'>"+
  261. "<div class='palitext_div'>"+
  262. "<div class='palitext palitext1'></div>"+
  263. "<div class='palitext palitext2'></div>"+
  264. "</div>"+
  265. "<div class='para_tran_div'>" +
  266. tranDivHtml +
  267. "</div></div>"
  268. );
  269. }
  270. $("#" + id)
  271. .parent()
  272. .parent()
  273. .children(".para_div")
  274. .find(".palitext")
  275. .first()
  276. .append(strPalitext);
  277. let htmlSent = "";
  278. htmlSent += "<div class='note_body'>";
  279. htmlSent += "<div class='palitext_div'>";
  280. htmlSent += "<div class='palitext palitext1'>" + strPalitext + "</div>";
  281. htmlSent += "<span class='sent_no_read_mode'>";
  282. htmlSent += iterator.book + "-" + iterator.para + "-" + iterator.begin + "-" + iterator.end;
  283. htmlSent += "<span>";
  284. htmlSent += "<div class='palitext palitext2'></div>";
  285. htmlSent += "</div>";
  286. htmlSent += "<div class='sent_tran_div'>";
  287. for (const oneTran of iterator.translation) {
  288. let html = "<span class='sent_tran' lang='" + oneTran.lang + "' channal='" + oneTran.channal + "'>";
  289. //将绝对链接转换为 用户连接的主机链接
  290. //oneTran.text = oneTran.text.replace(/www-[A-z]*.wikipali.org/g,location.host);
  291. html += marked(term_std_str_to_tran(oneTran.text, oneTran.channal, oneTran.editor, oneTran.lang));
  292. html += "</span>";
  293. htmlSent += html;
  294. let channelId = "0";
  295. if (_channal != "") {
  296. channelId = oneTran.channal;
  297. }
  298. $("#" + id)
  299. .parent()
  300. .parent()
  301. .find(".tran_div_channel[channal='" + channelId + "']")
  302. .append(html);
  303. }
  304. htmlSent += "</div>";
  305. htmlSent += "</div>"; //note_body
  306. htmlSent += "<div class='note_foot'>";
  307. htmlSent += "<span>" + iterator.ref + "</span>";
  308. htmlSent +=
  309. "<span class='sent_id'>" +
  310. iterator.book +
  311. "-" +
  312. iterator.para +
  313. "-" +
  314. iterator.begin +
  315. "-" +
  316. iterator.end +
  317. "</span>";
  318. htmlSent += "</div>"; //note_foot
  319. return htmlSent;
  320. }
  321. //生成channel列表
  322. function note_channal_list() {
  323. console.log("note_channal_list start");
  324. let arrSentInfo = new Array();
  325. $("note").each(function () {
  326. let info = $(this).attr("info");
  327. if (info && info != "") {
  328. arrSentInfo.push({ id: "", data: info });
  329. }
  330. });
  331. if (arrSentInfo.length > 0) {
  332. $.post(
  333. "../term/channal_list.php",
  334. {
  335. setting: "",
  336. data: JSON.stringify(arrSentInfo),
  337. },
  338. function (data, status) {
  339. if (status == "success") {
  340. try {
  341. let active = JSON.parse(data);
  342. _channalData = active;
  343. if (Array.isArray(_my_channal)) {
  344. for (const iterator of _my_channal) {
  345. let found = false;
  346. for (const one of active) {
  347. if (iterator.uid == one.uid) {
  348. found = true;
  349. break;
  350. }
  351. }
  352. if (found == false) {
  353. _channalData.push(iterator);
  354. }
  355. }
  356. }
  357. let strHtml = "";
  358. for (const iterator of _channalData) {
  359. if (_channal.indexOf(iterator.id) >= 0) {
  360. strHtml += render_channal_list(iterator);
  361. }
  362. }
  363. for (const iterator of _channalData) {
  364. if (_channal.indexOf(iterator.id) == -1) {
  365. strHtml += render_channal_list(iterator);
  366. }
  367. }
  368. $("#channal_list").html(strHtml);
  369. set_more_button_display();
  370. let lang=new Object();
  371. let currLang=_lang;
  372. let firstChannel="";
  373. if(_channal!=""){
  374. firstChannel = _channal.split(",")[0];
  375. }
  376. for (const iterator of _channalData) {
  377. lang[iterator.lang]=1;
  378. if(iterator.id==firstChannel){
  379. currLang = iterator.lang;
  380. }
  381. }
  382. let htmlLangSelect="<option value=''>全部语言</option>";
  383. let isLangMatched=false;
  384. for (const key in lang) {
  385. if (lang.hasOwnProperty.call(lang, key)) {
  386. let strLang = key;
  387. if(gLocal.language.hasOwnProperty.call(gLocal.language, key)){
  388. strLang = gLocal.language[key];
  389. }
  390. htmlLangSelect += "<option value='"+key+"' ";
  391. if(currLang==key){
  392. htmlLangSelect += "selected ";
  393. isLangMatched = true;
  394. }
  395. htmlLangSelect +=">"+strLang+"</option>";
  396. }
  397. }
  398. $("#select_lang").html(htmlLangSelect);
  399. if(isLangMatched){
  400. render_edition_list(currLang);
  401. }else{
  402. render_edition_list("");
  403. }
  404. } catch (e) {
  405. console.error(e);
  406. }
  407. }
  408. }
  409. );
  410. }
  411. }
  412. function lang_changed(obj){
  413. _lang = $(obj).val();
  414. render_edition_list(_lang);
  415. }
  416. //顶部的版本列表
  417. function render_edition_list(lang=""){
  418. let firstChannel="";
  419. if(_channal!=""){
  420. firstChannel = _channal.split(",")[0];
  421. }
  422. let html = "";
  423. html += "<div class='case_dropdown-content'>";
  424. let currChannel="选择一个版本";
  425. for (const iterator of _channalData) {
  426. if(iterator.id==firstChannel){
  427. currChannel = iterator.name;
  428. }
  429. if(lang=="" || (lang!="" && lang==iterator.lang)){
  430. if (iterator["final"]){
  431. html += "<a onclick=\"edition_list_changed('"+iterator.id+"')\">"+iterator.name+"</a>";
  432. }
  433. }
  434. }
  435. html +="</div>";
  436. html = "<span>"+currChannel+"▼</span>" + html;
  437. $("#edition_dropdown").html(html);
  438. }
  439. function edition_list_changed(channelId){
  440. _channal = channelId;
  441. render_edition_list(_lang);
  442. set_channal(channelId);
  443. }
  444. function find_channal(id) {
  445. for (const iterator of _channalData) {
  446. if (id == iterator.id || id == iterator.uid) {
  447. return iterator;
  448. }
  449. }
  450. return false;
  451. }
  452. //生成版本列表
  453. //选择列表中的版本切换页面
  454. function render_channal_list(channalinfo) {
  455. let output = "";
  456. let checked = "";
  457. let selected = "noselect";
  458. if (_channal.indexOf(channalinfo.uid) >= 0) {
  459. checked = "checked";
  460. selected = "selected";
  461. }
  462. output += "<div class='list_with_head " + selected + "'>";
  463. output += '<div class="tool_bar">';
  464. output += '<div class="right">';
  465. output += '<div class="pop_menu">';
  466. output += render_icon_button("copy", "commit_init({src:'" + channalinfo.uid + "'})", gLocal.gui.copy_to);
  467. output += render_icon_button("ic_mode_edit", "", gLocal.gui.modify);
  468. if(_book && _par){
  469. output += render_icon_button("graph-up", "chapter_dynamic_show("+_book+","+_par+",'"+channalinfo.uid+"')", "动态");
  470. }
  471. output += "</div>";
  472. output += "</div>";
  473. output += "</div>";
  474. output +=
  475. '<div class="channel_select"><input type="checkbox" ' + checked + " channal_id='" + channalinfo.uid + "'></div>";
  476. output += "<div class='head'>";
  477. output += "<span class='head_img'>";
  478. if (parseInt(channalinfo.power) == 30) {
  479. output += gLocal.gui.your.slice(0, 1);
  480. } else {
  481. output += channalinfo.nickname.slice(0, 1);
  482. }
  483. output += "</span>";
  484. output += "</div>";
  485. output += "<div style='width: 100%;overflow-x: hidden;'>";
  486. output += "<div class='channal_list' >";
  487. // output += "<a href='../wiki/wiki.php?word=" + _word;
  488. // output += "&channal=" + channalinfo.uid + "' >";
  489. switch (parseInt(channalinfo.status)) {
  490. case 10:
  491. output += "🔐";
  492. break;
  493. case 20:
  494. output += "🌐";
  495. break;
  496. case 30:
  497. output += "🌐";
  498. break;
  499. default:
  500. break;
  501. }
  502. if (parseInt(channalinfo.power) >= 20) {
  503. //if (parseInt(channalinfo.power) != 30)
  504. {
  505. output += "✏️";
  506. }
  507. }
  508. //✋
  509. output += "<a onclick=\"set_channal('" + channalinfo.uid + "')\">";
  510. output += channalinfo["name"];
  511. output += "</a>";
  512. if (parseInt(channalinfo.power) == 30) {
  513. output += "@" + gLocal.gui.your;
  514. } else {
  515. output += "@" + channalinfo["nickname"];
  516. }
  517. output += "</div>";
  518. output += "<div class='userinfo_channal'>";
  519. output += channalinfo["username"];
  520. output += "</div>";
  521. //绘制句子进度
  522. if (channalinfo["final"]) {
  523. //进度
  524. output += "<div>";
  525. let article_len = channalinfo["article_len"];
  526. let svg_width = article_len;
  527. let svg_height = parseInt(article_len / 15);
  528. output += '<svg viewBox="0 0 ' + svg_width + " " + svg_height + '" width="100%" >';
  529. let curr_x = 0;
  530. let allFinal = 0;
  531. for (const iterator of channalinfo["final"]) {
  532. let stroke_width = parseInt(iterator.len);
  533. output += "<rect ";
  534. output += ' x="' + curr_x + '"';
  535. output += ' y="0"';
  536. output += ' height="' + svg_height + '"';
  537. output += ' width="' + stroke_width + '"';
  538. if (iterator.final == true) {
  539. allFinal += stroke_width;
  540. output += ' class="progress_bar_done" ';
  541. } else {
  542. output += ' class="progress_bar_undone" ';
  543. }
  544. output += "/>";
  545. curr_x += stroke_width;
  546. }
  547. output +=
  548. "<rect x='0' y='0' width='" + svg_width + "' height='" + svg_height / 5 + "' class='progress_bar_bg' />";
  549. output +=
  550. "<rect x='0' y='0' width='" +
  551. allFinal +
  552. "' height='" +
  553. svg_height / 5 +
  554. "' class='progress_bar_percent' style='stroke-width: 0; fill: rgb(100, 228, 100);'/>";
  555. output += '<text x="0" y="' + svg_height + '" font-size="' + svg_height * 0.8 + '">';
  556. output += channalinfo["count"] + "/" + channalinfo["all"] + "@" + curr_x;
  557. output += "</text>";
  558. output += "<svg>";
  559. output += "</div>";
  560. //进度结束
  561. }
  562. output += "</div>";
  563. output += "</div>";
  564. return output;
  565. }
  566. function onChannelMultiSelectStart() {
  567. $(".channel_select").show();
  568. }
  569. function onChannelMultiSelectCancel() {
  570. $(".channel_select").hide();
  571. }
  572. function onChannelChange() {
  573. let channal_list = new Array();
  574. $("[channal_id]").each(function () {
  575. if (this.checked) {
  576. channal_list.push($(this).attr("channal_id"));
  577. }
  578. });
  579. set_channal(channal_list.join());
  580. }
  581. //点击引用 需要响应的事件
  582. function note_ref_init(target='_blank') {
  583. $("chapter").click(function () {
  584. let bookid = $(this).attr("book");
  585. let para = $(this).attr("para");
  586. window.open("../article/?view=chapter&book=" + bookid + "&par=" + para, target);
  587. });
  588. $("para").click(function () {
  589. let bookid = $(this).attr("book");
  590. let para = $(this).attr("para");
  591. window.open("../article/?view=para&book=" + bookid + "&par=" + para, target);
  592. });
  593. }
  594. /*
  595. 生成编辑模式句子块
  596. id
  597. palitext
  598. tran
  599. ref
  600. */
  601. function note_json_html(in_json) {
  602. let output = "";
  603. output += '<div class="note_tool_bar" style=" position: relative;">';
  604. output += '<div class="case_dropdown note_tool_context" >';
  605. output += "<svg class='icon' >";
  606. output += "<use xlink:href='../studio/svg/icon.svg#ic_more'></use>";
  607. output += "</svg>";
  608. output += "<div class='case_dropdown-content sent_menu'>";
  609. if (typeof _reader_view != "undefined" && _reader_view != "sent") {
  610. output += "<a onclick='junp_to(this)'>" + gLocal.gui.jump_to_this_sent + "</a>";
  611. }
  612. output +=
  613. "<a onclick='related_para_dlg_open(" +
  614. in_json.book +
  615. "," +
  616. in_json.para +
  617. ")'>" +
  618. gLocal.gui.related_para +
  619. "</a>";
  620. output +=
  621. "<a onclick='goto_nissaya(" +
  622. in_json.book +
  623. "," +
  624. in_json.para +
  625. "," +
  626. in_json.begin +
  627. "," +
  628. in_json.end +
  629. ")'>" +
  630. gLocal.gui.show_nissaya +
  631. "</a>";
  632. output +=
  633. "<a onclick=\"copy_ref('" +
  634. in_json.book +
  635. "','" +
  636. in_json.para +
  637. "','" +
  638. in_json.begin +
  639. "','" +
  640. in_json.end +
  641. "')\">" +
  642. gLocal.gui.copy_to_clipboard +
  643. "</a>";
  644. output +=
  645. "<a onclick=\"copy_to_clipboard('"+ window.location.href +"#sent_" +
  646. in_json.book +
  647. "_" +
  648. in_json.para +
  649. "_" +
  650. in_json.begin +
  651. "_" +
  652. in_json.end +
  653. "')\" >" +
  654. gLocal.gui.copy_link +
  655. "</a>";
  656. output += "<a onclick='copy_text(this)'>" + gLocal.gui.copy + "“" + gLocal.gui.pāli + "”</a>";
  657. output +=
  658. "<a onclick=\"edit_in_studio('" +
  659. in_json.book +
  660. "','" +
  661. in_json.para +
  662. "','" +
  663. in_json.begin +
  664. "','" +
  665. in_json.end +
  666. "')\">" +
  667. gLocal.gui.edit_now +
  668. "</a>";
  669. output += "<a onclick='add_to_list()'>" + gLocal.gui.add_to_edit_list + "</a>";
  670. output += "<a onclick='slider_show(this)'>Slider Show</a>";
  671. output += "</div>";
  672. output += "</div>";
  673. output += " </div>";
  674. let strPalitext = render_pali_sent(in_json);
  675. output += "<div class='note_body'>";
  676. output += "<div class='palitext_div'>";
  677. output += "<div class='palitext palitext_roma'>" + strPalitext + "</div>";
  678. output += "<div class='palitext palitext1'></div>";
  679. output += "<div class='palitext palitext2'></div>";
  680. output += "</div>";
  681. //译文开始
  682. output += "<div class='sent_tran_div'>";
  683. for (const iterator of in_json.translation) {
  684. if(iterator.channalinfo.type != "commentary"){
  685. output += render_one_sent_tran_a(iterator);
  686. }
  687. }
  688. output += "</div>";
  689. //译文结束
  690. output += "</div>"; /**note_body end */
  691. //工具栏开始
  692. let sent_id = in_json.book + "-" + in_json.para + "-" + in_json.begin + "-" + in_json.end;
  693. output += "<div class='other_tran_div' sent='" + sent_id + "' >";
  694. output += "<div class='tool_bar' sent='" + sent_id + "' >";
  695. output += "<span class='tool_left'>";
  696. //第一个按钮
  697. //新增译文按钮开始
  698. output += "<span class='' ";
  699. output += "book='" + in_json.book + "' ";
  700. output += "para='" + in_json.para + "' ";
  701. output += "begin='" + in_json.begin + "' ";
  702. output += "end='" + in_json.end + "' ";
  703. output += " >";
  704. output += "<span class='' onclick='add_new_tran_button_click(this)' title='" + gLocal.gui.add_tran + "'>➕</span>";
  705. output += "<div class='tran_text_tool_bar'>";
  706. output += "</div>";
  707. output += "</span>";
  708. //新增译文按钮结束
  709. //分隔线
  710. output += "<span class='separate_line'></span>";
  711. output += "<span class='more_tran icon_expand'></span>";
  712. //第二个按钮其他译文
  713. output += "<span class='other_bar' sent='"+sent_id+"' channel_type='translation'>";
  714. output +=
  715. "<span class='other_tran_span' title='" +
  716. gLocal.gui.other +
  717. gLocal.gui.translation +
  718. "'>";
  719. output += "<svg class='icon' style='fill: var(--box-bg-color1)'>";
  720. output += "<use xlink:href='../../node_modules/bootstrap-icons/bootstrap-icons.svg#translate'>";
  721. output += "</svg>" ;
  722. output += gLocal.gui.translation ;
  723. output += "</span>";
  724. output += "<span class='other_tran_num'></span>";
  725. output += "</span>";
  726. //第二个按钮结束
  727. //分割线
  728. output += "<span class='separate_line'></span>";
  729. //nissaya
  730. output += "<span class='other_bar' sent='"+sent_id+"' channel_type='nissaya' >";
  731. output +=
  732. "<span class='other_nissaya_span' title='" +
  733. gLocal.gui.other +
  734. gLocal.gui.translation +
  735. "'>";
  736. output += "<svg class='icon' style='fill: var(--box-bg-color1)'>";
  737. output += "<use xlink:href='../../node_modules/bootstrap-icons/bootstrap-icons.svg#sun'>";
  738. output += "</svg>" ;
  739. output += "Nissaya" ;
  740. output += "</span>";
  741. output += "<span class='other_tran_num'></span>";
  742. output += "</span>";
  743. //分割线
  744. output += "<span class='separate_line'></span>";
  745. //手工义注
  746. output += "<span class='other_bar' sent='"+sent_id+"' channel_type='commentary' >";
  747. output +=
  748. "<span class='other_tran_span commentray' title='📔" +
  749. gLocal.gui.vannana +
  750. "'>";
  751. output += "<svg class='icon' style='fill: var(--box-bg-color1)'>";
  752. output += "<use xlink:href='../public/images/svg/oil-lamp.svg#oil-lamp'>";
  753. output += "</svg>" ;
  754. output += gLocal.gui.commentary +
  755. "</span>";
  756. output += "<span class='other_tran_num'></span>";
  757. output += "</span>";
  758. //分割线
  759. output += "<span class='separate_line'></span>";
  760. //第三个按钮 相似句
  761. if (parseInt(in_json.sim) > 0) {
  762. output += "<span class='sim_bar' >";
  763. output +=
  764. "<span class='similar_sent_span' onclick=\"note_show_pali_sim('" +
  765. in_json.pali_sent_id +
  766. "')\" title='" +
  767. gLocal.gui.similar_sentences +
  768. "'>";
  769. output += "<svg class='icon' style='fill: var(--box-bg-color1)'>";
  770. output += "<use xlink:href='../../node_modules/bootstrap-icons/bootstrap-icons.svg#hdd-stack'>";
  771. output += "</svg>" ;
  772. output += gLocal.gui.similar + "</span>";
  773. output += "<span class='similar_sent_num'>" + in_json.sim + "</span>";
  774. output += "</span>";
  775. output += "<span class='separate_line'></span>";
  776. }
  777. //第三个按钮 相似句结束
  778. output += "</span>";
  779. output += "<span class='tool_right'>";
  780. //出处路径开始
  781. output += "<span class='ref'>";
  782. output += "<span class='book_name tooltip'>" + in_json.booktitle;
  783. output += "<span class='tooltiptext tooltip-bottom'>";
  784. output += in_json.ref;
  785. output += "</span>";
  786. output += "<span class='sent_no'>";
  787. output += in_json.book + "-" + in_json.para + "-" + in_json.begin + "-" + in_json.end;
  788. output += "<span>";
  789. output += "</span>";
  790. output += "</span>";
  791. //出处路径结束
  792. output += "</span>";
  793. output += "</div>";
  794. //工具栏结束
  795. //未选择的其他译文开始
  796. output += "<div class='other_tran'>";
  797. output += "</div>";
  798. output += "</div>";
  799. return output;
  800. }
  801. //设置取消输入框的编辑模式
  802. function sent_tran_set_edit_mode(obj, isEditMode) {
  803. $(".sent_tran").removeClass("edit_mode");
  804. if (isEditMode) {
  805. let jqObj = $(obj);
  806. while (!jqObj.hasClass("sent_tran")) {
  807. jqObj = jqObj.parent();
  808. if (!jqObj) {
  809. return;
  810. }
  811. }
  812. jqObj.addClass("edit_mode");
  813. }
  814. }
  815. function sent_tran_edit(obj) {
  816. let jqObj = $(obj);
  817. while (!jqObj.hasClass("sent_tran")) {
  818. jqObj = jqObj.parent();
  819. if (!jqObj) {
  820. return;
  821. }
  822. }
  823. if (jqObj.hasClass("edit_mode")) {
  824. jqObj.removeClass("edit_mode");
  825. } else {
  826. $(".sent_tran").removeClass("edit_mode");
  827. jqObj.addClass("edit_mode");
  828. }
  829. }
  830. //采纳 pr
  831. function sent_pr_merge(id) {
  832. $.post(
  833. "../usent/sent_pr_merge.php",
  834. {
  835. id: id,
  836. },
  837. function (data) {
  838. let result = JSON.parse(data);
  839. if (result.status > 0) {
  840. alert("error" + result.message);
  841. } else {
  842. ntf_show("成功采纳");
  843. }
  844. }
  845. );
  846. }
  847. function sent_commit(src, id) {
  848. commit_init({
  849. src: src,
  850. sent: [id],
  851. express: false,
  852. });
  853. }
  854. function chapter_Dynamic_open(channel_id){
  855. }
  856. function render_icon_button(icon_id, event, tiptitle) {
  857. let html = "";
  858. html += "<button class='icon_btn tooltip' onclick=\"" + event + '">';
  859. html += '<svg class="icon" >';
  860. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#' + icon_id + '"></use>';
  861. html += "</svg>";
  862. html += "<span class='tooltiptext tooltip-top'>";
  863. html += tiptitle;
  864. html += "</span>";
  865. html += "</button>";
  866. return html;
  867. }
  868. var menuFocusIndex=0;
  869. var term_data=["amanussa","anadhiṭṭhita","anantarāya","anissaṭṭha","aniyata","antaravāsaka"];
  870. var term_filterd_data=[];
  871. var term_input_text ;
  872. var term_input="";
  873. function TermRenderSentTranTextarea(text,dbId,sentId,channelId,isPr){
  874. let html="";
  875. html += '<div class="text_input" >';
  876. html += '<div class="menu"></div>';
  877. html += '<div class="textarea text_shadow"></div>';
  878. html += "<textarea class='textarea tran_sent_textarea' onfocus=\"text_input_textarea_focuse(this)\"";
  879. html += " dbid='" + dbId + "' ";
  880. html += "sid='" + sentId + "' ";
  881. html += "channel='" + channelId + "' ";
  882. if (typeof isPr != "undefined" && isPr == true) {
  883. html += ' is_pr="true" "';
  884. } else {
  885. html += 'is_pr="false"';
  886. }
  887. html += ">" ;
  888. html += text;
  889. html += "</textarea>";
  890. html += '</div>';
  891. return html;
  892. }
  893. function render_one_sent_tran_a(iterator, diff = false) {
  894. let mChannel = get_channel_by_id(iterator.channal);
  895. let tranText;
  896. let sid = iterator.book + "-" + iterator.para + "-" + iterator.begin + "-" + iterator.end;
  897. //将绝对链接转换为 用户连接的主机链接
  898. //let showText = iterator.text.replace(/www-[A-z]*.wikipali.org/g,location.host);
  899. let showText = iterator.text;
  900. if (iterator.text == "") {
  901. if (typeof iterator.channalinfo == "undefined") {
  902. tranText =
  903. "<span style='color:var(--border-line-color);'>" +
  904. "空" +
  905. "@" +
  906. iterator.editor_name.nickname +
  907. "</span>";
  908. } else {
  909. tranText =
  910. "<span style='color:var(--border-line-color);'>" +
  911. iterator.channalinfo.name +
  912. "-" +
  913. iterator.channalinfo.lang +
  914. "</span>";
  915. }
  916. } else {
  917. if (diff) {
  918. let orgText = "";
  919. for (const oneSent of _arrData) {
  920. if (
  921. oneSent.book == iterator.book &&
  922. oneSent.para == iterator.para &&
  923. oneSent.begin == iterator.begin &&
  924. oneSent.end == iterator.end
  925. ) {
  926. for (const tran of oneSent.translation) {
  927. if (tran.channal == iterator.channal) {
  928. orgText = tran.text;
  929. break;
  930. }
  931. }
  932. break;
  933. }
  934. }
  935. tranText = str_diff(orgText, iterator.text);
  936. } else {
  937. //note_init处理句子链接
  938. if(iterator.type=='nissaya' || iterator.channalinfo.type=='nissaya'){
  939. tranText = renderNissayaPreview(iterator.text);
  940. }else{
  941. tranText = iterator.text;
  942. }
  943. tranText = note_init(tranText, iterator.channal, iterator.editor, iterator.lang);
  944. if(iterator.type=='nissaya' || iterator.channalinfo.type=='nissaya'){
  945. tranText = "<div class='nissaya'>"+tranText+"</div>";
  946. }
  947. }
  948. }
  949. let html = "";
  950. html += "<div class='sent_tran ";
  951. html += iterator.channalinfo.type;
  952. if (typeof iterator.is_pr != "undefined" && iterator.is_pr == true) {
  953. html += " pr ";
  954. }
  955. html += "' dbid='" + iterator.id + "' channel='" + iterator.channal + "' sid='" + sid + "'>";
  956. html += "<div class='sent_tran_inner'>";
  957. html += '<div class="tool_bar">';
  958. html += ' <div class="right">';
  959. //句子菜单
  960. html += '<div class="pop_menu">';
  961. if (typeof iterator.is_pr != "undefined" && iterator.is_pr == true) {
  962. //在pr 列表中的译文
  963. if (typeof iterator.is_pr_editor != "undefined" && iterator.is_pr_editor == true) {
  964. //提交人
  965. //修改按钮
  966. html += render_icon_button("ic_mode_edit", "sent_tran_edit(this)", gLocal.gui.modify);
  967. //删除按钮
  968. html += render_icon_button("ic_delete", "sent_pr_del(this)", gLocal.gui.delete);
  969. } else {
  970. //非提交人
  971. if (parseInt(iterator.mypower) >= 20) {
  972. //有权限 采纳按钮
  973. html += render_icon_button(
  974. "accept_copy",
  975. "sent_pr_merge('" + iterator.id + "')",
  976. gLocal.gui.accept_copy
  977. );
  978. }
  979. //点赞按钮
  980. html += render_icon_button("like", "sent_pr_like(this)", gLocal.gui.like);
  981. }
  982. } else {
  983. //非pr列表里的句子
  984. //编辑按钮
  985. if (parseInt(iterator.mypower) < 20) {
  986. html += render_icon_button("my_idea", "sent_tran_edit(this)", gLocal.gui.suggest);
  987. } else {
  988. html += render_icon_button("ic_mode_edit", "sent_tran_edit(this)", gLocal.gui.edit);
  989. }
  990. //推送按钮
  991. let commitIcon = "";
  992. let commitTipText = "";
  993. if (parseInt(iterator.mypower) >= 30 && parseInt(iterator.status) < 30) {
  994. //我的私有资源 公开发布
  995. commitIcon = "publish";
  996. commitTipText = gLocal.gui.publish;
  997. } else {
  998. if (parseInt(iterator.mypower) < 20) {
  999. //只读资源 采纳
  1000. commitIcon = "accept_copy";
  1001. commitTipText = gLocal.gui.accept_copy;
  1002. } else {
  1003. //其他资源 复制到
  1004. commitIcon = "copy";
  1005. commitTipText = gLocal.gui.copy_to;
  1006. }
  1007. }
  1008. html += render_icon_button(commitIcon, "sent_commit('" + iterator.channal + "','" + sid + "')", commitTipText);
  1009. //推送按钮结束
  1010. //更多按钮
  1011. html += '<div class="case_dropdown">';
  1012. html += "<button class='icon_btn'>";
  1013. html += '<svg class="icon" >';
  1014. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#ic_more"></use>';
  1015. html += "</svg>";
  1016. html += "</button>";
  1017. html += '<div class="case_dropdown-content menu_space_between" style="right:0;">';
  1018. //时间线
  1019. html += "<a onclick=\"history_show('" + iterator.id + "')\">";
  1020. html += "<span>" + gLocal.gui.timeline + "</span>";
  1021. html += '<svg class="icon" >';
  1022. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#recent_scan"></use>';
  1023. html += "</svg>";
  1024. html += "</a>";
  1025. //复制
  1026. html += "<a onclick=\"history_show('" + iterator.id + "')\">";
  1027. html += "<span>" + gLocal.gui.copy + "</span>";
  1028. html += '<svg class="icon" >';
  1029. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#copy"></use>';
  1030. html += "</svg>";
  1031. html += "</a>";
  1032. //点赞
  1033. html += "<a onclick=\"history_show('" + iterator.id + "')\">";
  1034. html += "<span>" + gLocal.gui.like + "</span>";
  1035. html += '<svg class="icon" >';
  1036. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#like"></use>';
  1037. html += "</svg>";
  1038. html += "</a>";
  1039. //分享
  1040. html += "<a onclick=\"history_show('" + iterator.id + "')\">";
  1041. html += "<span>" + gLocal.gui.share_to + "</span>";
  1042. html += '<svg class="icon" >';
  1043. html += '<use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#share_to"></use>';
  1044. html += "</svg>";
  1045. html += "</a>";
  1046. html += "</div>";
  1047. html += "</div>";
  1048. //更多按钮结束
  1049. }
  1050. html += "</div>";
  1051. //句子菜单结束
  1052. html += "</div>";
  1053. html += "</div>";
  1054. //tool_bar 结束
  1055. html += '<div class="left_bar" >';
  1056. html += "<span class='icon_sent_status icon_sent_loading'>";
  1057. html +=
  1058. "<svg class='icon icon_spin' style='fill: var(--detail-color); '>" +
  1059. "<use xlink='http://www.w3.org/1999/xlink' href='../studio/svg/icon.svg#loading'></use>" +
  1060. "</svg>";
  1061. html += "</span>";
  1062. html += "<span class='icon_sent_status icon_sent_error' title='再次发送' onclick='tran_sent_save(this)'>";
  1063. html +=
  1064. "<svg class='icon' style='fill: red; '>" +
  1065. "<use xlink='http://www.w3.org/1999/xlink' href='../term/error.svg'></use>" +
  1066. "</svg>";
  1067. html += "</span>";
  1068. html += ' <div class="face">';
  1069. if (iterator.id != "") {
  1070. html += '<span class="head_img">' + iterator.editor_name.nickname.slice(0, 1) + "</span>";
  1071. }
  1072. html += "</div>";
  1073. html +=
  1074. '<div class="date" title="' +
  1075. getFullDataTime(iterator.update_time) +
  1076. '">' +
  1077. getDataTime(iterator.update_time) +
  1078. "</div>";
  1079. html += "</div>";
  1080. html += '<div class="body">';
  1081. html += '<div class="head_bar">';
  1082. html += '<div class="info">';
  1083. html += '<span class="name channel_name" title="' + iterator.editor_name.nickname + gLocal.gui.recent_update + '">';
  1084. if (typeof iterator.channalinfo == "undefined") {
  1085. html += "unkown";
  1086. } else {
  1087. html += iterator.channalinfo.name;
  1088. }
  1089. html += "</span>";
  1090. html += '<span class="name editor_name" ';
  1091. if (typeof iterator.channalinfo == "undefined") {
  1092. html += ">";
  1093. html += "unkown";
  1094. } else {
  1095. html += 'title="' + iterator.channalinfo.name + gLocal.gui.recent_update + '">';
  1096. html += iterator.editor_name.nickname;
  1097. }
  1098. html += "</span>";
  1099. html += '<span class="date" title="' +
  1100. getFullDataTime(iterator.update_time) +
  1101. '">' + getPassDataTime(iterator.update_time) + "</span>";
  1102. html += '<span class="date" >' + getPassDataTime(iterator.update_time) + "</span>";
  1103. html += "</div>";
  1104. html += "<div class='preview'>" + tranText + "</div>";
  1105. html += "</div>";
  1106. html += '<div class="edit">';
  1107. html += '<div class="input">';
  1108. //输入框
  1109. html += TermRenderSentTranTextarea(iterator.text,iterator.id,sid,iterator.channal,iterator.is_pr);
  1110. html += "</div>";
  1111. html += '<div class="edit_tool">';
  1112. //html += ""
  1113. html += '<span style="display: inline-flex;">';
  1114. html += '<span class="keybutton" >ESC</span> = ';
  1115. html += "<a onclick='tran_sent_edit_cancel(this)'>" + gLocal.gui.cancel + "</a>";
  1116. html += "</span>";
  1117. html += "<span style='display: inline-flex;'>";
  1118. html += '<span class="keybutton" >Ctrl/⌘</span>';
  1119. html += "➕";
  1120. html += '<span class="keybutton" >Enter</span> = ';
  1121. if (parseInt(iterator.mypower) < 20) {
  1122. html += "<a onclick='tran_sent_save(this)'>";
  1123. html += gLocal.gui.submit + "<b>" + gLocal.gui.suggest + gLocal.gui.translation + "</b>";
  1124. html += "</a></span><span style='display: inline-flex;'>";
  1125. } else {
  1126. html += "<a onclick='tran_sent_save(this)'>";
  1127. html += gLocal.gui.save;
  1128. html += "</a></span><span style='display: inline-flex;'>";
  1129. }
  1130. html += '<span class="keybutton" >Enter</span> = ';
  1131. html += gLocal.gui.next_line;
  1132. html += "</span><span style='display: inline-flex;'>MarkDown✅</span>";
  1133. html += "</div>";
  1134. html += "</div>";
  1135. html += '<div class="foot_bar">';
  1136. html += '<div class="info">';
  1137. if (iterator.id != "") {
  1138. html += '<span class="date" title="' +
  1139. getFullDataTime(iterator.update_time) +
  1140. '">' + getPassDataTime(iterator.update_time) + "</span>";
  1141. }
  1142. if (iterator.id != "") {
  1143. html += '<span class="name">' + iterator.editor_name.nickname + "</span>";
  1144. }
  1145. if (iterator.id != "") {
  1146. html += '<span class="channel">' + gLocal.gui.updated + " ";
  1147. if (typeof iterator.channalinfo == "undefined") {
  1148. html += "unkown";
  1149. } else {
  1150. html += "<a title='" + iterator.channalinfo.summary + "'>" + iterator.channalinfo.name + "@</a>";
  1151. }
  1152. html += "</span>";
  1153. } else {
  1154. html += '<span class="channel">' + gLocal.gui.no_updated + " @";
  1155. if (typeof iterator.channalinfo == "undefined") {
  1156. html += "unkown";
  1157. } else {
  1158. html += "<a title='" + iterator.channalinfo.owner + "'>" + iterator.channalinfo.name + "@</a>";
  1159. }
  1160. html += "</span>";
  1161. }
  1162. html += '<ul class="tag_list">';
  1163. if (iterator.pr_all && parseInt(iterator.pr_all) > 0) {
  1164. html +=
  1165. "<li onclick=\"note_pr_show('" +
  1166. iterator.channal +
  1167. "','" +
  1168. sid +
  1169. "')\"><span class='icon'>✋</span><span class='num'>" +
  1170. iterator.pr_new +
  1171. "/" +
  1172. iterator.pr_all +
  1173. "</span></li>";
  1174. }
  1175. html += "</ul>";
  1176. html += "</div>"; //end of info
  1177. html += "</div>"; //end of foot bar
  1178. html += "</div>";
  1179. html += "</div>";
  1180. //sent_tran_inner结束
  1181. html += '<div class="pr_content"></div>';
  1182. html += "</div>";
  1183. return html;
  1184. }
  1185. //渲染nissaya单词
  1186. function renderNissayaPreview(str){
  1187. let html ='';
  1188. const sent = str.split("\n");
  1189. for (const iterator of sent) {
  1190. const word = iterator.split("=");
  1191. if(iterator.indexOf('=')>=0){
  1192. html += "<span class='nsy_word'>"
  1193. html += "<span class='org' lang=";
  1194. switch (getCookie('language')) {
  1195. case 'my':
  1196. html += "'my' >";
  1197. html += $.trim(word[0]) + "၊";
  1198. break;
  1199. default:
  1200. html += "'en' >";
  1201. html += my_to_roman(word[0]);
  1202. break;
  1203. }
  1204. html += "</span>";
  1205. html += "<span class='meaning'>";
  1206. if (getCookie('language') !="my") {
  1207. let noPeriod = word[1].split('။');
  1208. noPeriod[0] = myEndingTooltip(noPeriod[0]);
  1209. html += noPeriod.join('။');
  1210. }else{
  1211. html += word[1];
  1212. }
  1213. html += "</span>";
  1214. html += "</span>";
  1215. }else{
  1216. html += iterator;
  1217. }
  1218. html += "\n";
  1219. }
  1220. return html;
  1221. }
  1222. //缅文语尾高亮和提示气泡
  1223. function myEndingTooltip(inStr){
  1224. let myEnding=[
  1225. {
  1226. id:"my_nom1",
  1227. name:"သည်",
  1228. tooltip:'主语',
  1229. },
  1230. {
  1231. id:"my_nom2",
  1232. name:"ကား",
  1233. tooltip:'主格/主语',
  1234. },
  1235. {
  1236. id:"my_nom3",
  1237. name:"က",
  1238. tooltip:'主格/主语',
  1239. },
  1240. {
  1241. id:"my_acc1",
  1242. name:"ကို",
  1243. tooltip:'宾格/宾语',
  1244. },
  1245. {
  1246. id:"my_acc2",
  1247. name:"သို့",
  1248. tooltip:'宾格/趋向',
  1249. },
  1250. {
  1251. id:"my_inst1",
  1252. name:"ဖြင့်",
  1253. tooltip:'具格/用',
  1254. },
  1255. {
  1256. id:"my_inst2",
  1257. name:"နှင့်",
  1258. tooltip:'具格/与',
  1259. },
  1260. {
  1261. id:"my_inst3",
  1262. name:"ကြောင့်",
  1263. tooltip:'具格/凭借;从格/原因',
  1264. },
  1265. {
  1266. id:"my_dat1",
  1267. name:"အား",
  1268. tooltip:'目的格/对象(间接宾语),对……来说',
  1269. },
  1270. {
  1271. id:"my_dat2",
  1272. name:"ငှာ",
  1273. tooltip:'目的格/表示目的,为了……',
  1274. },
  1275. {
  1276. id:"my_abl1",
  1277. name:"မှ",
  1278. tooltip:'从格/表示来源,从……',
  1279. },
  1280. {
  1281. id:"my_abl2",
  1282. name:"အောက်",
  1283. tooltip:'从格/表达比较,比……多',
  1284. },
  1285. {
  1286. id:"my_abl3",
  1287. name:"ထက်",
  1288. tooltip:'从格/表达比较,比……少',
  1289. },
  1290. {
  1291. id:"my_gen1",
  1292. name:"၏",
  1293. tooltip:'属格/的',
  1294. },
  1295. {
  1296. id:"my_gen2",
  1297. name:"တွင်",
  1298. tooltip:'属格/表达范围,……中的',
  1299. },
  1300. {
  1301. id:"my_loc1",
  1302. name:"၌",
  1303. tooltip:'处格/处(范围)',
  1304. },
  1305. {
  1306. id:"my_loc2",
  1307. name:"ကြောင့်",
  1308. tooltip:'处格/表达动机,因……,旨在……',
  1309. },
  1310. {
  1311. id:"my_abs",
  1312. name:"၍",
  1313. tooltip:'连续体',
  1314. },
  1315. {
  1316. id:"my_pl",
  1317. name:"တို့",
  1318. tooltip:'复数',
  1319. },
  1320. {
  1321. id:"my_pl",
  1322. name:"များ",
  1323. tooltip:'复数',
  1324. },
  1325. {
  1326. id:"my_pl",
  1327. name:"ကုန်",
  1328. tooltip:'复数',
  1329. },
  1330. {
  1331. id:"my_pl",
  1332. name:"ကြ",
  1333. tooltip:'复数',
  1334. },
  1335. {
  1336. id:"my_time",
  1337. name:"ပတ်လုံး",
  1338. tooltip:'时间的整数',
  1339. },
  1340. {
  1341. id:"my_time",
  1342. name:"လုံလုံး",
  1343. tooltip:'时间的整数',
  1344. },
  1345. {
  1346. id:"my_length",
  1347. name:"တိုင်တိုင်",
  1348. tooltip:'距离,长度的整数',
  1349. },
  1350. {
  1351. id:"my_length",
  1352. name:"တိုင်အောင်",
  1353. tooltip:'距离,长度的整数',
  1354. },
  1355. {
  1356. id:"my_def",
  1357. name:"နေစဉ်",
  1358. tooltip:'同时发生的时间状语(当……的时候)',
  1359. },
  1360. {
  1361. id:"my_def",
  1362. name:"လျက်",
  1363. tooltip:'同时发生的时间状语(当……的时候)',
  1364. },
  1365. ];
  1366. for (const iterator of myEnding) {
  1367. if(inStr.indexOf(iterator.name)>=0){
  1368. eval("inStr=inStr.replace(/" + iterator.name + " /g,\"<guide gid='grammar_"+iterator.id+"' class='grammar_tag' style='display:unset;'>\"+iterator.name+\"</guide> \");");
  1369. eval("inStr=inStr.replace(/" + iterator.name + "$/g,\"<guide gid='grammar_"+iterator.id+"' class='grammar_tag' style='display:unset;'>\"+iterator.name+\"</guide>\");");
  1370. }
  1371. }
  1372. return inStr;
  1373. }
  1374. function tran_sent_textarea_event_init() {
  1375. let textarea = document.querySelectorAll(".tran_sent_textarea");
  1376. for (let iterator of textarea) {
  1377. iterator.onkeydown = function (e) {
  1378. let menu = document.querySelector("#menu");
  1379. switch (e.key) {
  1380. case "Enter":
  1381. if (menu && menu.style.display == "block") {
  1382. let value = textarea.value;
  1383. let selectionStart = textarea.selectionStart;
  1384. let str1 = value.slice(0, selectionStart);
  1385. let str2 = value.slice(selectionStart);
  1386. textarea.value = str1 + data[menuFocusIndex] + "]]" + str2;
  1387. menu.style.display = "none";
  1388. return false;
  1389. } else {
  1390. if (e.ctrlKey) {
  1391. //回车存盘
  1392. tran_sent_save(e.currentTarget);
  1393. return false;
  1394. }
  1395. }
  1396. break;
  1397. case "Escape":
  1398. tran_sent_edit_cancel(e.currentTarget);
  1399. break;
  1400. default:
  1401. break;
  1402. }
  1403. };
  1404. }
  1405. }
  1406. function render_one_sent_tran(book, para, begin, end, iterator) {
  1407. let output = "";
  1408. output += "<div class='tran' lang='" + iterator.lang + "' style='display:flex;'>";
  1409. //译文工具按钮开始
  1410. output += "<div class='tran_text_tool_botton' onclick='tool_bar_show(this)'>";
  1411. output +=
  1412. "<div class='icon_expand' style='width: 0.8em;height: 0.8em;min-width: 0.8em;min-height: 0.8em;transition: transform 0.5s ease;'></div>";
  1413. //译文工具栏开始
  1414. output += "<div class='tran_text_tool_bar'>";
  1415. output += "<div style='border-right: solid 1px;margin: 0.3em 0;'><li class = 'tip_buttom' ";
  1416. output +=
  1417. " onclick=\"note_edit_sentence('" +
  1418. book +
  1419. "' ,'" +
  1420. para +
  1421. "' ,'" +
  1422. begin +
  1423. "' ,'" +
  1424. end +
  1425. "' ,'" +
  1426. iterator.channal +
  1427. "')\"";
  1428. output +=
  1429. ">" +
  1430. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#ic_mode_edit"></use></svg>';
  1431. output += gLocal.gui.edit + "</li>";
  1432. output += "<li class = 'tip_buttom' ";
  1433. output += " onclick=\"history_show('" + iterator.id + "')\" >";
  1434. output +=
  1435. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#recent_scan"></use></svg>';
  1436. output += gLocal.gui.timeline + "</li>";
  1437. output +=
  1438. "<li class = 'tip_buttom'>" +
  1439. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#copy"></use></svg>';
  1440. output += gLocal.gui.copy + "</li></div>";
  1441. output +=
  1442. "<div style='border-right: solid 1px;margin: 0.3em 0;'><li class = 'tip_buttom'>" +
  1443. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#like"></use></svg>';
  1444. output += gLocal.gui.like + "</li>";
  1445. output +=
  1446. "<li class = 'tip_buttom'>" +
  1447. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#comment"></use></svg>';
  1448. output += gLocal.gui.comment + "</li>";
  1449. output +=
  1450. "<li class = 'tip_buttom'>" +
  1451. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#ic_shopping_cart"></use></svg>';
  1452. output += gLocal.gui.digest + "</li></div>";
  1453. output +=
  1454. "<div style='margin: 0.3em 0;'><li class = 'tip_buttom'>" +
  1455. '<svg class="icon" ><use xlink="http://www.w3.org/1999/xlink" href="../studio/svg/icon.svg#share_to"></use></svg>';
  1456. output += gLocal.gui.share_to + "</li>";
  1457. output += "</div></div>";
  1458. //译文工具栏结束
  1459. output += "</div>";
  1460. //译文工具按钮结束
  1461. //译文正文开始
  1462. output +=
  1463. "<div class='text' id='tran_text_" +
  1464. book +
  1465. "_" +
  1466. para +
  1467. "_" +
  1468. begin +
  1469. "_" +
  1470. end +
  1471. "_" +
  1472. iterator.channal +
  1473. "'>";
  1474. if (iterator.text == "") {
  1475. output +=
  1476. "<span style='color:var(--border-line-color);'>" +
  1477. iterator.channalinfo.name +
  1478. "-" +
  1479. iterator.channalinfo.lang +
  1480. "</span>";
  1481. } else {
  1482. //note_init处理句子链接
  1483. output += note_init(iterator.text, iterator.channal, iterator.editor, iterator.lang);
  1484. }
  1485. output += "</div>";
  1486. //译文正文结束
  1487. output += "</div>";
  1488. //单个channal译文框结束
  1489. return output;
  1490. }
  1491. function hidden_control(obj) {
  1492. if ($(".lang_2")[0].style.display == "none" && $(".lang_3")[0].style.display == "none") {
  1493. $(".lang_2").show();
  1494. $(".lang_3").show();
  1495. obj.innerHTML = "⬅"
  1496. }
  1497. else {
  1498. $(".lang_2").hide();
  1499. $(".lang_3").hide();
  1500. obj.innerHTML = "➡"
  1501. }
  1502. }
  1503. function renderChannelButton(eChannel,obj){
  1504. let html="";
  1505. if (_channal.indexOf(eChannel.uid) < 0) {
  1506. html += '<li class="channel_name" onclick="';
  1507. html +=
  1508. "new_sentence('" +
  1509. $(obj).parent().attr("book") +
  1510. "' ,'" +
  1511. $(obj).parent().attr("para") +
  1512. "' ,'" +
  1513. $(obj).parent().attr("begin") +
  1514. "' ,'" +
  1515. $(obj).parent().attr("end") +
  1516. "' ,'" +
  1517. eChannel.uid +
  1518. "',this)";
  1519. html += '" title="' + eChannel.nickname;
  1520. html += '">' + eChannel.name;
  1521. if (parseInt(eChannel.power) < 20) {
  1522. html += "(建议)";
  1523. }
  1524. html += "</li>";
  1525. }
  1526. return html;
  1527. }
  1528. function add_new_tran_button_click(obj) {
  1529. let html = "<div style='display:flex; max-width: 70vw; white-space: normal;'>";
  1530. var first_lang = "";
  1531. if (Array.isArray(_my_channal)) {
  1532. for (const iterator of _my_channal) {
  1533. if (iterator.lang) {
  1534. first_lang = iterator.lang;
  1535. break;
  1536. }
  1537. }
  1538. }
  1539. //母语channel列表
  1540. html += "<ul class='channel_list lang_0' >";
  1541. html += "<li>";
  1542. html += gLocal.language[first_lang];
  1543. html += "</li>";
  1544. if (Array.isArray(_my_channal)) {
  1545. for (const iterator of _my_channal) {
  1546. if (iterator.status > 0 && first_lang.indexOf(iterator.lang) != -1 && iterator.lang != 0) {
  1547. html += renderChannelButton(iterator,obj);
  1548. }
  1549. }
  1550. }
  1551. html += "<li><a href='../channal/my_channal_index.php' target='_blank'><button>" + gLocal.gui.new + "&nbsp;" + gLocal.gui.channel + "</button></a></li>"
  1552. html += "</ul>";
  1553. //非母语channel列表
  1554. html += "<ul class='channel_list lang_1'>";
  1555. html += "<li>";
  1556. html += gLocal.gui.other;
  1557. html += "&nbsp;<button style='height: 1.8em;' onmouseover='hidden_control(this)'>➡</button>"
  1558. html += "</li>";
  1559. if (Array.isArray(_my_channal)) {
  1560. for (const iterator of _my_channal) {
  1561. if (iterator.status > 0 && first_lang.indexOf(iterator.lang) == -1 && iterator.lang != 0) {
  1562. html += renderChannelButton(iterator,obj);
  1563. }
  1564. }
  1565. }
  1566. html += "</ul>";
  1567. //协作channel列表-带中文
  1568. html += "<ul class='channel_list lang_2' style='display:none;'>";
  1569. html += "<li>";
  1570. html += "协作";
  1571. html += "</li>";
  1572. for (const iterator of _my_channal) {
  1573. if (iterator.status > 0 && iterator.lang == 0 && checkStringIsChinese(iterator.name) == true) {
  1574. html += renderChannelButton(iterator,obj);
  1575. }
  1576. }
  1577. html += "</ul>";
  1578. //协作channel列表-不带中文
  1579. html += "<ul class='channel_list lang_3' style='display:none;'>";
  1580. html += "<li>";
  1581. html += "collaborate";
  1582. html += "</li>";
  1583. if (Array.isArray(_my_channal)) {
  1584. for (const iterator of _my_channal) {
  1585. if (iterator.status > 0 && iterator.lang == 0 && checkStringIsChinese(iterator.name) == false) {
  1586. html += renderChannelButton(iterator,obj);
  1587. }
  1588. }
  1589. }
  1590. html += "</ul>";
  1591. html += "</div>";
  1592. $(obj).parent().children(".tran_text_tool_bar").first().html(html);
  1593. if ($(obj).parent().children(".tran_text_tool_bar").css("display") == "block") {
  1594. $(obj).parent().children(".tran_text_tool_bar").first().hide();
  1595. } else {
  1596. $(obj).parent().children(".tran_text_tool_bar").first().show();
  1597. $(document).one("click", function () {
  1598. $(obj).parent().children(".tran_text_tool_bar").first().hide();
  1599. });
  1600. event.stopPropagation();
  1601. $(obj).parent().show();
  1602. }
  1603. }
  1604. function checkStringIsChinese(str) {
  1605. var pattern = new RegExp("[\u4E00-\u9FA5]+");
  1606. if (pattern.test(str)) {
  1607. return true;
  1608. }
  1609. return false;
  1610. }
  1611. function tool_bar_show(element) {
  1612. if ($(element).find(".tran_text_tool_bar").css("display") == "none") {
  1613. $(element).find(".tran_text_tool_bar").css("display", "flex");
  1614. $(element).find(".icon_expand").css("transform", "rotate(-180deg)");
  1615. $(element).css("background-color", "var(--btn-bg-color)");
  1616. $(element).css("visibility", "visible");
  1617. $(document).one("click", function () {
  1618. $(element).find(".tran_text_tool_bar").hide();
  1619. $(element).css("background-color", "var(--nocolor)");
  1620. $(element).find(".icon_expand").css("transform", "unset");
  1621. $(element).css("visibility", "");
  1622. });
  1623. event.stopPropagation();
  1624. } else {
  1625. $(element).find(".tran_text_tool_bar").hide();
  1626. $(element).css("background-color", "var(--nocolor)");
  1627. $(element).find(".icon_expand").css("transform", "unset");
  1628. $(element).css("visibility", "");
  1629. }
  1630. }
  1631. function new_sentence(book, para, begin, end, channel, obj) {
  1632. let newsent = { id: "", text: "", lang: "", channal: channel };
  1633. for (let iterator of _arrData) {
  1634. if (iterator.book == book && iterator.para == para && iterator.begin == begin && iterator.end == end) {
  1635. let found = false;
  1636. for (const tran of iterator.translation) {
  1637. if (tran.channal == channel) {
  1638. found = true;
  1639. break;
  1640. }
  1641. }
  1642. if (!found) {
  1643. iterator.translation.push(newsent);
  1644. }
  1645. }
  1646. }
  1647. if ($(obj).parent().parent().css("display") == "block") {
  1648. $(obj).parent().parent().hide();
  1649. }
  1650. note_edit_sentence(book, para, begin, end, channel);
  1651. }
  1652. //显示更多译文按钮动作
  1653. function set_more_button_display() {
  1654. $(".other_bar").each(function () {
  1655. const sentid = $(this).attr("sent").split("-");
  1656. const channelType = $(this).attr("channel_type");
  1657. const book = sentid[0];
  1658. const para = sentid[1];
  1659. const begin = sentid[2];
  1660. const end = sentid[3];
  1661. let count = 0;
  1662. let commentaryChannel=0;
  1663. if(channelType=='commentary'){
  1664. for (const iterator of _channal.split(',')) {
  1665. let thisChannel = find_channal(iterator);
  1666. if(thisChannel && thisChannel.type=='commentary'){
  1667. commentaryChannel++;
  1668. }
  1669. }
  1670. }
  1671. for (const iterator of _channalData) {
  1672. if (iterator.final && iterator.type==channelType) {
  1673. for (const onesent of iterator.final) {
  1674. let id = onesent.id.split("-");
  1675. if (book == id[0] && para == id[1] && begin == id[2] && end == id[3] && onesent.final) {
  1676. if(channelType=='commentary'){
  1677. count++;
  1678. }else{
  1679. if (_channal.indexOf(iterator.id) == -1) {
  1680. count++;
  1681. }
  1682. }
  1683. }
  1684. }
  1685. }
  1686. }
  1687. if (count > 0 || commentaryChannel>0)
  1688. {
  1689. $(this).find(".other_tran_num").html(count);
  1690. $(this).find(".other_tran_num").attr("style", "display:inline-flex;");
  1691. $(this).off('click')
  1692. .on('click',function () {
  1693. const sentid = $(this).attr("sent").split("-");
  1694. const channelType = $(this).attr("channel_type");
  1695. const book = sentid[0];
  1696. const para = sentid[1];
  1697. const begin = sentid[2];
  1698. const end = sentid[3];
  1699. let sentId = $(this).attr("sent");
  1700. let otherSentDiv = $(this).parent().parent().siblings(".other_tran").first();
  1701. if (otherSentDiv.css("display") == "none") {
  1702. otherSentDiv.slideDown();
  1703. //加号复位
  1704. //$(this).siblings(".more_tran ").css("transform", "unset");
  1705. $.get(
  1706. "../usent/get.php",
  1707. {
  1708. book: book,
  1709. para: para,
  1710. begin: begin,
  1711. end: end,
  1712. type:channelType,
  1713. },
  1714. function (data, status) {
  1715. let arrSent = JSON.parse(data);
  1716. let html = "<div class='compact "+channelType+"'>";
  1717. if(channelType==='commentary'){
  1718. //先渲染被选择的channel
  1719. if (_channal != "") {
  1720. //for(const channel of _channal.split(","))
  1721. {
  1722. for (const sent of _arrData) {
  1723. if (sent.book == book && sent.para==para && sent.begin==begin && sent.end==end) {
  1724. for (const tran of sent.translation) {
  1725. if(tran.channalinfo.type=='commentary'){
  1726. html += render_one_sent_tran_a(tran);
  1727. }
  1728. }
  1729. break;
  1730. }
  1731. }
  1732. }
  1733. }
  1734. }
  1735. //然后渲染没有被选择的
  1736. for (const iterator of arrSent) {
  1737. if (_channal.indexOf(iterator.channal) == -1) {
  1738. html += render_one_sent_tran_a(iterator);
  1739. }
  1740. }
  1741. html += "</div>";
  1742. otherSentDiv.html(html);
  1743. if(channelType==='commentary'){
  1744. note_refresh_new();
  1745. }
  1746. popup_init();
  1747. guide_init();
  1748. //初始化文本编辑框消息处理
  1749. tran_sent_textarea_event_init();
  1750. }
  1751. );
  1752. } else {
  1753. otherSentDiv.slideUp();
  1754. $(this).siblings(".more_tran ").css("transform", "rotate(-90deg)");
  1755. }
  1756. return false; // 阻止事件冒泡
  1757. });
  1758. }else
  1759. {
  1760. //隐藏自己
  1761. //$(this).hide();
  1762. $(this).addClass("disable");
  1763. //$(this).find(".more_tran").hide();
  1764. }
  1765. });
  1766. }
  1767. function note_edit_sentence(book, para, begin, end, channal) {
  1768. let channalInfo;
  1769. for (const iterator of _channalData) {
  1770. if (iterator.uid == channal) {
  1771. channalInfo = iterator;
  1772. break;
  1773. }
  1774. }
  1775. for (const iterator of _arrData) {
  1776. if (iterator.book == book && iterator.para == para && iterator.begin == begin && iterator.end == end) {
  1777. for (const tran of iterator.translation) {
  1778. if (tran.channal == channal) {
  1779. let html = "";
  1780. html += "<div style='color:blue;'>" + channalInfo.name + "@" + channalInfo.nickname + "</div>";
  1781. html +=
  1782. "<textarea id='edit_dialog_text' sent_id='" +
  1783. tran.id +
  1784. "' book='" +
  1785. book +
  1786. "' para='" +
  1787. para +
  1788. "' begin='" +
  1789. begin +
  1790. "' end='" +
  1791. end +
  1792. "' channal='" +
  1793. channal +
  1794. "' style='width:100%;min-height:260px;'>" +
  1795. tran.text +
  1796. "</textarea>";
  1797. $("#edit_dialog_content").html(html);
  1798. $("#note_sent_edit_dlg").dialog("open");
  1799. return;
  1800. }
  1801. }
  1802. }
  1803. }
  1804. alert("未找到句子");
  1805. }
  1806. function tran_sent_edit_cancel(obj) {
  1807. sent_tran_set_edit_mode(obj, false);
  1808. }
  1809. function tran_sent_save(obj) {
  1810. let sentDiv = find_sent_tran_div(obj);
  1811. if (sentDiv) {
  1812. let textarea = $(sentDiv).children('.sent_tran_inner').first().children('.body').first().children('.edit').find(".tran_sent_textarea").first();
  1813. //let textarea = $(sentDiv).children().find(".tran_sent_textarea").first();
  1814. let isPr = $(textarea).attr("is_pr");
  1815. if (isPr == "true") {
  1816. note_pr_save(textarea);
  1817. } else {
  1818. note_sent_save_a(textarea);
  1819. }
  1820. sent_tran_set_edit_mode(textarea, false);
  1821. } else {
  1822. console.error("sent div not found");
  1823. }
  1824. }
  1825. //保存pr句子 新
  1826. function note_pr_save(obj) {
  1827. let id = $(obj).attr("dbid");
  1828. let sid = $(obj).attr("sid").split("-");
  1829. let book = sid[0];
  1830. let para = sid[1];
  1831. let begin = sid[2];
  1832. let end = sid[3];
  1833. let channel = $(obj).attr("channel");
  1834. let text = $(obj).val();
  1835. let sent_tran_div = find_sent_tran_div(obj);
  1836. $.post(
  1837. "../usent/pr_post.php",
  1838. {
  1839. id: id,
  1840. book: book,
  1841. para: para,
  1842. begin: begin,
  1843. end: end,
  1844. channel: channel,
  1845. text: text,
  1846. },
  1847. sent_save_callback
  1848. );
  1849. if (sent_tran_div) {
  1850. $(sent_tran_div).addClass("loading");
  1851. }
  1852. }
  1853. //保存译文句子 新
  1854. function note_sent_save_a(obj) {
  1855. let id = $(obj).attr("dbid");
  1856. let sid = $(obj).attr("sid").split("-");
  1857. let book = sid[0];
  1858. let para = sid[1];
  1859. let begin = sid[2];
  1860. let end = sid[3];
  1861. let channal = $(obj).attr("channel");
  1862. let text = $(obj).val();
  1863. let sent_tran_div = find_sent_tran_div(obj);
  1864. $.ajaxSetup({
  1865. timeout: 5000,
  1866. });
  1867. $.post("../usent/sent_post.php", {
  1868. id: id,
  1869. book: book,
  1870. para: para,
  1871. begin: begin,
  1872. end: end,
  1873. channal: channal,
  1874. text: text,
  1875. lang: "zh",
  1876. })
  1877. .done(function (data) {
  1878. let result = JSON.parse(data);
  1879. if(result.commit_type==3){
  1880. $.post(
  1881. "/api/v2/sentpr",
  1882. {
  1883. book: book,
  1884. para: para,
  1885. begin: begin,
  1886. end: end,
  1887. channel: channal,
  1888. text: text,
  1889. },
  1890. function(data){
  1891. console.log('pr robot',data);
  1892. }
  1893. );
  1894. }
  1895. sent_save_callback(data);
  1896. })
  1897. .fail(function (xhr, error, data) {
  1898. let sid = book + "-" + para + "-" + begin + "-" + end;
  1899. let sent_tran_div = $(".sent_tran[channel='" + channal + "'][sid='" + sid + "']");
  1900. if (sent_tran_div) {
  1901. sent_tran_div.removeClass("loading");
  1902. sent_tran_div.addClass("error");
  1903. }
  1904. switch (error) {
  1905. case "timeout":
  1906. alert("服务器长时间没有回应。请稍后重试。");
  1907. break;
  1908. case "error":
  1909. alert("与服务器通讯失败,您可能没有连接到网络。请稍后重试。");
  1910. break;
  1911. case "notmodified":
  1912. break;
  1913. default:
  1914. break;
  1915. }
  1916. });
  1917. if (sent_tran_div) {
  1918. $(sent_tran_div).addClass("loading");
  1919. $(sent_tran_div).removeClass("error");
  1920. }
  1921. }
  1922. function update_sent_tran(sentData) {}
  1923. function sent_save_callback(data) {
  1924. let result;
  1925. try {
  1926. result = JSON.parse(data);
  1927. } catch (e) {
  1928. alert(e.message);
  1929. console.error('sent_save_callback',data);
  1930. return;
  1931. }
  1932. if (result.status > 0) {
  1933. alert("error" + result.message);
  1934. } else {
  1935. let sid = result.book + "-" + result.para + "-" + result.begin + "-" + result.end;
  1936. let sent_tran_div = $(
  1937. ".sent_tran[dbid='" + result.id + "'][channel='" + result.channal + "'][sid='" + sid + "']"
  1938. );
  1939. if (sent_tran_div) {
  1940. sent_tran_div.removeClass("loading");
  1941. }
  1942. if (result.commit_type == 1 || result.commit_type == 2) {
  1943. ntf_show("成功修改");
  1944. if (sent_tran_div) {
  1945. let divPreview = sent_tran_div.find(".preview").first();
  1946. let thisChannel = find_channal(result.channal);
  1947. if (result.text == "") {
  1948. //内容为空
  1949. let channel_info = "Empty";
  1950. if (thisChannel) {
  1951. channel_info = thisChannel.name + "-" + thisChannel.nickname;
  1952. }
  1953. divPreview.html("<span style='color:var(--border-line-color);'>" + channel_info + "</span>");
  1954. } else {
  1955. for (const iterator of _arrData) {
  1956. if (
  1957. iterator.book == result.book &&
  1958. iterator.para == result.para &&
  1959. iterator.begin == result.begin &&
  1960. iterator.end == result.end
  1961. ) {
  1962. for (const tran of iterator.translation) {
  1963. if (tran.channal == result.channal) {
  1964. tran.text = result.text;
  1965. break;
  1966. }
  1967. }
  1968. }
  1969. }
  1970. switch (thisChannel.type) {
  1971. case 'nissaya':
  1972. divPreview.html(
  1973. "<div class='nissaya'>"+note_init(renderNissayaPreview(result.text), result.channal, result.editor, result.lang)+"</div>"
  1974. );
  1975. break;
  1976. case 'commentary':
  1977. divPreview.html(
  1978. note_init(result.text, result.channal, result.editor, result.lang)
  1979. );
  1980. note_refresh_new();
  1981. break;
  1982. default:
  1983. divPreview.html(
  1984. note_init(result.text, result.channal, result.editor, result.lang)
  1985. );
  1986. term_updata_translation();
  1987. break;
  1988. }
  1989. popup_init();
  1990. //初始化气泡
  1991. guide_init();
  1992. }
  1993. }
  1994. } else if (result.commit_type == 3) {
  1995. ntf_show("已经提交修改建议");
  1996. } else {
  1997. ntf_show("未提交");
  1998. }
  1999. }
  2000. }
  2001. //保存译文句子
  2002. function note_sent_save() {
  2003. let id = $("#edit_dialog_text").attr("sent_id");
  2004. let book = $("#edit_dialog_text").attr("book");
  2005. let para = $("#edit_dialog_text").attr("para");
  2006. let begin = $("#edit_dialog_text").attr("begin");
  2007. let end = $("#edit_dialog_text").attr("end");
  2008. let channal = $("#edit_dialog_text").attr("channal");
  2009. let text = $("#edit_dialog_text").val();
  2010. $.post(
  2011. "../usent/sent_post.php",
  2012. {
  2013. id: id,
  2014. book: book,
  2015. para: para,
  2016. begin: begin,
  2017. end: end,
  2018. channal: channal,
  2019. text: text,
  2020. lang: "zh",
  2021. },
  2022. function (data) {
  2023. let result = JSON.parse(data);
  2024. if (result.status > 0) {
  2025. alert("error" + result.message);
  2026. } else {
  2027. if (result.commit_type == 1 || result.commit_type == 2) {
  2028. ntf_show("成功修改");
  2029. if (result.text == "") {
  2030. let channel_info = "Empty";
  2031. let thisChannel = find_channal(result.channal);
  2032. if (thisChannel) {
  2033. channel_info = thisChannel.name + "-" + thisChannel.nickname;
  2034. }
  2035. $(
  2036. "#tran_text_" +
  2037. result.book +
  2038. "_" +
  2039. result.para +
  2040. "_" +
  2041. result.begin +
  2042. "_" +
  2043. result.end +
  2044. "_" +
  2045. result.channal
  2046. ).html("<span style='color:var(--border-line-color);'>" + channel_info + "</span>");
  2047. } else {
  2048. $(
  2049. "#tran_text_" +
  2050. result.book +
  2051. "_" +
  2052. result.para +
  2053. "_" +
  2054. result.begin +
  2055. "_" +
  2056. result.end +
  2057. "_" +
  2058. result.channal
  2059. ).html(marked(term_std_str_to_tran(result.text, result.channal, result.editor, result.lang)));
  2060. term_updata_translation();
  2061. for (const iterator of _arrData) {
  2062. if (
  2063. iterator.book == result.book &&
  2064. iterator.para == result.para &&
  2065. iterator.begin == result.begin &&
  2066. iterator.end == result.end
  2067. ) {
  2068. for (const tran of iterator.translation) {
  2069. if (tran.channal == result.channal) {
  2070. tran.text = result.text;
  2071. break;
  2072. }
  2073. }
  2074. }
  2075. }
  2076. }
  2077. } else if (result.commit_type == 3) {
  2078. ntf_show("已经提交修改建议");
  2079. } else {
  2080. ntf_show("未提交");
  2081. }
  2082. }
  2083. }
  2084. );
  2085. }
  2086. function copy_ref(book, para, begin, end) {
  2087. let strRef = "{{" + book + "-" + para + "-" + begin + "-" + end + "}}";
  2088. copy_to_clipboard(strRef);
  2089. }
  2090. function goto_nissaya(book, para, begin = 0, end = 0) {
  2091. window.open("../nissaya/index.php?book=" + book + "&par=" + para + "&begin=" + begin + "&end=" + end, "nissaya");
  2092. }
  2093. function edit_in_studio(book, para, begin, end) {
  2094. wbw_channal_list_open(book, [para]);
  2095. }
  2096. //显示和隐藏某个内容 如 巴利文
  2097. function setVisibility(key, value) {
  2098. switch (key) {
  2099. case "palitext":
  2100. if ($(value).is(":checked")) {
  2101. $(".palitext").show();
  2102. } else {
  2103. $(".palitext").hide();
  2104. }
  2105. break;
  2106. default:
  2107. break;
  2108. }
  2109. }
  2110. function note_show_pali_sim(SentId) {
  2111. pali_sim_dlg_open(SentId, 0, 20);
  2112. }
  2113. function set_pali_script(pos, script) {
  2114. if (script == "none") {
  2115. $(".palitext" + pos).html("");
  2116. } else {
  2117. $(".palitext" + pos).each(function () {
  2118. let html = $(this).siblings(".palitext_roma").first().html();
  2119. $(this).html(html);
  2120. });
  2121. $(".palitext" + pos)
  2122. .find("*")
  2123. .contents()
  2124. .filter(function () {
  2125. return this.nodeType != 1;
  2126. })
  2127. .wrap("<pl" + pos + "></pl" + pos + ">");
  2128. $(".palitext" + pos)
  2129. .contents()
  2130. .filter(function () {
  2131. return this.nodeType != 1;
  2132. })
  2133. .wrap("<pl" + pos + "></pl" + pos + ">");
  2134. $("pl" + pos).html(function (index, oldcontent) {
  2135. switch(script){
  2136. case "မြန်မာ":
  2137. return roman_to_my(oldcontent);
  2138. case "My2Roman":
  2139. return my_to_roman(oldcontent);
  2140. case "සිංහල":
  2141. return roman_to_si(oldcontent);
  2142. case "ᨲ᩠ᩅᩫᨴᩱ᩠ᨿᨵᨾ᩠ᨾ᩼":
  2143. return roman_to_tai(oldcontent);
  2144. case "อักษรไทย":
  2145. return roman_to_thai(oldcontent);
  2146. default:
  2147. return(oldcontent);
  2148. }
  2149. });
  2150. }
  2151. }
  2152. function splite_pali_word() {
  2153. $("pali")
  2154. .contents()
  2155. .filter(function () {
  2156. return this.nodeType != 1;
  2157. })
  2158. .wrap("<pl></pl>");
  2159. $("pl").each(function () {
  2160. let html = $(this).html();
  2161. $(this).html("<w>" + html.replace(/\s/g, "</w> <w>") + "</w>");
  2162. });
  2163. $("w").click(function () {
  2164. let word = com_getPaliReal($(this).text());
  2165. if (gBuildinDictIsOpen) {
  2166. window.open("../dict/index.php?builtin=true&key=" + word, "dict");
  2167. }
  2168. });
  2169. }
  2170. function refresh_pali_script() {
  2171. if (_display && _display == "para") {
  2172. //段落模式
  2173. } else {
  2174. //句子模式
  2175. setting_get("lib.second_script", set_second_scrip);
  2176. }
  2177. }
  2178. function set_second_scrip(value) {
  2179. set_pali_script(2, value);
  2180. }
  2181. function slider_show(obj) {
  2182. $(obj).parent().parent().parent().parent().parent().toggleClass("slider_show_shell");
  2183. }
  2184. function find_sent_tran_div(obj) {
  2185. let jqObj = $(obj);
  2186. while (!jqObj.hasClass("sent_tran")) {
  2187. jqObj = jqObj.parent();
  2188. if (!jqObj) {
  2189. return false;
  2190. }
  2191. }
  2192. return jqObj;
  2193. /*
  2194. let parent = obj.parentNode;
  2195. while (parent.nodeType == 1) {
  2196. if ($(parent).hasClass("sent_tran")) {
  2197. return parent;
  2198. } else if (parent.nodeName == "BODY") {
  2199. return false;
  2200. }
  2201. parent = parent.parentNode;
  2202. }
  2203. return false;
  2204. */
  2205. }
  2206. //显示或隐藏pr数据
  2207. function note_pr_show(channel, id) {
  2208. let obj = $(".sent_tran[channel='" + channel + "'][sid='" + id + "']").find(".pr_content");
  2209. let prHtml = obj.first().html();
  2210. if (prHtml == "") {
  2211. note_get_pr(channel, id);
  2212. } else {
  2213. obj.slideUp();
  2214. obj.html("");
  2215. }
  2216. }
  2217. //获取pr数据并显示
  2218. function note_get_pr(channel, id) {
  2219. let sid = id.split("-");
  2220. let book = sid[0];
  2221. let para = sid[1];
  2222. let begin = sid[2];
  2223. let end = sid[3];
  2224. $.post(
  2225. "../usent/get_pr.php",
  2226. {
  2227. book: book,
  2228. para: para,
  2229. begin: begin,
  2230. end: end,
  2231. channel: channel,
  2232. },
  2233. function (data) {
  2234. let result = JSON.parse(data);
  2235. if (result.length > 0) {
  2236. let html = "<div class='compact pr'>";
  2237. for (const iterator of result) {
  2238. html += render_one_sent_tran_a(iterator, true);
  2239. }
  2240. html += "</div>";
  2241. $(".sent_tran[channel='" + channel + "'][sid='" + id + "']")
  2242. .find(".pr_content")
  2243. .html(html);
  2244. $(".sent_tran[channel='" + channel + "'][sid='" + id + "']")
  2245. .find(".pr_content")
  2246. .slideDown();
  2247. } else {
  2248. }
  2249. }
  2250. );
  2251. $(".sent_tran[channel='" + channel + "'][sid='" + id + "']")
  2252. .find(".pr_content")
  2253. .html("loading");
  2254. $(".sent_tran[channel='" + channel + "'][sid='" + id + "']")
  2255. .find(".pr_content")
  2256. .show();
  2257. }
  2258. function get_channel_by_id(id) {
  2259. if (Array.isArray(_channalData)) {
  2260. for (const iterator of _channalData) {
  2261. if (iterator.id == id) {
  2262. return iterator;
  2263. }
  2264. }
  2265. }
  2266. if (Array.isArray(_my_channal)) {
  2267. for (const iterator of _my_channal) {
  2268. if (iterator.id == id) {
  2269. return iterator;
  2270. }
  2271. }
  2272. }
  2273. return false;
  2274. }
  2275. //设置显示方向
  2276. function setDirection(obj) {
  2277. if (obj.value == "row") {
  2278. $("#contents").removeClass("vertical");
  2279. $("#contents").addClass("horizontal");
  2280. _direction = "row";
  2281. } else {
  2282. $("#contents").removeClass("horizontal");
  2283. $("#contents").addClass("vertical");
  2284. _direction = "col";
  2285. }
  2286. }
  2287. //设置逐段或逐句模式
  2288. function setDisplay(obj) {
  2289. if (obj.value == "para") {
  2290. $("#contents").removeClass("sent_mode");
  2291. $("#contents").addClass("para_mode");
  2292. _display = "para";
  2293. } else {
  2294. $("#contents").removeClass("para_mode");
  2295. $("#contents").addClass("sent_mode");
  2296. _display = "sent";
  2297. }
  2298. }
  2299. //获取文章中H 并渲染为目录
  2300. function render_heading_toc() {
  2301. //$(":header")
  2302. }
  2303. //术语输入At
  2304. const _term_max_menu=9;
  2305. function term_set_word_list_data(el){
  2306. let sid = $(el).attr("sid");
  2307. let asid = sid.split("-");
  2308. let words=new Array();
  2309. let tmpWords = [];
  2310. term_data=[];
  2311. for (const it of _arrData) {
  2312. if(it.book==asid[0] && it.para==asid[1] && it.begin==asid[2] && it.end==asid[3]){
  2313. let palitext = it.palitext;
  2314. words = palitext.split(" ");
  2315. }
  2316. }
  2317. console.log("word",words);
  2318. //查询parent
  2319. for (let index = 0; index < words.length; index++) {
  2320. words[index] = com_getPaliReal(words[index]);
  2321. if(words[index]!=""){
  2322. let parents = term_parent(words[index]);
  2323. for (const key in parents) {
  2324. if (parents.hasOwnProperty.call(parents, key)) {
  2325. //term_data.push({word:key,en:com_getPaliEn(key),weight:weight});
  2326. tmpWords[key]={word:key,en:com_getPaliEn(key),weight:3,exist:0};
  2327. }
  2328. }
  2329. }
  2330. }
  2331. for (const iterator of arrTermAllPali) {
  2332. if(tmpWords.hasOwnProperty(iterator.word)){
  2333. tmpWords[iterator.word].weight+=1;
  2334. tmpWords[iterator.word].exist=1;
  2335. }else{
  2336. tmpWords[iterator.word]={word:iterator.word,en:com_getPaliEn(iterator.word),weight:1,exist:1};
  2337. }
  2338. }
  2339. //arrMyTerm 词头查重
  2340. let tmpMyTerm=[];
  2341. for (const iterator of arrMyTerm) {
  2342. tmpMyTerm[iterator.word]=1;
  2343. }
  2344. //加入到列表
  2345. //在我的字典中的排名靠前
  2346. for (const key in tmpMyTerm) {
  2347. if (tmpMyTerm.hasOwnProperty.call(tmpMyTerm, key)) {
  2348. if(tmpWords.hasOwnProperty(key)){
  2349. tmpWords[key].weight+=1;
  2350. tmpWords[key].exist=2;
  2351. }else{
  2352. tmpWords[key]={word:key,en:com_getPaliEn(key),weight:1,exist:2};
  2353. }
  2354. }
  2355. }
  2356. for (const key in tmpWords) {
  2357. if (tmpWords.hasOwnProperty.call(tmpWords, key)) {
  2358. const element = tmpWords[key];
  2359. term_data.push(element);
  2360. }
  2361. }
  2362. term_data.sort(function(a,b){
  2363. return b.weight-a.weight;
  2364. });
  2365. }
  2366. function text_input_textarea_focuse(el){
  2367. term_set_word_list_data(el);
  2368. term_input_text = el;
  2369. term_input_text.onresize = function(){
  2370. term_input_text.parentElement.querySelector(".text_shadow").style.height=term_input_text.clientHeight+"px";
  2371. }
  2372. term_input_text.onkeydown = function (e) {
  2373. let menu = term_input_text.parentElement.querySelector('.menu');
  2374. switch (e.key) {
  2375. case "ArrowDown"://down arrow
  2376. if(menu.style.display=="block"){
  2377. menuFocusIndex++;
  2378. if(menuFocusIndex>_term_max_menu){
  2379. menuFocusIndex=_term_max_menu;
  2380. }
  2381. menu.innerHTML=TermAtRenderMenu({focus:menuFocusIndex});
  2382. return false;
  2383. }
  2384. break;
  2385. case "ArrowUp"://up arrow
  2386. if(menu.style.display=="block"){
  2387. menuFocusIndex--;
  2388. if(menuFocusIndex<0){
  2389. menuFocusIndex=0;
  2390. }
  2391. menu.innerHTML=TermAtRenderMenu({focus:menuFocusIndex});
  2392. return false;
  2393. }
  2394. break;
  2395. case "Enter":
  2396. if(menu.style.display=="block"){
  2397. term_insert(term_filterd_data[menuFocusIndex]);
  2398. return false;
  2399. }
  2400. if (e.ctrlKey) {
  2401. //回车存盘
  2402. tran_sent_save(e.currentTarget);
  2403. return false;
  2404. }
  2405. break;
  2406. case "Escape":
  2407. if(menu.style.display=="block"){
  2408. term_at_menu_hide();
  2409. }else{
  2410. tran_sent_edit_cancel(e.currentTarget);
  2411. }
  2412. break;
  2413. default:
  2414. break;
  2415. }
  2416. }
  2417. term_input_text.onkeyup = function (e) {
  2418. let textHeight = term_input_text.parentElement.querySelector(".text_shadow").scrollHeight;
  2419. let textHeight2 = term_input_text.clientHeight;
  2420. if(textHeight2>textHeight){
  2421. textHeight=textHeight2;
  2422. }
  2423. term_input_text.style.height = textHeight+"px";
  2424. console.log("text height",textHeight);
  2425. let value = term_input_text.value
  2426. let selectionStart = term_input_text.selectionStart
  2427. let str1 = value.slice(0, selectionStart)
  2428. let str2 = value.slice(selectionStart)
  2429. let textNode1 = document.createTextNode(str1)
  2430. let textNode2 = document.createTextNode(str2)
  2431. let cursor = document.createElement('span')
  2432. cursor.innerHTML = '&nbsp;'
  2433. cursor.setAttribute('class','cursor')
  2434. let mirror = term_input_text.parentElement.querySelector('.text_shadow')
  2435. mirror.innerHTML = ''
  2436. mirror.appendChild(textNode1)
  2437. mirror.appendChild(cursor)
  2438. mirror.appendChild(textNode2)
  2439. let menu = term_input_text.parentElement.querySelector('.menu');
  2440. if(str1.slice(-2)=="[[" ){
  2441. if( menu.style.display!="block"){
  2442. menuFocusIndex=0;
  2443. menu.innerHTML=TermAtRenderMenu({focus:0});
  2444. term_at_menu_show(cursor);
  2445. }
  2446. }else{
  2447. if( menu.style.display=="block"){
  2448. let pos1=str1.lastIndexOf("[[");
  2449. let pos2=str1.lastIndexOf("]]");
  2450. if(pos1==-1 || (pos1!=-1 && pos2>pos1)){
  2451. //光标前没有[[ 或 光标在[[]] 之后
  2452. term_at_menu_hide();
  2453. }
  2454. }
  2455. }
  2456. if(menu.style.display=="block"){
  2457. //term_input += e.key;
  2458. let value = term_input_text.value
  2459. let selectionStart = term_input_text.selectionStart
  2460. let str1 = value.slice(0, selectionStart)
  2461. let str2 = value.slice(selectionStart)
  2462. let pos1=str1.lastIndexOf("[[");
  2463. let pos2=str1.lastIndexOf("]]");
  2464. if(pos1!=-1){
  2465. if(pos2==-1 || pos2<pos1){
  2466. //光标
  2467. term_input = str1.slice(str1.lastIndexOf("[[")+2);
  2468. }
  2469. }
  2470. console.log("term_input",term_input);
  2471. menu.innerHTML=TermAtRenderMenu({focus:menuFocusIndex});
  2472. }
  2473. console.log(e.key);
  2474. console.log(cursor.offsetLeft,cursor.offsetTop)
  2475. }
  2476. }
  2477. function term_at_menu_show(cursor){
  2478. menuFocusIndex=0;
  2479. let menu = term_input_text.parentElement.querySelector('.menu');
  2480. menu.style.display="block";
  2481. menu.style.top=cursor.offsetTop+20+"px";
  2482. menu.style.left=cursor.offsetLeft+"px";
  2483. $(document).on("keyup", function (e) {
  2484. if(e.key=="Escape"){
  2485. term_at_menu_hide();
  2486. }
  2487. });
  2488. }
  2489. function term_at_menu_hide(){
  2490. let menu = term_input_text.parentElement.querySelector('.menu');
  2491. menu.style.display="none";
  2492. term_input="";
  2493. }
  2494. function term_insert(strTerm){
  2495. let value = term_input_text.value;
  2496. let selectionStart = term_input_text.selectionStart;
  2497. let str1 = value.slice(0, selectionStart)
  2498. let str2 = value.slice(selectionStart)
  2499. let pos1=str1.lastIndexOf("[[");
  2500. let pos2=str1.lastIndexOf("]]");
  2501. if(pos1!=-1){
  2502. //光标前有[[
  2503. if(pos2==-1 || pos2<pos1){
  2504. //光标在[[之间]]
  2505. str1 = str1.slice(0,str1.lastIndexOf("[[")+2);
  2506. }
  2507. }
  2508. //TODO 光标会跑到最下面
  2509. term_input_text.value = str1+strTerm+"]]"+str2;
  2510. term_at_menu_hide();
  2511. }
  2512. function TermAtRenderMenu(params) {
  2513. term_filterd_data=[];
  2514. let html="";
  2515. html +="<div class='term_at_menu_input'>"+term_input+"|</div>";
  2516. html +="<ul class='term_at_menu_ul'>";
  2517. let index=0;
  2518. let focusIndex = params.focus%term_data.length;
  2519. for (const it of term_data) {
  2520. if(term_input=="" || it.word.indexOf(term_input)==0 || it.en.indexOf(term_input)==0){
  2521. html +="<li ";
  2522. if(focusIndex==index){
  2523. html +="class='trem_focus' "
  2524. }
  2525. html += "onclick=\"term_insert('"+it.word+"')\" ";
  2526. html +=">";
  2527. html += (index+1)+ ". ";
  2528. if(it.exist>0){
  2529. html += "<b>"+it.word+"</b>";
  2530. }else{
  2531. html +=it.word;
  2532. }
  2533. html +="<li>";
  2534. term_filterd_data.push(it.word);
  2535. if(index >= _term_max_menu){
  2536. break;
  2537. }
  2538. index++;
  2539. }
  2540. }
  2541. return html;
  2542. }
  2543. //添加自动格位数据到内存字典
  2544. function term_parent(paliword) {
  2545. let output=[];
  2546. for (const it of gCaseTable) {
  2547. if (it.type != ".v.") {
  2548. let sEnd2 = paliword.slice(0 - it.end2.length);
  2549. if (sEnd2 == it.end2) {
  2550. let wordParent = paliword.slice(0, 0 - it.end2.length) + it.end1;
  2551. output[wordParent]=1;
  2552. }
  2553. }
  2554. }
  2555. return output;
  2556. }
  2557. function setSentToolBarEvent(){
  2558. $('.sent_tran_inner').not('.commentary').off('mouseenter').on('mouseenter',function(){
  2559. $(this).children('.tool_bar').first().children('.right').show();
  2560. });
  2561. $('.sent_tran_inner').not('.commentary').off('mouseleave').on('mouseleave',function(){
  2562. $(this).children('.tool_bar').first().children('.right').hide();
  2563. })
  2564. }