ddm-plugin-dubbo-support 0.0.5 → 0.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -201
- package/README.md +49 -49
- package/dist/index.js +70 -42
- package/dist/renderer.js +208 -74
- package/package.json +144 -51
- package/dist/renderIndex.js +0 -292
- package/public/.DS_Store +0 -0
- package/public/jar/.DS_Store +0 -0
package/dist/renderer.js
CHANGED
|
@@ -1,6 +1,22 @@
|
|
|
1
1
|
/******/ (() => { // webpackBootstrap
|
|
2
2
|
/******/ var __webpack_modules__ = ({
|
|
3
3
|
|
|
4
|
+
/***/ 477:
|
|
5
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6
|
+
|
|
7
|
+
"use strict";
|
|
8
|
+
__webpack_require__.r(__webpack_exports__);
|
|
9
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
11
|
+
/* harmony export */ });
|
|
12
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
|
|
13
|
+
props: {
|
|
14
|
+
name: String
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
/***/ }),
|
|
19
|
+
|
|
4
20
|
/***/ 440:
|
|
5
21
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
6
22
|
|
|
@@ -276,7 +292,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
276
292
|
async generateInvokeCommand() {
|
|
277
293
|
const param = {
|
|
278
294
|
serviceName: `${this.currentProvider.serviceName}`,
|
|
279
|
-
method: this.method.
|
|
295
|
+
method: this.method.methodName,
|
|
280
296
|
params: JSON.parse(this.codeConfig.code)
|
|
281
297
|
};
|
|
282
298
|
this.invokeReulst.code = _common_TelnetUtils_js__WEBPACK_IMPORTED_MODULE_0__["default"].buildInvokeCommand(param);
|
|
@@ -284,7 +300,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
284
300
|
openHistoryDialog() {
|
|
285
301
|
this.dialogVisible = true;
|
|
286
302
|
this.$nextTick(() => {
|
|
287
|
-
this.$refs.dubboInvokeHistoryParam.changeParam(this.currentProvider, this.method.
|
|
303
|
+
this.$refs.dubboInvokeHistoryParam.changeParam(this.currentProvider, this.method.methodName);
|
|
288
304
|
});
|
|
289
305
|
},
|
|
290
306
|
selectHistoryParam() {
|
|
@@ -833,6 +849,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
833
849
|
}
|
|
834
850
|
});
|
|
835
851
|
|
|
852
|
+
/***/ }),
|
|
853
|
+
|
|
854
|
+
/***/ 475:
|
|
855
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
856
|
+
|
|
857
|
+
"use strict";
|
|
858
|
+
__webpack_require__.r(__webpack_exports__);
|
|
859
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
860
|
+
/* harmony export */ render: () => (/* binding */ render),
|
|
861
|
+
/* harmony export */ staticRenderFns: () => (/* binding */ staticRenderFns)
|
|
862
|
+
/* harmony export */ });
|
|
863
|
+
var render = function render() {
|
|
864
|
+
var _vm = this,
|
|
865
|
+
_c = _vm._self._c;
|
|
866
|
+
return _c("div", [_vm._v("hello, " + _vm._s(_vm.name))]);
|
|
867
|
+
};
|
|
868
|
+
var staticRenderFns = [];
|
|
869
|
+
render._withStripped = true;
|
|
870
|
+
|
|
871
|
+
|
|
836
872
|
/***/ }),
|
|
837
873
|
|
|
838
874
|
/***/ 438:
|
|
@@ -1200,6 +1236,17 @@ var render = function render() {
|
|
|
1200
1236
|
on: {
|
|
1201
1237
|
click: _vm.generateInvokeCommand
|
|
1202
1238
|
}
|
|
1239
|
+
})]), _vm._v(" "), _c("el-tooltip", {
|
|
1240
|
+
attrs: {
|
|
1241
|
+
effect: "light",
|
|
1242
|
+
content: "utools JSON编辑器",
|
|
1243
|
+
placement: "top-start"
|
|
1244
|
+
}
|
|
1245
|
+
}, [_c("i", {
|
|
1246
|
+
staticClass: "el-icon-grape iconButton",
|
|
1247
|
+
on: {
|
|
1248
|
+
click: () => _vm.$remote.shell.openExternal("utools://JSON%20%E7%BC%96%E8%BE%91%E5%99%A8/Json?" + encodeURIComponent(_vm.codeConfig.code))
|
|
1249
|
+
}
|
|
1203
1250
|
})]), _vm._v(" "), _c("el-tooltip", {
|
|
1204
1251
|
attrs: {
|
|
1205
1252
|
effect: "light",
|
|
@@ -1256,7 +1303,18 @@ var render = function render() {
|
|
|
1256
1303
|
attrs: {
|
|
1257
1304
|
name: "response"
|
|
1258
1305
|
}
|
|
1259
|
-
}, [_c("span", [_vm._v(_vm._s(_vm.invokeReulst.elapsedTime ? `Time: ${_vm.invokeReulst.elapsedTime} ms` : "") + " ")]), _vm._v(" "), _c("el-tooltip", {
|
|
1306
|
+
}, [_c("span", [_vm._v(_vm._s(_vm.invokeReulst.elapsedTime ? `Time: ${_vm.invokeReulst.elapsedTime} ms` : "") + " ")]), _vm._v(" "), _vm.invokeReulst.code ? _c("el-tooltip", {
|
|
1307
|
+
attrs: {
|
|
1308
|
+
effect: "light",
|
|
1309
|
+
content: "utools JSON编辑器",
|
|
1310
|
+
placement: "top-start"
|
|
1311
|
+
}
|
|
1312
|
+
}, [_c("i", {
|
|
1313
|
+
staticClass: "el-icon-grape iconButton",
|
|
1314
|
+
on: {
|
|
1315
|
+
click: () => _vm.$remote.shell.openExternal("utools://JSON%20%E7%BC%96%E8%BE%91%E5%99%A8/Json?" + encodeURIComponent(_vm.invokeReulst.code))
|
|
1316
|
+
}
|
|
1317
|
+
})]) : _vm._e(), _vm._v(" "), _c("el-tooltip", {
|
|
1260
1318
|
attrs: {
|
|
1261
1319
|
effect: "light",
|
|
1262
1320
|
content: _vm.$pluginT("dubbo.invokePage.format"),
|
|
@@ -1638,8 +1696,9 @@ var render = function render() {
|
|
|
1638
1696
|
}
|
|
1639
1697
|
}, [_c("el-input", {
|
|
1640
1698
|
attrs: {
|
|
1641
|
-
type: "
|
|
1642
|
-
placeholder: _vm.$pluginT("connect.dubboAdmin.password")
|
|
1699
|
+
type: "password",
|
|
1700
|
+
placeholder: _vm.$pluginT("connect.dubboAdmin.password"),
|
|
1701
|
+
"show-password": ""
|
|
1643
1702
|
},
|
|
1644
1703
|
model: {
|
|
1645
1704
|
value: _vm.form.password,
|
|
@@ -1947,8 +2006,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1947
2006
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1948
2007
|
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
1949
2008
|
/* harmony export */ });
|
|
1950
|
-
/**
|
|
1951
|
-
* 构建invoke命令
|
|
2009
|
+
/**
|
|
2010
|
+
* 构建invoke命令
|
|
1952
2011
|
*/
|
|
1953
2012
|
function buildInvokeCommand({
|
|
1954
2013
|
serviceName,
|
|
@@ -1987,7 +2046,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1987
2046
|
/* harmony export */ });
|
|
1988
2047
|
class ServiceTreeAction {
|
|
1989
2048
|
constructor(appRenderer) {
|
|
1990
|
-
this.appRenderer = appRenderer;
|
|
1991
2049
|
appRenderer.addPluginMenu({
|
|
1992
2050
|
module: "collectList",
|
|
1993
2051
|
test: (context, collectInfo) => !!collectInfo?.serviceName,
|
|
@@ -2091,9 +2149,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2091
2149
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2092
2150
|
// Module
|
|
2093
2151
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2094
|
-
.consumer-list-table-header .el-table__cell {
|
|
2152
|
+
.consumer-list-table-header .el-table__cell {
|
|
2095
2153
|
background-color: rgb(249, 249, 249) !important;
|
|
2096
|
-
}
|
|
2154
|
+
}
|
|
2097
2155
|
`, ""]);
|
|
2098
2156
|
// Exports
|
|
2099
2157
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2119,20 +2177,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2119
2177
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2120
2178
|
// Module
|
|
2121
2179
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2122
|
-
.broder {
|
|
2180
|
+
.broder {
|
|
2123
2181
|
border: rgb(230, 233, 243) 1px solid;
|
|
2124
2182
|
}
|
|
2125
|
-
.invoke-dubbo-dialog-content-hisotry {
|
|
2126
|
-
overflow-y: auto;
|
|
2183
|
+
.invoke-dubbo-dialog-content-hisotry {
|
|
2184
|
+
overflow-y: auto;
|
|
2127
2185
|
height: 69vh;
|
|
2128
2186
|
}
|
|
2129
|
-
.history-item {
|
|
2187
|
+
.history-item {
|
|
2130
2188
|
background: beige;
|
|
2131
2189
|
}
|
|
2132
|
-
.history-item:hover, .history-item-selected {
|
|
2190
|
+
.history-item:hover, .history-item-selected {
|
|
2133
2191
|
background: #999;
|
|
2134
|
-
}
|
|
2135
|
-
|
|
2192
|
+
}
|
|
2193
|
+
|
|
2136
2194
|
`, ""]);
|
|
2137
2195
|
// Exports
|
|
2138
2196
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2158,73 +2216,73 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2158
2216
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2159
2217
|
// Module
|
|
2160
2218
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2161
|
-
.broder {
|
|
2219
|
+
.broder {
|
|
2162
2220
|
border: rgb(230, 233, 243) 1px solid;
|
|
2163
2221
|
}
|
|
2164
|
-
.invoke-dubbo-dialog {
|
|
2165
|
-
display: flex;
|
|
2166
|
-
flex-direction: column;
|
|
2167
|
-
justify-content: flex-start;
|
|
2222
|
+
.invoke-dubbo-dialog {
|
|
2223
|
+
display: flex;
|
|
2224
|
+
flex-direction: column;
|
|
2225
|
+
justify-content: flex-start;
|
|
2168
2226
|
height: 100%;
|
|
2169
2227
|
}
|
|
2170
|
-
.invoke-dubbo-dialog-content {
|
|
2171
|
-
height: 100%;
|
|
2172
|
-
display: flex;
|
|
2173
|
-
flex-direction: column;
|
|
2174
|
-
justify-content: flex-start;
|
|
2228
|
+
.invoke-dubbo-dialog-content {
|
|
2229
|
+
height: 100%;
|
|
2230
|
+
display: flex;
|
|
2231
|
+
flex-direction: column;
|
|
2232
|
+
justify-content: flex-start;
|
|
2175
2233
|
overflow: auto;
|
|
2176
2234
|
}
|
|
2177
|
-
.el-collapse-item {
|
|
2235
|
+
.el-collapse-item {
|
|
2178
2236
|
white-space: nowrap;
|
|
2179
2237
|
}
|
|
2180
|
-
.providerSelect {
|
|
2181
|
-
margin-right: 10px;
|
|
2238
|
+
.providerSelect {
|
|
2239
|
+
margin-right: 10px;
|
|
2182
2240
|
width: 200px;
|
|
2183
2241
|
}
|
|
2184
|
-
.methodSelect {
|
|
2185
|
-
margin-right: 10px;
|
|
2242
|
+
.methodSelect {
|
|
2243
|
+
margin-right: 10px;
|
|
2186
2244
|
width: 300px;
|
|
2187
2245
|
}
|
|
2188
|
-
.contentCode {
|
|
2246
|
+
.contentCode {
|
|
2189
2247
|
margin-bottom: 10px;
|
|
2190
2248
|
}
|
|
2191
|
-
.item {
|
|
2192
|
-
margin-left: 2px;
|
|
2249
|
+
.item {
|
|
2250
|
+
margin-left: 2px;
|
|
2193
2251
|
padding: 4px;
|
|
2194
2252
|
}
|
|
2195
|
-
.item:hover {
|
|
2196
|
-
background-color: #ccc;
|
|
2253
|
+
.item:hover {
|
|
2254
|
+
background-color: #ccc;
|
|
2197
2255
|
border-radius: 50%;
|
|
2198
2256
|
}
|
|
2199
|
-
.invokerSelect {
|
|
2200
|
-
width: 100px;
|
|
2257
|
+
.invokerSelect {
|
|
2258
|
+
width: 100px;
|
|
2201
2259
|
padding-right: 10px;
|
|
2202
2260
|
}
|
|
2203
|
-
.cancel-button {
|
|
2204
|
-
box-shadow: inset 0px 1px 0px 0px #ffffff;
|
|
2205
|
-
background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
|
|
2206
|
-
background-color: #ffffff;
|
|
2207
|
-
border-radius: 4px;
|
|
2208
|
-
border: 1px solid #dcdcdc;
|
|
2209
|
-
display: inline-block;
|
|
2210
|
-
cursor: pointer;
|
|
2211
|
-
color: #666666;
|
|
2212
|
-
font-family: Arial;
|
|
2213
|
-
font-size: 16px;
|
|
2214
|
-
font-weight: bold;
|
|
2215
|
-
padding: 10px 29px;
|
|
2216
|
-
text-decoration: none;
|
|
2217
|
-
text-shadow: 0px 1px 0px #ffffff;
|
|
2261
|
+
.cancel-button {
|
|
2262
|
+
box-shadow: inset 0px 1px 0px 0px #ffffff;
|
|
2263
|
+
background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
|
|
2264
|
+
background-color: #ffffff;
|
|
2265
|
+
border-radius: 4px;
|
|
2266
|
+
border: 1px solid #dcdcdc;
|
|
2267
|
+
display: inline-block;
|
|
2268
|
+
cursor: pointer;
|
|
2269
|
+
color: #666666;
|
|
2270
|
+
font-family: Arial;
|
|
2271
|
+
font-size: 16px;
|
|
2272
|
+
font-weight: bold;
|
|
2273
|
+
padding: 10px 29px;
|
|
2274
|
+
text-decoration: none;
|
|
2275
|
+
text-shadow: 0px 1px 0px #ffffff;
|
|
2218
2276
|
margin-top: 10px;
|
|
2219
2277
|
}
|
|
2220
|
-
.cancel-button:hover {
|
|
2221
|
-
background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
|
|
2278
|
+
.cancel-button:hover {
|
|
2279
|
+
background: linear-gradient(to bottom, #f6f6f6 5%, #ffffff 100%);
|
|
2222
2280
|
background-color: #f6f6f6;
|
|
2223
2281
|
}
|
|
2224
|
-
.cancel-button:active {
|
|
2225
|
-
position: relative;
|
|
2282
|
+
.cancel-button:active {
|
|
2283
|
+
position: relative;
|
|
2226
2284
|
top: 1px;
|
|
2227
|
-
}
|
|
2285
|
+
}
|
|
2228
2286
|
`, ""]);
|
|
2229
2287
|
// Exports
|
|
2230
2288
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2250,15 +2308,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2250
2308
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2251
2309
|
// Module
|
|
2252
2310
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2253
|
-
.configuration-container {
|
|
2311
|
+
.configuration-container {
|
|
2254
2312
|
height: 100%;
|
|
2255
2313
|
}
|
|
2256
|
-
.configuration-container .vue-codemirror {
|
|
2314
|
+
.configuration-container .vue-codemirror {
|
|
2257
2315
|
height: 80vh;
|
|
2258
2316
|
}
|
|
2259
|
-
.configuration-container .CodeMirror {
|
|
2317
|
+
.configuration-container .CodeMirror {
|
|
2260
2318
|
height: 100% !important;
|
|
2261
|
-
}
|
|
2319
|
+
}
|
|
2262
2320
|
`, ""]);
|
|
2263
2321
|
// Exports
|
|
2264
2322
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2284,16 +2342,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2284
2342
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2285
2343
|
// Module
|
|
2286
2344
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2287
|
-
.versionSpan {
|
|
2288
|
-
color: rgb(114, 197, 76);
|
|
2289
|
-
background-color: rgb(237, 249, 230);
|
|
2290
|
-
padding: 5px 5px;
|
|
2345
|
+
.versionSpan {
|
|
2346
|
+
color: rgb(114, 197, 76);
|
|
2347
|
+
background-color: rgb(237, 249, 230);
|
|
2348
|
+
padding: 5px 5px;
|
|
2291
2349
|
border-radius: 5px;
|
|
2292
2350
|
}
|
|
2293
|
-
.provider-list-table-header .el-table__cell {
|
|
2351
|
+
.provider-list-table-header .el-table__cell {
|
|
2294
2352
|
background-color: rgb(249, 249, 249) !important;
|
|
2295
|
-
}
|
|
2296
|
-
|
|
2353
|
+
}
|
|
2354
|
+
|
|
2297
2355
|
`, ""]);
|
|
2298
2356
|
// Exports
|
|
2299
2357
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2319,10 +2377,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2319
2377
|
var ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));
|
|
2320
2378
|
// Module
|
|
2321
2379
|
___CSS_LOADER_EXPORT___.push([module.id, `
|
|
2322
|
-
.dubbo-list-main-container {
|
|
2323
|
-
height: 100%;
|
|
2380
|
+
.dubbo-list-main-container {
|
|
2381
|
+
height: 100%;
|
|
2324
2382
|
background-color: white;
|
|
2325
|
-
}
|
|
2383
|
+
}
|
|
2326
2384
|
`, ""]);
|
|
2327
2385
|
// Exports
|
|
2328
2386
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);
|
|
@@ -2464,6 +2522,42 @@ module.exports = function (i) {
|
|
|
2464
2522
|
|
|
2465
2523
|
/***/ }),
|
|
2466
2524
|
|
|
2525
|
+
/***/ 473:
|
|
2526
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2527
|
+
|
|
2528
|
+
"use strict";
|
|
2529
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2530
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2531
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
2532
|
+
/* harmony export */ });
|
|
2533
|
+
/* harmony import */ var _hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(474);
|
|
2534
|
+
/* harmony import */ var _hello_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(476);
|
|
2535
|
+
/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(421);
|
|
2536
|
+
|
|
2537
|
+
|
|
2538
|
+
|
|
2539
|
+
|
|
2540
|
+
|
|
2541
|
+
/* normalize component */
|
|
2542
|
+
;
|
|
2543
|
+
var component = (0,_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
|
|
2544
|
+
_hello_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_1__["default"],
|
|
2545
|
+
_hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__.render,
|
|
2546
|
+
_hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__.staticRenderFns,
|
|
2547
|
+
false,
|
|
2548
|
+
null,
|
|
2549
|
+
null,
|
|
2550
|
+
null
|
|
2551
|
+
|
|
2552
|
+
)
|
|
2553
|
+
|
|
2554
|
+
/* hot reload */
|
|
2555
|
+
if (false) { var api; }
|
|
2556
|
+
component.options.__file = "src/renderer/hello.vue"
|
|
2557
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (component.exports);
|
|
2558
|
+
|
|
2559
|
+
/***/ }),
|
|
2560
|
+
|
|
2467
2561
|
/***/ 436:
|
|
2468
2562
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2469
2563
|
|
|
@@ -2838,6 +2932,19 @@ component.options.__file = "src/renderer/views/settings/index.vue"
|
|
|
2838
2932
|
|
|
2839
2933
|
/***/ }),
|
|
2840
2934
|
|
|
2935
|
+
/***/ 476:
|
|
2936
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2937
|
+
|
|
2938
|
+
"use strict";
|
|
2939
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2940
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2941
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
2942
|
+
/* harmony export */ });
|
|
2943
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_hello_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(477);
|
|
2944
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_hello_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__["default"]);
|
|
2945
|
+
|
|
2946
|
+
/***/ }),
|
|
2947
|
+
|
|
2841
2948
|
/***/ 439:
|
|
2842
2949
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2843
2950
|
|
|
@@ -2966,6 +3073,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2966
3073
|
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(451);
|
|
2967
3074
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_index_vue_vue_type_script_lang_js__WEBPACK_IMPORTED_MODULE_0__["default"]);
|
|
2968
3075
|
|
|
3076
|
+
/***/ }),
|
|
3077
|
+
|
|
3078
|
+
/***/ 474:
|
|
3079
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
3080
|
+
|
|
3081
|
+
"use strict";
|
|
3082
|
+
__webpack_require__.r(__webpack_exports__);
|
|
3083
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3084
|
+
/* harmony export */ render: () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_lib_index_js_vue_loader_options_hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__.render),
|
|
3085
|
+
/* harmony export */ staticRenderFns: () => (/* reexport safe */ _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_lib_index_js_vue_loader_options_hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__.staticRenderFns)
|
|
3086
|
+
/* harmony export */ });
|
|
3087
|
+
/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_loaders_templateLoader_js_ruleSet_1_rules_2_node_modules_vue_loader_lib_index_js_vue_loader_options_hello_vue_vue_type_template_id_bc105cc2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(475);
|
|
3088
|
+
|
|
3089
|
+
|
|
2969
3090
|
/***/ }),
|
|
2970
3091
|
|
|
2971
3092
|
/***/ 437:
|
|
@@ -3799,6 +3920,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3799
3920
|
/* harmony import */ var _action_ServiceListAction__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(470);
|
|
3800
3921
|
/* harmony import */ var _action_CollectListAction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(471);
|
|
3801
3922
|
/* harmony import */ var _action_HistoryListAction__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(472);
|
|
3923
|
+
/* harmony import */ var _hello_vue__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(473);
|
|
3924
|
+
|
|
3802
3925
|
|
|
3803
3926
|
|
|
3804
3927
|
|
|
@@ -3808,6 +3931,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3808
3931
|
|
|
3809
3932
|
|
|
3810
3933
|
|
|
3934
|
+
|
|
3935
|
+
/**
|
|
3936
|
+
* @param {import('@/renderer/types').AppRenderer} appRenderer
|
|
3937
|
+
*/
|
|
3811
3938
|
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (appRenderer => {
|
|
3812
3939
|
return {
|
|
3813
3940
|
install() {
|
|
@@ -3824,7 +3951,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3824
3951
|
});
|
|
3825
3952
|
appRenderer.registrySettingComponent("Dubbo Settings", _renderer_views_settings_index_vue__WEBPACK_IMPORTED_MODULE_2__["default"], {});
|
|
3826
3953
|
appRenderer.addMenu('bottom', {
|
|
3827
|
-
label:
|
|
3954
|
+
label: "测试",
|
|
3828
3955
|
icon: "el-icon-toilet-paper",
|
|
3829
3956
|
src: "https://json4u.com/editor"
|
|
3830
3957
|
// click: () => {
|
|
@@ -3834,6 +3961,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
3834
3961
|
new _action_ServiceListAction__WEBPACK_IMPORTED_MODULE_6__["default"](appRenderer);
|
|
3835
3962
|
new _action_CollectListAction__WEBPACK_IMPORTED_MODULE_7__["default"](appRenderer);
|
|
3836
3963
|
new _action_HistoryListAction__WEBPACK_IMPORTED_MODULE_8__["default"](appRenderer);
|
|
3964
|
+
appRenderer.openDialog({
|
|
3965
|
+
title: "密密麻麻的百度",
|
|
3966
|
+
component: _hello_vue__WEBPACK_IMPORTED_MODULE_9__["default"],
|
|
3967
|
+
params: {
|
|
3968
|
+
name: "王老八"
|
|
3969
|
+
}
|
|
3970
|
+
});
|
|
3837
3971
|
},
|
|
3838
3972
|
uninstall() {}
|
|
3839
3973
|
};
|
package/package.json
CHANGED
|
@@ -1,51 +1,144 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ddm-plugin-dubbo-support",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Dubbo-Desktop-Manager插件-支持Dubbo框架",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"rendererMain": "dist/renderer.js",
|
|
7
|
-
"i18nMain": "dist/i18n.js",
|
|
8
|
-
"files": [
|
|
9
|
-
"README.md",
|
|
10
|
-
"logo.png",
|
|
11
|
-
"public/**",
|
|
12
|
-
"dist/**",
|
|
13
|
-
"docs/**",
|
|
14
|
-
"java-invoke/**"
|
|
15
|
-
],
|
|
16
|
-
"scripts": {
|
|
17
|
-
"dev": "webpack",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "ddm-plugin-dubbo-support",
|
|
3
|
+
"version": "0.0.6",
|
|
4
|
+
"description": "Dubbo-Desktop-Manager插件-支持Dubbo框架",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"rendererMain": "dist/renderer.js",
|
|
7
|
+
"i18nMain": "dist/i18n.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"README.md",
|
|
10
|
+
"logo.png",
|
|
11
|
+
"public/**",
|
|
12
|
+
"dist/**",
|
|
13
|
+
"docs/**",
|
|
14
|
+
"java-invoke/**"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "webpack",
|
|
18
|
+
"gen:keywords": "node ./scripts/gen-keywords.js",
|
|
19
|
+
"prepublishOnly": "npm run gen:keywords",
|
|
20
|
+
"publish": "webpack && npm publish"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"Dubbo-Desktop-Manager",
|
|
24
|
+
"ddm-plugin",
|
|
25
|
+
"ddm",
|
|
26
|
+
"dubbo",
|
|
27
|
+
"dubbo service invoke",
|
|
28
|
+
"dubbo manager",
|
|
29
|
+
"dubbo console",
|
|
30
|
+
"dubbo admin",
|
|
31
|
+
"-",
|
|
32
|
+
"-s",
|
|
33
|
+
"-su",
|
|
34
|
+
"-sup",
|
|
35
|
+
"-supp",
|
|
36
|
+
"-suppo",
|
|
37
|
+
"-suppor",
|
|
38
|
+
"-support",
|
|
39
|
+
"b",
|
|
40
|
+
"bb",
|
|
41
|
+
"bbo",
|
|
42
|
+
"bbo-",
|
|
43
|
+
"bbo-s",
|
|
44
|
+
"bbo-su",
|
|
45
|
+
"bbo-sup",
|
|
46
|
+
"bbo-supp",
|
|
47
|
+
"bbo-suppo",
|
|
48
|
+
"bbo-suppor",
|
|
49
|
+
"bbo-support",
|
|
50
|
+
"bo",
|
|
51
|
+
"bo-",
|
|
52
|
+
"bo-s",
|
|
53
|
+
"bo-su",
|
|
54
|
+
"bo-sup",
|
|
55
|
+
"bo-supp",
|
|
56
|
+
"bo-suppo",
|
|
57
|
+
"bo-suppor",
|
|
58
|
+
"bo-support",
|
|
59
|
+
"d",
|
|
60
|
+
"du",
|
|
61
|
+
"dub",
|
|
62
|
+
"dubb",
|
|
63
|
+
"dubbo-",
|
|
64
|
+
"dubbo-s",
|
|
65
|
+
"dubbo-su",
|
|
66
|
+
"dubbo-sup",
|
|
67
|
+
"dubbo-supp",
|
|
68
|
+
"dubbo-suppo",
|
|
69
|
+
"dubbo-suppor",
|
|
70
|
+
"dubbo-support",
|
|
71
|
+
"o",
|
|
72
|
+
"o-",
|
|
73
|
+
"o-s",
|
|
74
|
+
"o-su",
|
|
75
|
+
"o-sup",
|
|
76
|
+
"o-supp",
|
|
77
|
+
"o-suppo",
|
|
78
|
+
"o-suppor",
|
|
79
|
+
"o-support",
|
|
80
|
+
"or",
|
|
81
|
+
"ort",
|
|
82
|
+
"p",
|
|
83
|
+
"po",
|
|
84
|
+
"por",
|
|
85
|
+
"port",
|
|
86
|
+
"pp",
|
|
87
|
+
"ppo",
|
|
88
|
+
"ppor",
|
|
89
|
+
"pport",
|
|
90
|
+
"r",
|
|
91
|
+
"rt",
|
|
92
|
+
"s",
|
|
93
|
+
"su",
|
|
94
|
+
"sup",
|
|
95
|
+
"supp",
|
|
96
|
+
"suppo",
|
|
97
|
+
"suppor",
|
|
98
|
+
"support",
|
|
99
|
+
"t",
|
|
100
|
+
"u",
|
|
101
|
+
"ub",
|
|
102
|
+
"ubb",
|
|
103
|
+
"ubbo",
|
|
104
|
+
"ubbo-",
|
|
105
|
+
"ubbo-s",
|
|
106
|
+
"ubbo-su",
|
|
107
|
+
"ubbo-sup",
|
|
108
|
+
"ubbo-supp",
|
|
109
|
+
"ubbo-suppo",
|
|
110
|
+
"ubbo-suppor",
|
|
111
|
+
"ubbo-support",
|
|
112
|
+
"up",
|
|
113
|
+
"upp",
|
|
114
|
+
"uppo",
|
|
115
|
+
"uppor",
|
|
116
|
+
"upport"
|
|
117
|
+
],
|
|
118
|
+
"homepage": "https://github.com/ddm-plugin/ddm-plugin-dubbo-support",
|
|
119
|
+
"author": "qiaolin",
|
|
120
|
+
"license": "Apache 2.0",
|
|
121
|
+
"devDependencies": {
|
|
122
|
+
"@babel/core": "^7.24.7",
|
|
123
|
+
"babel-cli": "^6.26.0",
|
|
124
|
+
"babel-loader": "^8.2.5",
|
|
125
|
+
"css-loader": "^6.11.0",
|
|
126
|
+
"js-yaml": "^4.1.0",
|
|
127
|
+
"json-bigint": "^1.0.0",
|
|
128
|
+
"moment": "^2.29.1",
|
|
129
|
+
"node-zookeeper-client": "^1.1.1",
|
|
130
|
+
"qs": "^6.11.0",
|
|
131
|
+
"style-loader": "^3.3.4",
|
|
132
|
+
"telnet-stream": "^1.0.5",
|
|
133
|
+
"urijs": "^1.19.11",
|
|
134
|
+
"vue": "^2.6.11",
|
|
135
|
+
"vue-loader": "15.11.1",
|
|
136
|
+
"vue-style-loader": "^4.1.3",
|
|
137
|
+
"vue-template-compiler": "^2.6.11",
|
|
138
|
+
"webpack": "^5.92.1",
|
|
139
|
+
"webpack-cli": "^5.1.4"
|
|
140
|
+
},
|
|
141
|
+
"engines": {
|
|
142
|
+
"ddm": ">=1.1.0 <3.0.0"
|
|
143
|
+
}
|
|
144
|
+
}
|