forked from mrlan/EnglishPal
				
			refactor fillword.js and highlight.js
							parent
							
								
									e48008550a
								
							
						
					
					
						commit
						3d24690ccf
					
				|  | @ -1,29 +1,34 @@ | ||||||
| isRead = true; | let isRead = true; | ||||||
| isChoose = true; | let isChoose = true; | ||||||
| var reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停
 | let reader = window.speechSynthesis; // 全局定义朗读者,以便朗读和暂停
 | ||||||
| 
 | 
 | ||||||
| function getWord(){ | function getWord() { | ||||||
|    var word = window.getSelection?window.getSelection():document.selection.createRange().text; |     return window.getSelection ? window.getSelection() : document.selection.createRange().text; | ||||||
|    return word; |  | ||||||
| } | } | ||||||
| function fillinWord(){ | 
 | ||||||
|    var word = getWord(); | function fillInWord() { | ||||||
|  |     let word = getWord(); | ||||||
|     if (isRead) read(word); |     if (isRead) read(word); | ||||||
|     if (!isChoose) return; |     if (!isChoose) return; | ||||||
|    var element = document.getElementById("selected-words"); |     const element = document.getElementById("selected-words"); | ||||||
|     element.value = element.value + " " + word; |     element.value = element.value + " " + word; | ||||||
| } | } | ||||||
| document.getElementById("text-content").addEventListener("click", fillinWord, false); | 
 | ||||||
| function read(s){ | document.getElementById("text-content").addEventListener("click", fillInWord, false); | ||||||
|    var msg = new SpeechSynthesisUtterance(s); | 
 | ||||||
|  | function read(s) { | ||||||
|  |     let msg = new SpeechSynthesisUtterance(s); | ||||||
|     reader.speak(msg); |     reader.speak(msg); | ||||||
| } | } | ||||||
| function onReadClick(){ | 
 | ||||||
|  | 
 | ||||||
|  | function onReadClick() { | ||||||
|     isRead = !isRead; |     isRead = !isRead; | ||||||
|     if(!isRead){ |     if (!isRead) { | ||||||
|         reader.cancel(); |         reader.cancel(); | ||||||
|     } |     } | ||||||
| } | } | ||||||
| function onChooseClick(){ | 
 | ||||||
|  | function onChooseClick() { | ||||||
|     isChoose = !isChoose; |     isChoose = !isChoose; | ||||||
| } | } | ||||||
|  | @ -1,45 +1,44 @@ | ||||||
| var isHighlight = true; | let isHighlight = true; | ||||||
| 
 | 
 | ||||||
| function cancelBtnHandler() { | function cancelBtnHandler() { | ||||||
|     cancel_highLight(); |     cancel_highLight(); | ||||||
|     document.getElementById("text-content").removeEventListener("click", fillinWord, false); |     document.getElementById("text-content").removeEventListener("click", fillInWord, false); | ||||||
|     document.getElementById("text-content").removeEventListener("touchstart", fillinWord, false); |     document.getElementById("text-content").removeEventListener("touchstart", fillInWord, false); | ||||||
|     document.getElementById("text-content").addEventListener("click", fillinWord2, false); |     document.getElementById("text-content").addEventListener("click", fillInWord2, false); | ||||||
|     document.getElementById("text-content").addEventListener("touchstart", fillinWord2, false); |     document.getElementById("text-content").addEventListener("touchstart", fillInWord2, false); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function showBtnHandler() { | function showBtnHandler() { | ||||||
|     document.getElementById("text-content").removeEventListener("click", fillinWord2, false); |     document.getElementById("text-content").removeEventListener("click", fillInWord2, false); | ||||||
|     document.getElementById("text-content").removeEventListener("touchstart", fillinWord2, false); |     document.getElementById("text-content").removeEventListener("touchstart", fillInWord2, false); | ||||||
|     document.getElementById("text-content").addEventListener("click", fillinWord, false); |     document.getElementById("text-content").addEventListener("click", fillInWord, false); | ||||||
|     document.getElementById("text-content").addEventListener("touchstart", fillinWord, false); |     document.getElementById("text-content").addEventListener("touchstart", fillInWord, false); | ||||||
|     highLight(); |     highLight(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function getWord() { | function getWord() { | ||||||
|     var word = window.getSelection ? window.getSelection() : document.selection.createRange().text; |     return window.getSelection ? window.getSelection() : document.selection.createRange().text; | ||||||
|     return word; |  | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function highLight() { | function highLight() { | ||||||
|     if(!isHighlight) return; |     if (!isHighlight) return; | ||||||
|     var txt = document.getElementById("article").innerText; |     let txt = document.getElementById("article").innerText; | ||||||
|     var sel_word1 = document.getElementById("selected-words"); |     let sel_word1 = document.getElementById("selected-words"); | ||||||
|     var sel_word2 = document.getElementById("selected-words2"); |     let sel_word2 = document.getElementById("selected-words2"); | ||||||
|     if (sel_word1 != null) { |     if (sel_word1 != null) { | ||||||
|         var list = sel_word1.value.split(" "); |         const list = sel_word1.value.split(" "); | ||||||
|         for (var i = 0; i < list.length; ++i) { |         for (let i = 0; i < list.length; ++i) { | ||||||
|             list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); |             list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); | ||||||
|             if (list[i] != "" && "<mark>".indexOf(list[i]) == -1 && "</mark>".indexOf(list[i]) == -1) { |             if (list[i] !== "" && "<mark>".indexOf(list[i]) === -1 && "</mark>".indexOf(list[i]) === -1) { | ||||||
|                 txt = txt.replace(new RegExp(list[i], "g"), "<mark>" + list[i] + "</mark>"); |                 txt = txt.replace(new RegExp(list[i], "g"), "<mark>" + list[i] + "</mark>"); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     if (sel_word2 != null) { |     if (sel_word2 != null) { | ||||||
|         var list2 = sel_word2.value.split(" "); |         const list2 = sel_word2.value.split(" "); | ||||||
|         for (var i = 0; i < list2.length; ++i) { |         for (let i = 0; i < list2.length; ++i) { | ||||||
|             list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); |             list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); | ||||||
|             if (list2[i] != "" && "<mark>".indexOf(list2[i]) == -1 && "</mark>".indexOf(list2[i]) == -1) { |             if (list2[i] !== "" && "<mark>".indexOf(list2[i]) === -1 && "</mark>".indexOf(list2[i]) === -1) { | ||||||
|                 txt = txt.replace(new RegExp(list2[i], "g"), "<mark>" + list2[i] + "</mark>"); |                 txt = txt.replace(new RegExp(list2[i], "g"), "<mark>" + list2[i] + "</mark>"); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  | @ -48,24 +47,24 @@ function highLight() { | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function cancel_highLight() { | function cancel_highLight() { | ||||||
|     var txt = document.getElementById("article").innerText; |     const list = sel_word1.value.split(" "); | ||||||
|     var sel_word1 = document.getElementById("selected-words"); |     let txt = document.getElementById("article").innerText; | ||||||
|     var sel_word2 = document.getElementById("selected-words2"); |     let sel_word1 = document.getElementById("selected-words"); | ||||||
|  |     const sel_word2 = document.getElementById("selected-words2"); | ||||||
|     if (sel_word1 != null) { |     if (sel_word1 != null) { | ||||||
|         var list = sel_word1.value.split(" "); |         for (let i = 0; i < list.length; ++i) { | ||||||
|         for (var i = 0; i < list.length; ++i) { |  | ||||||
|             list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); |             list[i] = list[i].replace(/(^\s*)|(\s*$)/g, ""); | ||||||
|             if (list[i] != "") { |             if (list[i] !== "") { | ||||||
|                 txt = txt.replace("<mark>" + list[i] + "</mark>", "list[i]"); |                 txt = txt.replace("<mark>" + list[i] + "</mark>", "list[i]"); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
|     if (sel_word2 != null) { |     if (sel_word2 != null) { | ||||||
|         var list2 = sel_word1.value.split(" "); |         let list2 = sel_word1.value.split(" "); | ||||||
|         for (var i = 0; i < list2.length; ++i) { |         for (let i = 0; i < list2.length; ++i) { | ||||||
|             var list2 = sel_word2.value.split(" "); |             list2 = sel_word2.value.split(" "); | ||||||
|             list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); |             list2[i] = list2[i].replace(/(^\s*)|(\s*$)/g, ""); | ||||||
|             if (list2[i] != "") { |             if (list2[i] !== "") { | ||||||
|                 txt = txt.replace("<mark>" + list[i] + "</mark>", "list[i]"); |                 txt = txt.replace("<mark>" + list[i] + "</mark>", "list[i]"); | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  | @ -73,11 +72,11 @@ function cancel_highLight() { | ||||||
|     document.getElementById("article").innerHTML = txt; |     document.getElementById("article").innerHTML = txt; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function fillinWord() { | function fillInWord() { | ||||||
|     highLight(); |     highLight(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| function fillinWord2() { | function fillInWord2() { | ||||||
|     cancel_highLight(); |     cancel_highLight(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue