diff --git a/src/components/doclive/AdhocView.vue b/src/components/doclive/AdhocView.vue index b065ca4..30ba046 100644 --- a/src/components/doclive/AdhocView.vue +++ b/src/components/doclive/AdhocView.vue @@ -468,6 +468,7 @@ export default { }; }, methods: { + // καλείται στο διάγραμμα για την εμφάνιση των αποτελεσμάτων async callback(params) { var res = await axios.get("http://localhost:3000/length"); //new code @@ -490,12 +491,14 @@ export default { } //new code end }, + socketconnect() { //asd // send to runLLO console.log("socketcoonect adhoc"); this.$root.$emit("SERVER_socket_connect"); }, + // εμφάνιση του διαγράμματος / απόκρυψη showChart() { if (this.chartstatus == false) { this.chartstatus = true; @@ -505,6 +508,7 @@ export default { this.chartbut = "Show HighChart"; } }, + // ενημέρωση για ποιες υπηρεσίες είναι ενεργές στο δίκτυο async getServices() { this.items.splice(0, this.items.length); await axios.get("http://localhost:3000/services").then((res) => { @@ -519,6 +523,7 @@ export default { // }); }); }, + // εμφάνιση του πίνακα ευρετηρίασης και rerender σε περίπτωση που αναζητήσει ξανά κάτι ο χρήστης showHistory() { this.items = []; this.getServices(); @@ -530,11 +535,12 @@ export default { this.$refs.vuetable.refresh(); } }, + // διαχείριση pagination onPaginationData(paginationData) { this.$refs.pagination.setPaginationData(paginationData); this.$refs.paginationInfo.setPaginationData(paginationData); }, - //asd + // διαχείριση επιτυχίας στην ευρατηρίαση loadsuccess(response) { var data = response.data.data; this.fielddata = data; @@ -542,9 +548,11 @@ export default { var n = data.length; n = n - 1; }, + // αλλαγή σελίδας στον πίνακα onChangePage(page) { this.$refs.vuetable.changePage(page); }, + // διαχείριση σφάλματος στην ευερετηρίαση onLoadError(payload) { /* //error2 "invalid_token" join-service.vue:684 @@ -563,6 +571,7 @@ export default { ); } }, + // δεν κάνει τίποτα clear() { this.tryConsole = false; this.code = ""; @@ -573,125 +582,6 @@ export default { code: field, }); }, - - async showactive(index) { - this.topwindow(index); - }, - onCmReady(cm) { - cm.on("change", (cm, chg) => {}), - cm.on("keypress", () => { - cm.showHint({ completeSingle: false }); - }); - }, - onCmCursorActivity(a, b, c) {}, - onCmFocus(cm) {}, - onCmCodeChange(newCode) { - this.code = newCode; - //this.$root.$emit('socket_add',this.code) - }, - handleChange() {}, - setKeymap() { - this.cmOptions.keyMap = this.selected; - }, - infoFilter() { - var title1 = "

Playbook Images

"; - var winfop = - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - '' + - "
Shift-Tab indentLess
Alt-Q wrapLines
Ctrl-Up scrollLineUp
Ctrl-Down scrollLineDown
Ctrl-L selectLine
Esc singleSelectionTop
Ctrl-Enter insertLineAfter
Ctrl-D selectNextOccurrence
Shift-Ctrl-Space selectScope
Shift-Ctrl-M selectBetweenBrackets
Ctrl-M goToBracket
Ctrl-K Ctrl-Y sublimeYank
Ctrl-K Ctrl-C showInCenter
Ctrl-K Ctrl-G clearBookmarks
Ctrl-K Ctrl-Backspace delLineLeft
Ctrl-K Ctrl-0 unfoldAll
Ctrl-K Ctrl-J unfoldAll
Ctrl-Alt-Up addCursorToPrevLine
Ctrl-Alt-Down addCursorToNextLine
Ctrl-F3 findUnder
Shift-Ctrl-F3 findUnderPrevious
Shift-Ctrl-[ fold
Shift-Ctrl-] unfold
Ctrl-F find
"; - - var title1 = ""; - var winfo = ""; - this.$swal({ - title: "Key bindings", - type: "info", - html: winfop + title1 + winfo, - showCloseButton: true, - showLoaderOnConfirm: false, - allowOutsideClick: false, - }); - }, - async hotreload() { - var field = this.getinfo; - var log = await store.dispatch("pipelineLLO/hotreload", { - token: this.token, - swarmlabname: this.swarmlabname, - }); - }, - infoHotreload() { - var html1 = `
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Downloadhttps://git.swarmlab.io:3000/labs/swarmlab-playground-client/raw/branch/master/hot_reload.sh
and add the proper values
token${this.token}
swarmlabname${this.swarmlabname}
OR set the variables before exec
export SWARMLAB_token=${this.token}
export SWARMLAB_name=${this.swarmlabname}
Ready! -
Execute script every time you run git push
`; - - this.$swal({ - title: "HowTo", - type: "info", - html: html1, - showCloseButton: true, - showLoaderOnConfirm: false, - allowOutsideClick: false, - }); - }, }, computed: { codemirror() {