1. 17 7月, 2020 1 次提交
  2. 12 6月, 2020 1 次提交
  3. 09 6月, 2020 1 次提交
    • M
      refactor(console): migrate code editor to React + overhaul query result experience (#376) · 68d62dd5
      Méril 提交于
      * refactor(console): migrate code editor to React + overhaul query result experience
      
      Bug fixing:
      
      - Scroll bar on Schema view
      - Animation leaving stale tables for the Schema view
      - Fix error handling on failing requests (and cancelled)
      
      Improvements:
      
      - Use toast notifications to give feedback to the user on query responses
      - Improve wording of error messages + handle more scenarios
      - Create the foundation of @questdb/client + support DDL, DQL and ERROR types
      - Add splitter between Schema and Editor
      - Move loader bar to the top of the page
      - Improve transitions
      - Uniform the use of z-index
      - Add ellipsis mode to Text component
      - Improve support of QuestDB SQL in Ace
      
      Chores:
      
      - Remove dead code
      - Upgrade deps
      
      * feat(Splitter): add max boundary
      68d62dd5
  4. 02 6月, 2020 1 次提交
    • M
      feat(console): add Saved Queries and support for new config file (#352) · 6e65c3a9
      Méril 提交于
      > This is a preview of the new Saved Queries component.
      > 
      > In order to test it, edit the file in:
      > 
      > ```
      > <root_dir>/public/assets/console-configuration.json
      > ```
      > 
      > Like the following:
      > 
      > ```json
      > {
      >   "readOnly": false,
      >   "savedQueries": [
      >     {
      >       "name": "Select data",
      >       "value": "SELECT * FROM trips;"
      >     },
      >     {
      >       "name": "Aggregations",
      >       "value": "SELECT count() FROM trips;"
      >     },
      >     {
      >       "name": "Keyed aggregations",
      >       "value":  "SELECT hour(trip_datetime), count() FROM trips;"
      >     },
      >     {
      >       "name": "Keyed aggregations by time with SAMPLE BY",
      >       "value":  "SELECT hour(trip_datetime), count() FROM trips SAMPLE BY 1M;"
      >     },
      >     {
      >       "name": "Assemble tables based on time with ASOF JOIN",
      >       "value":  "trips ASOF JOIN weather;"
      >     }
      >   ]
      > }
      > ```
      6e65c3a9
  5. 29 5月, 2020 1 次提交
  6. 24 5月, 2020 1 次提交
  7. 24 4月, 2020 2 次提交
  8. 23 4月, 2020 1 次提交
    • M
      feat(ui): switch from gulp/bower to webpack/npm (#209) · 57c13d6d
      Méril 提交于
      Bower is deprecated and it is recommended to migrate to newer alternatives.
      
      Gulp works well for small and straightforward projects but it becomes quickly
      hard to maintain on a larger codebase. Also, Webpack modern features such as
      tree shaking are very useful and allow us to save 1MB on CSS for example.
      
      Overall, this makes the maintenance of the Console much easier. Everything is in
      one place (`package.json`) with maximum flexibility:
      
      - The current code just stays the way it is but already benefit from the new
      framework (`import`, optional typescript/es7, etc.) - Any new code can be
      written in TypeScript (with Babel) following latest standards with extensive
      linting rules.
      
      The README.md was updated too, I believe that the transition should be smooth +
      the development experience was improved as a result of using webpack-dev-server.
      57c13d6d
  9. 03 2月, 2020 1 次提交
  10. 10 1月, 2020 1 次提交
  11. 18 11月, 2019 1 次提交
  12. 11 2月, 2017 1 次提交
  13. 14 1月, 2017 1 次提交
  14. 11 6月, 2016 1 次提交
  15. 24 5月, 2016 1 次提交
  16. 23 5月, 2016 1 次提交
  17. 11 5月, 2016 1 次提交
  18. 10 5月, 2016 1 次提交
  19. 16 4月, 2016 2 次提交
  20. 11 4月, 2016 1 次提交
  21. 10 4月, 2016 1 次提交
  22. 03 4月, 2016 1 次提交
  23. 28 3月, 2016 1 次提交
  24. 26 3月, 2016 1 次提交
  25. 18 2月, 2016 1 次提交
  26. 01 2月, 2016 2 次提交
  27. 26 1月, 2016 1 次提交
  28. 21 12月, 2015 1 次提交
  29. 08 12月, 2015 1 次提交
  30. 04 12月, 2015 1 次提交
  31. 30 11月, 2015 1 次提交
  32. 18 8月, 2015 1 次提交
  33. 11 8月, 2015 1 次提交
  34. 07 8月, 2015 1 次提交
  35. 10 6月, 2015 1 次提交
  36. 21 5月, 2015 1 次提交
  37. 13 5月, 2015 1 次提交