Skip to content

Commit

Permalink
feat: implement query page (#2193)
Browse files Browse the repository at this point in the history
* feat: implement query page

* docs: add in-app docs on query composition

* chore: version bump

* chore: remove react-data-grid
  • Loading branch information
Ziinc authored Sep 3, 2024
1 parent 2e9b2c6 commit d3ece45
Show file tree
Hide file tree
Showing 11 changed files with 338 additions and 33 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.5
1.8.6
2 changes: 2 additions & 0 deletions assets/css/app.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* This file is for your main application css. */
@import "~bootstrap/scss/bootstrap";
@import "../../deps/live_monaco_editor/priv/static/live_monaco_editor.min.css";

@import "named_variables";
@import "dashboard";
@import "header";
Expand Down
5 changes: 5 additions & 0 deletions assets/js/app.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import "../css/app.scss";
import { Socket } from "phoenix";
import "../css/tailwind.css";

import "bootstrap";
import ClipboardJS from "clipboard";
import * as Dashboard from "./dashboard";
Expand All @@ -19,6 +20,8 @@ import sourceLiveViewHooks from "./source_lv_hooks";
import logsLiveViewHooks from "./log_event_live_hooks";
import $ from "jquery";
import moment from "moment";
import { CodeEditorHook } from "../../deps/live_monaco_editor/priv/static/live_monaco_editor.esm"


// set moment globally before daterangepicker
window.moment = moment;
Expand Down Expand Up @@ -50,6 +53,8 @@ const hooks = {
...logsLiveViewHooks,
...LiveModalHooks,
...BillingHooks,
CodeEditorHook

};

let liveSocket = new LiveSocket("/live", Socket, {
Expand Down
59 changes: 30 additions & 29 deletions assets/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
"glob": "^10.3.1",
"postcss": "^8.4.31",
"sass": "^1.58.3",
"tailwindcss": "^3.3.2"
"tailwindcss": "^3.4.10"
}
}
Loading

0 comments on commit d3ece45

Please sign in to comment.