Skip to content

Commit acb1d56

Browse files
committed
refactor: 将代码按功能进行划分
1 parent 18af3c3 commit acb1d56

File tree

8 files changed

+1196
-1771
lines changed

8 files changed

+1196
-1771
lines changed

chrome/content/overlay.xul

+6-5
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
<overlay id="jasminum"
66
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
77

8-
<script type="application/x-javascript" src="chrome://jasminum/content/scripts/jasminum.js"/>
9-
108
<!-- <popup id="zotero-collectionmenu">
119
<menuseparator/>
1210
<menuitem id="zotero-collectionmenu-jasminum" label="&zotero.jasminum.updateCollection.label;" oncommand="Zotero.Jasminum.updateSelectedEntity()">
@@ -23,13 +21,16 @@
2321
<menuitem label="&jasminum.namehandler.removeDot.label;" oncommand="Zotero.Jasminum.removeDotM();"/>
2422
</menupopup>
2523
</menu>
26-
<menuitem id="zotero-itemmenu-jasminum"
24+
<menuitem id="zotero-itemmenu-jasminum"
2725
label="&jasminum.update.label;"
2826
class="menuitem-iconic jasminum-searchCNKI-icon"
29-
oncommand="Zotero.Jasminum.updateSelectedItems();"/>
27+
oncommand="Zotero.Jasminum.searchSelectedItems();"/>
3028
<menuitem id="zotero-itemmenu-jasminum-bookmark"
3129
label="&jasminum.addBookmark.label;"
3230
class="menuitem-iconic jasminum-bookmark-icon"
33-
oncommand="Zotero.Jasminum.addBookmarkItemM();"/>
31+
oncommand="Zotero.Jasminum.addBookmarkItem();"/>
3432
</menupopup>
33+
34+
<script src="chrome://zotero/content/include.js"/>
35+
<script src="chrome://jasminum/content/scripts/include.js"/>
3536
</overlay>

chrome/content/scripts/include.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
if (!Zotero.Jasminum) {
2+
var fileLoader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
3+
.getService(Components.interfaces.mozIJSSubScriptLoader);
4+
var scripts = ['jasminum', 'ui', 'scrape', 'utils'];
5+
scripts.forEach(s => fileLoader.loadSubScript('chrome://jasminum/content/scripts/' + s + '.js'));
6+
}
7+
8+
9+
window.addEventListener(
10+
"load",
11+
function (e) {
12+
Zotero.Jasminum.init();
13+
if (window.ZoteroPane) {
14+
var doc = window.ZoteroPane.document;
15+
// add event listener for zotfile menu items
16+
doc.getElementById("zotero-itemmenu").addEventListener(
17+
"popupshowing",
18+
Zotero.Jasminum.UI.displayMenuitem,
19+
false
20+
);
21+
}
22+
},
23+
false
24+
);

0 commit comments

Comments
 (0)