-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathselectMenu.js
More file actions
executable file
·167 lines (142 loc) · 3.78 KB
/
selectMenu.js
File metadata and controls
executable file
·167 lines (142 loc) · 3.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/// LABELING_SECTION_START
// https://github.com/puutaro/selectMenu
/// LABELING_SECTION_END
/// SETTING_SECTION_START
editExecute="ALWAYS"
setReplaceVariables="TEXT_LABEL=label"
setReplaceVariables="FGB_DIR_PATH=dirPath"
setReplaceVariables="FGB_SUFFIX=suffix"
setReplaceVariables="BTN_CMD=cmd"
setReplaceVariables="BTN_LABEL=label"
setReplaceVariables="LIST_PATH=listPath"
setReplaceVariables="LIMIT_NUM=limitNum"
setReplaceVariables="URL_HISTORY_CLICK=urlHistoryClick"
setReplaceVariables="currentAppDirPath=${01}"
setReplaceVariables="selectMenuDirPath=${currentAppDirPath}/${001}"
setReplaceVariables="selectMenuListDirPath=${selectMenuDirPath}/menuList"
setReplaceVariables="selectMenuListFilePath=${selectMenuListDirPath}/menu.txt"
setVariableTypes="SET_ARGS:CB=-?urlHistoryClick"
setVariableTypes="EDIT_MENU:LBL:DSL:BTN=${TEXT_LABEL}=THIS|${LIST_PATH}=${selectMenuListFilePath}|${BTN_CMD}=setf type=ListAdd suffix=.js dirPath=${01}?${BTN_LABEL}=ADD"
setVariableTypes="HIGHLIGHT_SCRIPT:TXT:FGB=${TEXT_LABEL}=THIS|${FGB_DIR_PATH}=${01}?${FGB_SUFFIX}=.js"
hideSettingVariables="editExecute"
hideSettingVariables="setReplaceVariables"
hideSettingVariables="setVariableTypes"
scriptFileName="selectMenu.js"
/// SETTING_SECTION_END
/// CMD_VARIABLE_SECTION_START
SET_ARGS=""
HIGHLIGHT_SCRIPT="webSearcher.js"
EDIT_MENU="${01}/${001}/menuList/menu.txt"
/// CMD_VARIABLE_SECTION_END
/// Please write bellow with shell script
var loadTimes = 0;
const currentAppDirPath = "${currentAppDirPath}";
const menuAddMode = "menuAdd";
jsFileSystem.createDir(
"${selectMenuListDirPath}"
);
let args = jsArgs.get().split("\t");
const FIRST_ARGS = args.at(0);
switcher();
function switcher(){
switch(FIRST_ARGS){
case "":
case "${URL_HISTORY_CLICK}":
execLaunchMenuHandler();
break;
};
};
function execLaunchMenuHandler() {
const highlightText = getSelectionText();
const highLightScriptPath = `${01}/${HIGHLIGHT_SCRIPT}`;
const isHighlightScript = jsFileSystem.isFile(
highLightScriptPath
);
if(
highlightText
&& isHighlightScript
){
loadJsPathAsUrl(
highLightScriptPath
);
exitZero();
};
launchMenu();
exitZero();
};
function launchMenu(){
const title="select from bellow";
let menuTabsepaStringList = jsFileSystem.readLocalFile(
"${selectMenuListFilePath}"
).split("\n");
const menuTabsepaStringListLength =
menuTabsepaStringList.length;
if(!menuTabsepaStringList) exitZero();
var selectedMenu = "";
if(menuTabsepaStringListLength == 1){
selectedMenu = menuTabsepaStringList.at(0);
} else {
const menuNewLineSepaString =
menuTabsepaStringList.join("\n");
selectedMenu = jsDialog.listDialog(
"Select bellow list",
"",
menuNewLineSepaString
);
};
if(!selectedMenu) exitZero();
const selectedJsPath =
[currentAppDirPath, selectedMenu].join("/");
launchJsHandler(
selectedJsPath
)
};
function launchJsHandler(
selectedJsPath
){
jsArgs.set(
decideSetArgs()
);
if(SET_ARGS != "${URL_HISTORY_CLICK}"){
loadJsPathAsUrl(
selectedJsPath
);
};
const urlHistoryClickJsPath = [
`${jsPath.getFannelDirPath(selectedJsPath)}/systemJs`,
"urlHistoryClick.js",
].join("/");
if(!jsFileSystem.isFile(urlHistoryClickJsPath)){
loadJsPathAsUrl(
selectedJsPath
);
};
loadJsPathAsUrl(
urlHistoryClickJsPath
);
};
function loadJsPathAsUrl(
selectedJsPath
){
const jsUrlString = jsUrl.makeJsUrl(
selectedJsPath
);
jsUrl.loadUrl(jsUrlString);
exitZero();
};
function getSelectionText() {
var text = "";
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection && document.selection.type != "Control") {
text = document.selection.createRange().text;
};
return text;
};
function decideSetArgs(){
switch(SET_ARGS){
case "${URL_HISTORY_CLICK}":
return `${SET_ARGS}`;
};
return "";
};