note.js 74 KB

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