stable

Clone or download

Read-only

Convert Cross tracker TQL editor in TS

part of request #18830 Convert cross tracker search in typescript Please note, this change will impact both crosstracker and tracker, both app must be built to test the patch. No functional changes: - cross tracker report can still have tql queries - expert query in tracker report can still have tql queries Change-Id: I06e919fc9bac567759e485a4c38ed52f8e661378

Modified Files

Name
M plugins/crosstracker/package-lock.json +24 −0 Go to diff View file
M plugins/crosstracker/package.json +1 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/reading-mode/ReadingMode.vue +5 −1 Go to diff View file
D plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.test.js +0 −74 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.test.ts +73 −0 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/QueryEditor.vue +78 −63 Go to diff View file
A plugins/crosstracker/scripts/cross-tracker/src/writing-mode/__snapshots__/QueryEditor.test.ts.snap +215 −0 Go to diff View file
R plugins/crosstracker/scripts/cross-tracker/src/writing-mode/tql-configuration.js Go to diff View file
M plugins/crosstracker/tests/e2e/cypress/cypress.json +1 −2 Go to diff View file
M plugins/crosstracker/tests/e2e/cypress/cypress/integration/cross_tracker_search.spec.ts +15 −3 Go to diff View file
M plugins/tracker/package-lock.json +24 −0 Go to diff View file
M plugins/tracker/package.json +1 −0 Go to diff View file
A plugins/tracker/scripts/report/TQL-CodeMirror/allowed-field-inserter.d.ts +25 −0 Go to diff View file
A plugins/tracker/scripts/report/TQL-CodeMirror/builder.d.ts +28 −0 Go to diff View file
M plugins/tracker/scripts/report/TQL-CodeMirror/builder.js +1 −1 Go to diff View file
A plugins/tracker/scripts/report/TQL-CodeMirror/configuration.d.ts +33 −0 Go to diff View file
M plugins/tracker/scripts/report/expert-mode.js +1 −5 Go to diff View file