WaniKani Mini Item Marker

Another Item Marker for WaniKani

  1. // ==UserScript==
  2. // @name WaniKani Mini Item Marker
  3. // @namespace wk_mtm
  4. // @version 0.2
  5. // @description Another Item Marker for WaniKani
  6. // @author polv
  7. // @match https://www.wanikani.com/review/session
  8. // @match https://www.wanikani.com/dashboard
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. var word = {id: ''};
  13. var marker_array = $.jStorage.get('wk_marker_array', []);
  14. var marked_text = ['Usage', 'Reading'];
  15. var marked_color = ['#CCCCCC', 'green'];
  16. var num_click = 0;
  17. var url = document.URL;
  18.  
  19. (function() {
  20. 'use strict';
  21. $('head').append(`<style>
  22. .marked {
  23. border: solid 5px;
  24. padding: 4px;
  25. margin: 4px 4px 0px 4px;
  26. }
  27. .marked-text {
  28. position : absolute;
  29. top : -1em;
  30. right : 0em;
  31. font-size : 0.2em;
  32. }
  33. .marked-parent {
  34. position: relative;
  35. width: 0;
  36. height: 0;
  37. }
  38. pre{
  39. -moz-tab-size: 15;
  40. -o-tab-size: 15;
  41. tab-size: 15;
  42. }
  43. </style>`);
  44.  
  45. if(url.indexOf('review') != -1){
  46. $('#character span').click(function(){
  47. word = $.jStorage.get("currentItem");
  48.  
  49. if(num_click >= marked_text.length){
  50. num_click = -1;
  51. $(this).removeClass('marked');
  52. $('.marked-parent').remove();
  53. for(var i=0; i<marked_text.length; i++) {
  54. var index_splice = getMarkerIndex(marked_text[i], word);
  55. if(index_splice !== -1)
  56. marker_array.splice(index_splice,1);
  57. }
  58. $.jStorage.set('wk_marker_array', marker_array);
  59. } else {
  60. $(this).addClass('marked');
  61. $(this).css('border-color', marked_color[num_click]);
  62. }
  63.  
  64. if($(this).hasClass('marked')) {
  65. $('.marked-parent').remove();
  66. $('.marked').after('<span class="marked-parent"><span class="marked-text">' + marked_text[num_click] + '</span></span>');
  67. for(var i=0; i<marked_text.length; i++) {
  68. var index_splice = getMarkerIndex(marked_text[i], word);
  69. if(index_splice !== -1)
  70. marker_array.splice(index_splice,1);
  71. }
  72. marker_array.push([marked_text[num_click], word]);
  73. $.jStorage.set('wk_marker_array', marker_array);
  74. }
  75. num_click++;
  76. });
  77.  
  78. $.jStorage.listenKeyChange('currentItem', function(key) {
  79. if(markedWord($('#character span:first').text())){
  80. $('.marked-parent').remove();
  81. num_click = marked_text.indexOf(markedWord($('#character span:first').text()));
  82. $('#character span').css('border-color', marked_color[num_click]);
  83. $('#character span').addClass('marked');
  84. $('.marked').after('<span class="marked-parent"><span class="marked-text">' + marked_text[num_click] + '</span></span>');
  85. }
  86. else {
  87. num_click = 0;
  88. $('.marked-parent').remove();
  89. $('#character span').removeClass('marked');
  90. }
  91. });
  92. } else {
  93. $('.progression').after('<section class="item-marker"/>');
  94. for(var i=0; i<marked_text.length; i++){
  95. $('.item-marker').append('<h2 class="' + marked_text[i] + '"></h2><pre class="' + marked_text[i] + '"></pre>');
  96. $('.item-marker h2.' + marked_text[i]).append(marked_text[i]);
  97. }
  98.  
  99. marker_array.sort(function(a,b){
  100. return a[1].level-b[1].level;
  101. });
  102. for(i=0; i<marker_array.length; i++){
  103. $('.item-marker pre.' + marker_array[i][0]).append(formatCurrentItem(marker_array[i][1]));
  104. }
  105.  
  106. $('.item-marker-remove').click(function(){
  107. word.id = $(this).parent('div').attr('class');
  108. for(var i=0; i<marked_text.length; i++) {
  109. var index_splice = getMarkerIndex(marked_text[i], word);
  110. if(index_splice !== -1)
  111. marker_array.splice(index_splice,1);
  112. }
  113. $.jStorage.set('wk_marker_array', marker_array);
  114. $(this).parent('div').remove();
  115. debugger;
  116. });
  117. }
  118. })();
  119.  
  120. function markedWord(word){
  121. for(var i=0; i<marker_array.length; i++){
  122. var check;
  123. if(marker_array[i][1].voc)
  124. check = marker_array[i][1].voc;
  125. else if(marker_array[i][1].kan)
  126. check = marker_array[i][1].kan;
  127. else
  128. check = marker_array[i][1].rad;
  129.  
  130. if(check === word)
  131. return marker_array[i][0];
  132. }
  133. return false;
  134. }
  135.  
  136. function getMarkerIndex(text, word){
  137. for(var i=0; i<marker_array.length; i++){
  138. if(marker_array[i][0]===text && marker_array[i][1].id==word.id)
  139. return i;
  140. }
  141. return -1;
  142. }
  143.  
  144. function formatCurrentItem(currentItem){
  145. var output = '<div class="'+currentItem.id+'">';
  146.  
  147. if(currentItem.voc)
  148. output += 'Vocabulary\t' + currentItem.voc;
  149. else if(currentItem.kan)
  150. output += 'Kanji\t' + currentItem.kan;
  151. else if(currentItem.rad)
  152. output += 'Radical\t' + currentItem.rad;
  153.  
  154. if(currentItem.voc)
  155. output += '\t' + currentItem.kana.join(',');
  156. else if(currentItem.kan)
  157. output += '\t[On]' + currentItem.on.join(',') + '[Kun]' + currentItem.kun.join(',');
  158. else if(currentItem.rad)
  159. output += '\t';
  160.  
  161. output += '\t' + currentItem.en.join(',');
  162.  
  163. output += '\tLevel ' + currentItem.level;
  164.  
  165. output += '\t<a class="item-marker-remove">Remove</a>';
  166.  
  167. output += '\n</div>';
  168.  
  169. return output;
  170. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址