mirror of
https://github.com/lana-k/sqliteviz.git
synced 2025-12-06 18:18:53 +08:00
Compare commits
6 Commits
0.15.2
...
csv-chunks
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
df4595f610 | ||
|
|
5b3f34cb63 | ||
|
|
379ee1a67b | ||
|
|
a26fdedc02 | ||
|
|
70450408dc | ||
|
|
dd3bd3da1d |
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@@ -15,10 +15,6 @@ jobs:
|
|||||||
uses: actions/setup-node@v1
|
uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: 10.x
|
node-version: 10.x
|
||||||
|
|
||||||
- name: Update npm
|
|
||||||
run: npm install -g npm@7
|
|
||||||
|
|
||||||
- name: npm install and build
|
- name: npm install and build
|
||||||
run: |
|
run: |
|
||||||
npm install
|
npm install
|
||||||
@@ -27,7 +23,7 @@ jobs:
|
|||||||
- name: Create archive
|
- name: Create archive
|
||||||
run: |
|
run: |
|
||||||
cd dist
|
cd dist
|
||||||
zip -9 -r dist.zip . -x "js/*.map" -x "/*.map"
|
zip -9 -r dist.zip . -x "js/*.map"
|
||||||
|
|
||||||
- name: Create Release Notes
|
- name: Create Release Notes
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
8
.github/workflows/test.yml
vendored
8
.github/workflows/test.yml
vendored
@@ -4,9 +4,6 @@ on:
|
|||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- 'master'
|
- 'master'
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- 'master'
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
@@ -24,14 +21,11 @@ jobs:
|
|||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y chromium-browser firefox
|
sudo apt-get install -y chromium-browser firefox
|
||||||
|
|
||||||
- name: Update npm
|
|
||||||
run: npm install -g npm@7
|
|
||||||
|
|
||||||
- name: Install the project
|
- name: Install the project
|
||||||
run: npm install
|
run: npm install
|
||||||
|
|
||||||
- name: Run lint
|
- name: Run lint
|
||||||
run: npm run lint -- --no-fix
|
run: npm run lint
|
||||||
|
|
||||||
- name: Run karma tests
|
- name: Run karma tests
|
||||||
run: npm run test
|
run: npm run test
|
||||||
|
|||||||
11
README.md
11
README.md
@@ -7,14 +7,14 @@
|
|||||||
Sqliteviz is a single-page offline-first PWA for fully client-side visualisation of SQLite databases or CSV files.
|
Sqliteviz is a single-page offline-first PWA for fully client-side visualisation of SQLite databases or CSV files.
|
||||||
|
|
||||||
With sqliteviz you can:
|
With sqliteviz you can:
|
||||||
- run SQL queries against a SQLite database and create [Plotly][11] charts and pivot tables based on the result sets
|
- run SQL queries against a SQLite database and create [Plotly][11] charts based on the result sets
|
||||||
- import a CSV file into a SQLite database and visualize imported data
|
- import a CSV file into a SQLite database and visualize imported data
|
||||||
- manage inquiries and run them against different databases
|
- manage queries and chart settings and run them against different databases
|
||||||
- import/export inquiries to/from a JSON file
|
- import/export queries and chart settings to/from a JSON file
|
||||||
- export a modified SQLite database
|
- export a modified SQLite database
|
||||||
- use it offline from your OS application menu like any other desktop app
|
- use it offline from your OS application menu like any other desktop app
|
||||||
|
|
||||||
https://user-images.githubusercontent.com/24638357/128249848-f8fab0f5-9add-46e0-a9c1-dd5085a8623e.mp4
|
https://user-images.githubusercontent.com/24638357/117355518-fa332680-aeb2-11eb-8a69-fbcea4f7aeb0.mp4
|
||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
The latest release of sqliteviz is deployed on GitHub Pages at [lana-k.github.io/sqliteviz][6].
|
The latest release of sqliteviz is deployed on GitHub Pages at [lana-k.github.io/sqliteviz][6].
|
||||||
@@ -26,7 +26,7 @@ For user documentation, check out sqliteviz [Wiki][7].
|
|||||||
It's a kind of middleground between [Plotly Falcon][1] and [Redash][2].
|
It's a kind of middleground between [Plotly Falcon][1] and [Redash][2].
|
||||||
|
|
||||||
## Components
|
## Components
|
||||||
It is built on top of [react-chart-editor][3], [PivotTable.js][12], [sql.js][4] and [Vue-Codemirror][8] in [Vue.js][5]. CSV parsing is performed with [Papa Parse][9].
|
It is built on top of [react-chart-editor][3], [sql.js][4] and [Vue-Codemirror][8] in [Vue.js][5]. CSV parsing is performed with [Papa Parse][9].
|
||||||
|
|
||||||
[1]: https://github.com/plotly/falcon
|
[1]: https://github.com/plotly/falcon
|
||||||
[2]: https://github.com/getredash/redash
|
[2]: https://github.com/getredash/redash
|
||||||
@@ -39,4 +39,3 @@ It is built on top of [react-chart-editor][3], [PivotTable.js][12], [sql.js][4]
|
|||||||
[9]: https://www.papaparse.com/
|
[9]: https://www.papaparse.com/
|
||||||
[10]: https://github.com/lana-k/sqliteviz/wiki/Predefined-queries
|
[10]: https://github.com/lana-k/sqliteviz/wiki/Predefined-queries
|
||||||
[11]: https://github.com/plotly/plotly.js
|
[11]: https://github.com/plotly/plotly.js
|
||||||
[12]: https://github.com/nicolaskruchten/pivottable
|
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
benchmark
|
|
||||||
dist
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
FROM emscripten/emsdk:2.0.24
|
|
||||||
|
|
||||||
WORKDIR /tmp/build
|
|
||||||
|
|
||||||
COPY configure.py .
|
|
||||||
RUN python3.8 configure.py
|
|
||||||
|
|
||||||
COPY build.py .
|
|
||||||
RUN python3.8 build.py
|
|
||||||
@@ -1,73 +0,0 @@
|
|||||||
# SQLite WebAssembly build
|
|
||||||
|
|
||||||
This directory contains Docker-based build script, `make.sh`, that builds
|
|
||||||
a custom version of [sql.js][1]. It allows sqliteviz to have more recent
|
|
||||||
version of SQLite build with a number of useful extensions.
|
|
||||||
|
|
||||||
`Makefile` from [sql.js][1] is rewritten as more comprehensible `configure.py`
|
|
||||||
and `build.py` Python scripts that run in `emscripten/emsdk` Docker container.
|
|
||||||
|
|
||||||
## Extension
|
|
||||||
|
|
||||||
SQLite [amalgamation][2] extensions included:
|
|
||||||
|
|
||||||
1. [FTS5][4] -- virtual table module that provides full-text search
|
|
||||||
functionality
|
|
||||||
|
|
||||||
SQLite [miscellaneous extensions][3] included:
|
|
||||||
|
|
||||||
1. `generate_series` table-valued [series function][6] ([series.c][7])
|
|
||||||
2. `transitive_closure` virtual table for
|
|
||||||
[Querying Tree Structures in SQLite][11] ([closure.c][8])
|
|
||||||
3. `uuid`, `uuid_str` and `uuid_blob` RFC-4122 UUID functions ([uuid.c][9])
|
|
||||||
4. `regexp` (hence `REGEXP` operator) and `regexpi` functions ([regexp.c][10])
|
|
||||||
|
|
||||||
SQLite 3rd party extensions included:
|
|
||||||
|
|
||||||
1. [pivot_vtab][5] -- a pivot virtual table
|
|
||||||
|
|
||||||
To ease the step to have working clone locally, the build is committed into
|
|
||||||
the repository.
|
|
||||||
|
|
||||||
## Build method
|
|
||||||
|
|
||||||
Basically it's extended amalgamation and `SQLITE_EXTRA_INIT` concisely
|
|
||||||
described in [this message from SQLite Forum][12]:
|
|
||||||
|
|
||||||
> Simply append it to the end of the amalgamation file. The real problem is
|
|
||||||
> how you get the init function called. The easiest way (to me at any rate) is
|
|
||||||
> to append a function (after the extensions you want to add are all appended)
|
|
||||||
> that adds the init function for each extension to the auto extension list
|
|
||||||
> for new connections, and set the pre-processor symbol SQLITE_EXTRA_INIT to
|
|
||||||
> the name of this function. [...]
|
|
||||||
>
|
|
||||||
> An example `SQLITE_EXTRA_INIT` function looks like this:
|
|
||||||
>
|
|
||||||
> ```
|
|
||||||
> int core_init(const char* dummy)
|
|
||||||
> {
|
|
||||||
> int nErr = 0;
|
|
||||||
>
|
|
||||||
> nErr += sqlite3_auto_extension((void*)sqlite3_autobusy_init);
|
|
||||||
> nErr += sqlite3_auto_extension((void*)sqlite3_ipaddress_init);
|
|
||||||
>
|
|
||||||
> return nErr ? SQLITE_ERROR : SQLITE_OK;
|
|
||||||
> }
|
|
||||||
> ```
|
|
||||||
>
|
|
||||||
> so you would then define `SQLITE_EXTRA_INIT=core_init` when compiling the
|
|
||||||
> amalgamation code and the extensions would thereafter be automatically
|
|
||||||
> initialized on each connection.
|
|
||||||
|
|
||||||
[1]: https://github.com/sql-js/sql.js
|
|
||||||
[2]: https://sqlite.org/amalgamation.html
|
|
||||||
[3]: https://sqlite.org/src/dir?ci=trunk&name=ext/misc
|
|
||||||
[4]: https://sqlite.org/fts5.html
|
|
||||||
[5]: https://github.com/jakethaw/pivot_vtab
|
|
||||||
[6]: https://sqlite.org/series.html
|
|
||||||
[7]: https://sqlite.org/src/file/ext/misc/series.c
|
|
||||||
[8]: https://sqlite.org/src/file/ext/misc/closure.c
|
|
||||||
[9]: https://sqlite.org/src/file/ext/misc/uuid.c
|
|
||||||
[10]: https://sqlite.org/src/file/ext/misc/regexp.c
|
|
||||||
[11]: https://charlesleifer.com/blog/querying-tree-structures-in-sqlite-using-python-and-the-transitive-closure-extension/
|
|
||||||
[12]: https://sqlite.org/forum/forumpost/6ad7d4f4bebe5e06?raw
|
|
||||||
4
lib/sql-js/benchmark/.gitignore
vendored
4
lib/sql-js/benchmark/.gitignore
vendored
@@ -1,4 +0,0 @@
|
|||||||
/lib/build-*
|
|
||||||
/lib/dist
|
|
||||||
/build-*-result.json
|
|
||||||
/sample.csv
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
FROM node:12-buster
|
|
||||||
|
|
||||||
RUN set -ex; \
|
|
||||||
echo 'deb http://deb.debian.org/debian unstable main' \
|
|
||||||
> /etc/apt/sources.list.d/unstable.list; \
|
|
||||||
apt-get update; \
|
|
||||||
apt-get install -y -t unstable firefox; \
|
|
||||||
apt-get install -y chromium
|
|
||||||
|
|
||||||
WORKDIR /tmp/build
|
|
||||||
|
|
||||||
COPY package.json ./
|
|
||||||
COPY lib/dist lib/dist
|
|
||||||
COPY lib/package.json lib/package.json
|
|
||||||
RUN npm install
|
|
||||||
|
|
||||||
COPY . .
|
|
||||||
|
|
||||||
CMD npm run benchmark
|
|
||||||
@@ -1,14 +0,0 @@
|
|||||||
# SQLite WebAssembly build micro-benchmark
|
|
||||||
|
|
||||||
This directory contains a micro-benchmark for evaluating SQLite
|
|
||||||
WebAssembly builds performance on typical SQL queries, run from
|
|
||||||
`make.sh` script. It can also serve as a smoke test.
|
|
||||||
|
|
||||||
The benchmark operates on a set of SQLite WebAssembly builds expected
|
|
||||||
in `lib/build-$NAME` directories each containing `sql-wasm.js` and
|
|
||||||
`sql-wasm.wasm`. Then it creates a Docker image for each, and runs
|
|
||||||
the benchmark in Firefox and Chromium using Karma in the container.
|
|
||||||
|
|
||||||
After successful run, the benchmark result of each build is contained
|
|
||||||
in `build-$NAME-result.json`. The JSON result files can be analysed
|
|
||||||
using `result-analysis.ipynb` Jupyter notebook.
|
|
||||||
@@ -1,52 +0,0 @@
|
|||||||
module.exports = function (config) {
|
|
||||||
const timeout = 15 * 60 * 1000
|
|
||||||
config.set({
|
|
||||||
|
|
||||||
frameworks: ['mocha'],
|
|
||||||
|
|
||||||
files: [
|
|
||||||
'suite.js',
|
|
||||||
{ pattern: 'node_modules/sql.js/dist/sql-wasm.wasm', served: true, included: false },
|
|
||||||
{ pattern: 'sample.csv', served: true, included: false }
|
|
||||||
],
|
|
||||||
|
|
||||||
reporters: ['progress', 'json-to-file'],
|
|
||||||
|
|
||||||
singleRun: true,
|
|
||||||
|
|
||||||
customLaunchers: {
|
|
||||||
ChromiumHeadlessNoSandbox: { base: 'ChromiumHeadless', flags: ['--no-sandbox'] }
|
|
||||||
},
|
|
||||||
browsers: ['ChromiumHeadlessNoSandbox', 'FirefoxHeadless'],
|
|
||||||
concurrency: 1,
|
|
||||||
|
|
||||||
browserDisconnectTimeout: timeout,
|
|
||||||
browserNoActivityTimeout: timeout,
|
|
||||||
captureTimeout: timeout,
|
|
||||||
browserSocketTimeout: timeout,
|
|
||||||
pingTimeout: timeout,
|
|
||||||
client: {
|
|
||||||
captureConsole: true,
|
|
||||||
mocha: { timeout: timeout }
|
|
||||||
},
|
|
||||||
|
|
||||||
logLevel: config.LOG_INFO,
|
|
||||||
browserConsoleLogOptions: { terminal: true, level: config.LOG_INFO },
|
|
||||||
|
|
||||||
preprocessors: { 'suite.js': [ 'webpack' ] },
|
|
||||||
webpack: {
|
|
||||||
mode: 'development',
|
|
||||||
module: {
|
|
||||||
noParse: [ __dirname + '/node_modules/benchmark/benchmark.js' ]
|
|
||||||
},
|
|
||||||
node: { fs: 'empty' }
|
|
||||||
},
|
|
||||||
|
|
||||||
proxies: {
|
|
||||||
'/sql-wasm.wasm': '/base/node_modules/sql.js/dist/sql-wasm.wasm'
|
|
||||||
},
|
|
||||||
|
|
||||||
jsonToFileReporter: { outputPath: '.', fileName: 'suite-result.json' }
|
|
||||||
|
|
||||||
})
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "sql.js",
|
|
||||||
"main": "./dist/sql-wasm.js",
|
|
||||||
"private": true
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
#!/bin/bash -e
|
|
||||||
|
|
||||||
if [ ! -f sample.csv ]; then
|
|
||||||
wget --header="accept-encoding: gzip" -q -O- \
|
|
||||||
https://github.com/plotly/datasets/raw/547090bd/wellspublic.csv \
|
|
||||||
| gunzip -c > sample.csv
|
|
||||||
fi
|
|
||||||
|
|
||||||
for d in lib/build-* ; do
|
|
||||||
rm -r lib/dist || true
|
|
||||||
cp -r $d lib/dist
|
|
||||||
|
|
||||||
name=$(basename $d)
|
|
||||||
docker build -t sqliteviz/sqljs-benchmark:$name .
|
|
||||||
docker rm sqljs-benchmark-$name 2> /dev/null || true
|
|
||||||
docker run -it --name sqljs-benchmark-$name sqliteviz/sqljs-benchmark:$name
|
|
||||||
docker cp sqljs-benchmark-$name:/tmp/build/suite-result.json ${name}-result.json
|
|
||||||
docker rm sqljs-benchmark-$name
|
|
||||||
done
|
|
||||||
|
|
||||||
rm -r lib/dist
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "sqlite-webassembly-microbenchmark",
|
|
||||||
"private": true,
|
|
||||||
"dependencies": {
|
|
||||||
"@babel/core" : "^7.14.8",
|
|
||||||
"babel-loader": "^8.2.2",
|
|
||||||
"benchmark": "^2.1.4",
|
|
||||||
"lodash": "^4.17.4",
|
|
||||||
"papaparse": "^5.3.1",
|
|
||||||
"mocha": "^9.0.3",
|
|
||||||
"karma": "^6.3.4",
|
|
||||||
"karma-chrome-launcher": "^3.1.0",
|
|
||||||
"karma-firefox-launcher": "^2.1.1",
|
|
||||||
"karma-json-to-file-reporter" : "^1.0.1",
|
|
||||||
"karma-mocha": "^2.0.1",
|
|
||||||
"karma-webpack": "^4.0.2",
|
|
||||||
"webpack": "^4.46.0",
|
|
||||||
"sql.js": "file:./lib"
|
|
||||||
},
|
|
||||||
"scripts": {
|
|
||||||
"benchmark": "karma start karma.conf.js"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
File diff suppressed because one or more lines are too long
@@ -1,140 +0,0 @@
|
|||||||
import benchmark from 'benchmark'
|
|
||||||
import initSqlJs from 'sql.js'
|
|
||||||
import lodash from 'lodash'
|
|
||||||
import Papa from 'papaparse'
|
|
||||||
import useragent from 'ua-parser-js'
|
|
||||||
|
|
||||||
|
|
||||||
describe('SQLite build benchmark', function () {
|
|
||||||
let parsedCsv
|
|
||||||
let sqlModule
|
|
||||||
let selectDb
|
|
||||||
|
|
||||||
before(async function () {
|
|
||||||
parsedCsv = await parseCsv('http://localhost:9876/base/sample.csv')
|
|
||||||
sqlModule = await initSqlJs()
|
|
||||||
|
|
||||||
selectDb = new sqlModule.Database()
|
|
||||||
importToTable(selectDb, parsedCsv)
|
|
||||||
})
|
|
||||||
|
|
||||||
function benchmarkImport () {
|
|
||||||
const db = new sqlModule.Database()
|
|
||||||
try {
|
|
||||||
importToTable(db, parsedCsv)
|
|
||||||
} finally {
|
|
||||||
db.close()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function benchmarkSelect () {
|
|
||||||
const result = selectDb.exec(`
|
|
||||||
SELECT county, AVG(avg_depth) avg_depth_c
|
|
||||||
FROM (
|
|
||||||
SELECT s.county, s.town, COUNT(*) cnt, AVG(s.DrilledDepth) avg_depth
|
|
||||||
FROM csv_import s
|
|
||||||
JOIN csv_import USING(hole)
|
|
||||||
WHERE s.town IS NOT NULL
|
|
||||||
GROUP BY 1, 2
|
|
||||||
ORDER BY 4 DESC
|
|
||||||
)
|
|
||||||
GROUP BY 1
|
|
||||||
ORDER BY 2 DESC
|
|
||||||
`)
|
|
||||||
console.assert(result.values.length == 56, 'Unexpected size of result set')
|
|
||||||
}
|
|
||||||
|
|
||||||
it('run', async function () {
|
|
||||||
const suite = createSuite()
|
|
||||||
suite.add('import', { initCount: 3, minSamples: 50, fn: benchmarkImport })
|
|
||||||
suite.add('select', { initCount: 3, minSamples: 50, fn: benchmarkSelect })
|
|
||||||
await run(suite)
|
|
||||||
})
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
|
|
||||||
function importToTable (db, parsedCsv, chunkSize = 1024) {
|
|
||||||
const columnListString = parsedCsv.meta.fields.join(', ')
|
|
||||||
db.exec(`CREATE TABLE csv_import(${columnListString})`)
|
|
||||||
|
|
||||||
const params = parsedCsv.meta.fields.map(name => '?').join(', ')
|
|
||||||
const insertStmt = db.prepare(`INSERT INTO csv_import VALUES(${params})`)
|
|
||||||
chunkArray(parsedCsv.data, chunkSize).map(function (chunk) {
|
|
||||||
db.exec('BEGIN')
|
|
||||||
chunk.map(row => insertStmt.run(Object.values(row)))
|
|
||||||
db.exec('COMMIT')
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class PromiseWrapper {
|
|
||||||
constructor() {
|
|
||||||
this.promise = new Promise((resolve, reject) => {
|
|
||||||
this.reject = reject
|
|
||||||
this.resolve = resolve
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function parseCsv(url) {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
Papa.parse(url, {
|
|
||||||
header: true,
|
|
||||||
download: true,
|
|
||||||
skipEmptyLines: 'greedy',
|
|
||||||
complete: results => resolve(results),
|
|
||||||
error: (error, file) => reject(error)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
}
|
|
||||||
|
|
||||||
function chunkArray (arr, size) {
|
|
||||||
return arr.reduce(function (result, value, index) {
|
|
||||||
const chunkIndex = Math.floor(index / size)
|
|
||||||
|
|
||||||
if(!(chunkIndex in result)) {
|
|
||||||
result[chunkIndex] = []
|
|
||||||
}
|
|
||||||
result[chunkIndex].push(value)
|
|
||||||
|
|
||||||
return result
|
|
||||||
}, [])
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function createSuite () {
|
|
||||||
// Combined workaround from:
|
|
||||||
// - https://github.com/bestiejs/benchmark.js/issues/106
|
|
||||||
// - https://github.com/bestiejs/benchmark.js/issues/237
|
|
||||||
|
|
||||||
// Benchmark could not pick up lodash otherwise
|
|
||||||
const bm = benchmark.runInContext({ _: lodash })
|
|
||||||
// Avoid `ReferenceError: Benchmark is not defined` error because Benchmark is assumed
|
|
||||||
// to be in window
|
|
||||||
window.Benchmark = bm
|
|
||||||
|
|
||||||
return new bm.Suite()
|
|
||||||
}
|
|
||||||
|
|
||||||
function run (suite) {
|
|
||||||
const suiteResult = new PromiseWrapper()
|
|
||||||
suite
|
|
||||||
.on('cycle', function (event) {
|
|
||||||
console.info(String(event.target))
|
|
||||||
})
|
|
||||||
.on('complete', function () {
|
|
||||||
console.log(JSON.stringify({
|
|
||||||
browser: useragent(navigator.userAgent).browser,
|
|
||||||
result: this.filter('successful')
|
|
||||||
}))
|
|
||||||
suiteResult.resolve()
|
|
||||||
})
|
|
||||||
.on('error', function (event) {
|
|
||||||
console.error('Benchmark failed', String(event.target))
|
|
||||||
suiteResult.reject()
|
|
||||||
})
|
|
||||||
.run({async: true})
|
|
||||||
|
|
||||||
return suiteResult.promise
|
|
||||||
}
|
|
||||||
@@ -1,86 +0,0 @@
|
|||||||
import logging
|
|
||||||
import subprocess
|
|
||||||
from pathlib import Path
|
|
||||||
|
|
||||||
|
|
||||||
cflags = (
|
|
||||||
'-O2',
|
|
||||||
'-DSQLITE_DEFAULT_CACHE_SIZE=-65536', # 64 MiB
|
|
||||||
'-DSQLITE_DEFAULT_MEMSTATUS=0',
|
|
||||||
'-DSQLITE_DEFAULT_SYNCHRONOUS=0',
|
|
||||||
'-DSQLITE_DISABLE_LFS',
|
|
||||||
'-DSQLITE_DQS=0',
|
|
||||||
'-DSQLITE_ENABLE_FTS3',
|
|
||||||
'-DSQLITE_ENABLE_FTS3_PARENTHESIS',
|
|
||||||
'-DSQLITE_ENABLE_FTS5',
|
|
||||||
'-DSQLITE_ENABLE_JSON1',
|
|
||||||
'-DSQLITE_ENABLE_NORMALIZE',
|
|
||||||
'-DSQLITE_EXTRA_INIT=extra_init',
|
|
||||||
'-DSQLITE_OMIT_DEPRECATED',
|
|
||||||
'-DSQLITE_OMIT_LOAD_EXTENSION',
|
|
||||||
'-DSQLITE_OMIT_SHARED_CACHE',
|
|
||||||
'-DSQLITE_THREADSAFE=0',
|
|
||||||
)
|
|
||||||
emflags = (
|
|
||||||
# Base
|
|
||||||
'--memory-init-file', '0',
|
|
||||||
'-s', 'RESERVED_FUNCTION_POINTERS=64',
|
|
||||||
'-s', 'ALLOW_TABLE_GROWTH=1',
|
|
||||||
'-s', 'SINGLE_FILE=0',
|
|
||||||
# WASM
|
|
||||||
'-s', 'WASM=1',
|
|
||||||
'-s', 'ALLOW_MEMORY_GROWTH=1',
|
|
||||||
# Optimisation
|
|
||||||
'-s', 'INLINING_LIMIT=50',
|
|
||||||
'-O3',
|
|
||||||
'-flto',
|
|
||||||
# sql.js
|
|
||||||
'-s', 'EXPORTED_FUNCTIONS=@src/sqljs/exported_functions.json',
|
|
||||||
'-s', 'EXPORTED_RUNTIME_METHODS=@src/sqljs/exported_runtime_methods.json',
|
|
||||||
'--pre-js', 'src/sqljs/api.js',
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
def build(src: Path, dst: Path):
|
|
||||||
out = Path('out')
|
|
||||||
out.mkdir()
|
|
||||||
|
|
||||||
logging.info('Building LLVM bitcode for sqlite3.c')
|
|
||||||
subprocess.check_call([
|
|
||||||
'emcc',
|
|
||||||
*cflags,
|
|
||||||
'-c', src / 'sqlite3.c',
|
|
||||||
'-o', out / 'sqlite3.bc',
|
|
||||||
])
|
|
||||||
logging.info('Building LLVM bitcode for extension-functions.c')
|
|
||||||
subprocess.check_call([
|
|
||||||
'emcc',
|
|
||||||
*cflags,
|
|
||||||
'-c', src / 'extension-functions.c',
|
|
||||||
'-o', out / 'extension-functions.bc',
|
|
||||||
])
|
|
||||||
|
|
||||||
logging.info('Building WASM from bitcode')
|
|
||||||
subprocess.check_call([
|
|
||||||
'emcc',
|
|
||||||
*emflags,
|
|
||||||
out / 'sqlite3.bc',
|
|
||||||
out / 'extension-functions.bc',
|
|
||||||
'-o', out / 'sql-wasm.js',
|
|
||||||
])
|
|
||||||
|
|
||||||
logging.info('Post-processing build and copying to dist')
|
|
||||||
(out / 'sql-wasm.wasm').rename(dst / 'sql-wasm.wasm')
|
|
||||||
with (dst / 'sql-wasm.js').open('w') as f:
|
|
||||||
f.write((src / 'sqljs' / 'shell-pre.js').read_text())
|
|
||||||
f.write((out / 'sql-wasm.js').read_text())
|
|
||||||
f.write((src / 'sqljs' / 'shell-post.js').read_text())
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
logging.basicConfig(level='INFO', format='%(asctime)s %(levelname)s %(name)s %(message)s')
|
|
||||||
|
|
||||||
src = Path('src')
|
|
||||||
dst = Path('dist')
|
|
||||||
dst.mkdir()
|
|
||||||
build(src, dst)
|
|
||||||
@@ -1,105 +0,0 @@
|
|||||||
import logging
|
|
||||||
import shutil
|
|
||||||
import subprocess
|
|
||||||
import sys
|
|
||||||
import zipfile
|
|
||||||
from io import BytesIO
|
|
||||||
from pathlib import Path
|
|
||||||
from urllib import request
|
|
||||||
|
|
||||||
|
|
||||||
amalgamation_url = 'https://sqlite.org/2021/sqlite-amalgamation-3360000.zip'
|
|
||||||
|
|
||||||
# Extension-functions
|
|
||||||
# ===================
|
|
||||||
# It breaks amalgamation if appended as other extension because it redefines
|
|
||||||
# several functions, so build it separately. Note that sql.js registers these
|
|
||||||
# extension functions by calling ``registerExtensionFunctions`` itself.
|
|
||||||
contrib_functions_url = 'https://sqlite.org/contrib/download/extension-functions.c?get=25'
|
|
||||||
|
|
||||||
extension_urls = (
|
|
||||||
# Miscellaneous extensions
|
|
||||||
# ========================
|
|
||||||
('https://sqlite.org/src/raw/c6bd5d24?at=series.c', 'sqlite3_series_init'),
|
|
||||||
('https://sqlite.org/src/raw/dbfd8543?at=closure.c', 'sqlite3_closure_init'),
|
|
||||||
('https://sqlite.org/src/raw/5bb2264c?at=uuid.c', 'sqlite3_uuid_init'),
|
|
||||||
('https://sqlite.org/src/raw/5853b0e5?at=regexp.c', 'sqlite3_regexp_init'),
|
|
||||||
# Third-party extension
|
|
||||||
# =====================
|
|
||||||
('https://github.com/jakethaw/pivot_vtab/raw/08ab0797/pivot_vtab.c', 'sqlite3_pivotvtab_init'),
|
|
||||||
)
|
|
||||||
|
|
||||||
sqljs_url = 'https://github.com/sql-js/sql.js/archive/refs/tags/v1.5.0.zip'
|
|
||||||
|
|
||||||
|
|
||||||
def _generate_extra_init_c_function(init_function_names):
|
|
||||||
auto_ext_calls = '\n'.join([
|
|
||||||
'nErr += sqlite3_auto_extension((void*){});'.format(init_fn)
|
|
||||||
for init_fn in init_function_names
|
|
||||||
])
|
|
||||||
return '''
|
|
||||||
int extra_init(const char* dummy)
|
|
||||||
{
|
|
||||||
int nErr = 0;
|
|
||||||
%s
|
|
||||||
return nErr ? SQLITE_ERROR : SQLITE_OK;
|
|
||||||
}
|
|
||||||
''' % auto_ext_calls
|
|
||||||
|
|
||||||
|
|
||||||
def _get_amalgamation(tgt: Path):
|
|
||||||
logging.info('Downloading and extracting SQLite amalgamation %s', amalgamation_url)
|
|
||||||
archive = zipfile.ZipFile(BytesIO(request.urlopen(amalgamation_url).read()))
|
|
||||||
archive_root_dir = zipfile.Path(archive, archive.namelist()[0])
|
|
||||||
for zpath in archive_root_dir.iterdir():
|
|
||||||
with zpath.open() as fr, (tgt / zpath.name).open('wb') as fw:
|
|
||||||
shutil.copyfileobj(fr, fw)
|
|
||||||
|
|
||||||
|
|
||||||
def _get_contrib_functions(tgt: Path):
|
|
||||||
request.urlretrieve(contrib_functions_url, tgt / 'extension-functions.c')
|
|
||||||
|
|
||||||
|
|
||||||
def _get_extensions(tgt: Path):
|
|
||||||
init_functions = []
|
|
||||||
sqlite3_c = tgt / 'sqlite3.c'
|
|
||||||
with sqlite3_c.open('ab') as f:
|
|
||||||
for url, init_fn in extension_urls:
|
|
||||||
logging.info('Downloading and appending to amalgamation %s', url)
|
|
||||||
with request.urlopen(url) as resp:
|
|
||||||
shutil.copyfileobj(resp, f)
|
|
||||||
init_functions.append(init_fn)
|
|
||||||
|
|
||||||
logging.info('Appending SQLITE_EXTRA_INIT to amalgamation')
|
|
||||||
f.write(_generate_extra_init_c_function(init_functions).encode())
|
|
||||||
|
|
||||||
|
|
||||||
def _get_sqljs(tgt: Path):
|
|
||||||
logging.info('Downloading and extracting sql.js %s', sqljs_url)
|
|
||||||
archive = zipfile.ZipFile(BytesIO(request.urlopen(sqljs_url).read()))
|
|
||||||
archive_root_dir = zipfile.Path(archive, archive.namelist()[0])
|
|
||||||
(tgt / 'sqljs').mkdir()
|
|
||||||
for zpath in (archive_root_dir / 'src').iterdir():
|
|
||||||
with zpath.open() as fr, (tgt / 'sqljs' / zpath.name).open('wb') as fw:
|
|
||||||
shutil.copyfileobj(fr, fw)
|
|
||||||
|
|
||||||
|
|
||||||
def configure(tgt: Path):
|
|
||||||
_get_amalgamation(tgt)
|
|
||||||
_get_contrib_functions(tgt)
|
|
||||||
_get_extensions(tgt)
|
|
||||||
_get_sqljs(tgt)
|
|
||||||
|
|
||||||
subprocess.check_call(['emcc', '--version'])
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
|
||||||
if sys.version_info < (3, 8):
|
|
||||||
print('Python 3.8 or higher is expected', file=sys.stderr)
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
logging.basicConfig(level='INFO', format='%(asctime)s %(levelname)s %(name)s %(message)s')
|
|
||||||
|
|
||||||
src = Path('src')
|
|
||||||
src.mkdir()
|
|
||||||
configure(src)
|
|
||||||
94
lib/sql-js/dist/sql-wasm.js
vendored
94
lib/sql-js/dist/sql-wasm.js
vendored
File diff suppressed because one or more lines are too long
BIN
lib/sql-js/dist/sql-wasm.wasm
vendored
BIN
lib/sql-js/dist/sql-wasm.wasm
vendored
Binary file not shown.
@@ -1,9 +0,0 @@
|
|||||||
#!/bin/bash -e
|
|
||||||
|
|
||||||
docker build -t sqliteviz/sqljs .
|
|
||||||
|
|
||||||
rm -r dist || true
|
|
||||||
|
|
||||||
CONTAINER=$(docker create sqliteviz/sqljs)
|
|
||||||
docker cp $CONTAINER:/tmp/build/dist .
|
|
||||||
docker rm $CONTAINER
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"name": "sql.js",
|
|
||||||
"main": "./dist/sql-wasm.js",
|
|
||||||
"private": true
|
|
||||||
}
|
|
||||||
260
package-lock.json
generated
260
package-lock.json
generated
@@ -1,34 +1,29 @@
|
|||||||
{
|
{
|
||||||
"name": "sqliteviz",
|
"name": "sqliteviz",
|
||||||
"version": "0.15.0",
|
"version": "0.13.0",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "sqliteviz",
|
"name": "sqliteviz",
|
||||||
"version": "0.15.0",
|
"version": "0.13.0",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"codemirror": "^5.57.0",
|
"codemirror": "^5.57.0",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
"html2canvas": "^1.1.4",
|
|
||||||
"jquery": "^3.6.0",
|
|
||||||
"nanoid": "^3.1.12",
|
"nanoid": "^3.1.12",
|
||||||
"papaparse": "^5.3.1",
|
"papaparse": "^5.3.0",
|
||||||
"pivottable": "^2.23.0",
|
|
||||||
"plotly.js": "^1.58.4",
|
"plotly.js": "^1.58.4",
|
||||||
"promise-worker": "^2.0.1",
|
"promise-worker": "^2.0.1",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-chart-editor": "^0.45.0",
|
"react-chart-editor": "^0.45.0",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.13.1",
|
||||||
"sql.js": "file:./lib/sql-js",
|
"sql.js": "^1.5.0",
|
||||||
"sqlite-parser": "^1.0.1",
|
"sqlite-parser": "^1.0.1",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-codemirror": "^4.0.6",
|
"vue-codemirror": "^4.0.6",
|
||||||
"vue-js-modal": "^2.0.0-rc.6",
|
"vue-js-modal": "^2.0.0-rc.6",
|
||||||
"vue-multiselect": "^2.1.6",
|
|
||||||
"vue-router": "^3.2.0",
|
"vue-router": "^3.2.0",
|
||||||
"vue2-teleport": "^1.0.1",
|
|
||||||
"vuejs-paginate": "^2.1.0",
|
"vuejs-paginate": "^2.1.0",
|
||||||
"vuera": "^0.2.7",
|
"vuera": "^0.2.7",
|
||||||
"vuex": "^3.4.0"
|
"vuex": "^3.4.0"
|
||||||
@@ -59,9 +54,6 @@
|
|||||||
"worker-loader": "^3.0.8"
|
"worker-loader": "^3.0.8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lib/sql-js": {
|
|
||||||
"name": "sql.js"
|
|
||||||
},
|
|
||||||
"node_modules/@babel/code-frame": {
|
"node_modules/@babel/code-frame": {
|
||||||
"version": "7.12.13",
|
"version": "7.12.13",
|
||||||
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz",
|
||||||
@@ -2538,6 +2530,7 @@
|
|||||||
"merge-source-map": "^1.1.0",
|
"merge-source-map": "^1.1.0",
|
||||||
"postcss": "^7.0.14",
|
"postcss": "^7.0.14",
|
||||||
"postcss-selector-parser": "^6.0.2",
|
"postcss-selector-parser": "^6.0.2",
|
||||||
|
"prettier": "^1.18.2",
|
||||||
"source-map": "~0.6.1",
|
"source-map": "~0.6.1",
|
||||||
"vue-template-es2015-compiler": "^1.9.0"
|
"vue-template-es2015-compiler": "^1.9.0"
|
||||||
},
|
},
|
||||||
@@ -3107,9 +3100,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/anymatch": {
|
"node_modules/anymatch": {
|
||||||
"version": "3.1.2",
|
"version": "3.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
|
||||||
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
|
"integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -4858,25 +4851,23 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/chokidar": {
|
"node_modules/chokidar": {
|
||||||
"version": "3.5.2",
|
"version": "3.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz",
|
||||||
"integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
|
"integrity": "sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"anymatch": "~3.1.2",
|
"anymatch": "~3.1.1",
|
||||||
"braces": "~3.0.2",
|
"braces": "~3.0.2",
|
||||||
"glob-parent": "~5.1.2",
|
"fsevents": "~2.1.2",
|
||||||
|
"glob-parent": "~5.1.0",
|
||||||
"is-binary-path": "~2.1.0",
|
"is-binary-path": "~2.1.0",
|
||||||
"is-glob": "~4.0.1",
|
"is-glob": "~4.0.1",
|
||||||
"normalize-path": "~3.0.0",
|
"normalize-path": "~3.0.0",
|
||||||
"readdirp": "~3.6.0"
|
"readdirp": "~3.4.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 8.10.0"
|
"node": ">= 8.10.0"
|
||||||
},
|
|
||||||
"optionalDependencies": {
|
|
||||||
"fsevents": "~2.3.2"
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/chokidar/node_modules/braces": {
|
"node_modules/chokidar/node_modules/braces": {
|
||||||
@@ -6334,22 +6325,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz",
|
||||||
"integrity": "sha1-cqmupyeW0Bmx0qMlLeTlqqN+Smk="
|
"integrity": "sha1-cqmupyeW0Bmx0qMlLeTlqqN+Smk="
|
||||||
},
|
},
|
||||||
"node_modules/css-line-break": {
|
|
||||||
"version": "1.1.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-1.1.1.tgz",
|
|
||||||
"integrity": "sha512-1feNVaM4Fyzdj4mKPIQNL2n70MmuYzAXZ1aytlROFX1JsOo070OsugwGjj7nl6jnDJWHDM8zRZswkmeYVWZJQA==",
|
|
||||||
"dependencies": {
|
|
||||||
"base64-arraybuffer": "^0.2.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/css-line-break/node_modules/base64-arraybuffer": {
|
|
||||||
"version": "0.2.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.2.0.tgz",
|
|
||||||
"integrity": "sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ==",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 0.6.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/css-loader": {
|
"node_modules/css-loader": {
|
||||||
"version": "3.6.0",
|
"version": "3.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
|
||||||
@@ -7972,7 +7947,8 @@
|
|||||||
"esprima": "^4.0.1",
|
"esprima": "^4.0.1",
|
||||||
"estraverse": "^4.2.0",
|
"estraverse": "^4.2.0",
|
||||||
"esutils": "^2.0.2",
|
"esutils": "^2.0.2",
|
||||||
"optionator": "^0.8.1"
|
"optionator": "^0.8.1",
|
||||||
|
"source-map": "~0.6.1"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"escodegen": "bin/escodegen.js",
|
"escodegen": "bin/escodegen.js",
|
||||||
@@ -9596,11 +9572,10 @@
|
|||||||
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
||||||
},
|
},
|
||||||
"node_modules/fsevents": {
|
"node_modules/fsevents": {
|
||||||
"version": "2.3.2",
|
"version": "2.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
|
||||||
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
"integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"hasInstallScript": true,
|
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@@ -10470,9 +10445,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/glob-parent": {
|
"node_modules/glob-parent": {
|
||||||
"version": "5.1.2",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
|
||||||
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
"integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"is-glob": "^4.0.1"
|
"is-glob": "^4.0.1"
|
||||||
@@ -10782,6 +10757,7 @@
|
|||||||
"minimist": "^1.2.5",
|
"minimist": "^1.2.5",
|
||||||
"neo-async": "^2.6.0",
|
"neo-async": "^2.6.0",
|
||||||
"source-map": "^0.6.1",
|
"source-map": "^0.6.1",
|
||||||
|
"uglify-js": "^3.1.4",
|
||||||
"wordwrap": "^1.0.0"
|
"wordwrap": "^1.0.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -11213,17 +11189,6 @@
|
|||||||
"object.getownpropertydescriptors": "^2.0.3"
|
"object.getownpropertydescriptors": "^2.0.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/html2canvas": {
|
|
||||||
"version": "1.1.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.1.4.tgz",
|
|
||||||
"integrity": "sha512-uHgQDwrXsRmFdnlOVFvHin9R7mdjjZvoBoXxicPR+NnucngkaLa5zIDW9fzMkiip0jSffyTyWedE8iVogYOeWg==",
|
|
||||||
"dependencies": {
|
|
||||||
"css-line-break": "1.1.1"
|
|
||||||
},
|
|
||||||
"engines": {
|
|
||||||
"node": ">=8.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/htmlparser2": {
|
"node_modules/htmlparser2": {
|
||||||
"version": "3.10.1",
|
"version": "3.10.1",
|
||||||
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
|
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
|
||||||
@@ -12578,7 +12543,8 @@
|
|||||||
"esprima": "^2.7.1",
|
"esprima": "^2.7.1",
|
||||||
"estraverse": "^1.9.1",
|
"estraverse": "^1.9.1",
|
||||||
"esutils": "^2.0.2",
|
"esutils": "^2.0.2",
|
||||||
"optionator": "^0.8.1"
|
"optionator": "^0.8.1",
|
||||||
|
"source-map": "~0.2.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"escodegen": "bin/escodegen.js",
|
"escodegen": "bin/escodegen.js",
|
||||||
@@ -12727,11 +12693,6 @@
|
|||||||
"node": ">=8"
|
"node": ">=8"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/jquery": {
|
|
||||||
"version": "3.6.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
|
|
||||||
"integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
|
|
||||||
},
|
|
||||||
"node_modules/js-base64": {
|
"node_modules/js-base64": {
|
||||||
"version": "2.6.4",
|
"version": "2.6.4",
|
||||||
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
|
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
|
||||||
@@ -13188,6 +13149,7 @@
|
|||||||
"anymatch": "^2.0.0",
|
"anymatch": "^2.0.0",
|
||||||
"async-each": "^1.0.1",
|
"async-each": "^1.0.1",
|
||||||
"braces": "^2.3.2",
|
"braces": "^2.3.2",
|
||||||
|
"fsevents": "^1.2.7",
|
||||||
"glob-parent": "^3.1.0",
|
"glob-parent": "^3.1.0",
|
||||||
"inherits": "^2.0.3",
|
"inherits": "^2.0.3",
|
||||||
"is-binary-path": "^1.0.0",
|
"is-binary-path": "^1.0.0",
|
||||||
@@ -15486,9 +15448,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/papaparse": {
|
"node_modules/papaparse": {
|
||||||
"version": "5.3.1",
|
"version": "5.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.0.tgz",
|
||||||
"integrity": "sha512-Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA=="
|
"integrity": "sha512-Lb7jN/4bTpiuGPrYy4tkKoUS8sTki8zacB5ke1p5zolhcSE4TlWgrlsxjrDTbG/dFVh07ck7X36hUf/b5V68pg=="
|
||||||
},
|
},
|
||||||
"node_modules/parallel-transform": {
|
"node_modules/parallel-transform": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.0",
|
||||||
@@ -15946,14 +15908,6 @@
|
|||||||
"node": ">=0.10.0"
|
"node": ">=0.10.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/pivottable": {
|
|
||||||
"version": "2.23.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/pivottable/-/pivottable-2.23.0.tgz",
|
|
||||||
"integrity": "sha512-6WRaiiI0mU5JxzNMWbtf3vfrBvBhBPIUbwu2Q7Nv7fVCxIvlmFqXSldMwmHAsiEFwdZdUrpQHqIu+N3jZUezyg==",
|
|
||||||
"dependencies": {
|
|
||||||
"jquery": ">=1.9.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/pkg-dir": {
|
"node_modules/pkg-dir": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
|
||||||
@@ -17675,9 +17629,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/readdirp": {
|
"node_modules/readdirp": {
|
||||||
"version": "3.6.0",
|
"version": "3.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
|
||||||
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
"integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@@ -18377,6 +18331,9 @@
|
|||||||
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.46.0.tgz",
|
"resolved": "https://registry.npmjs.org/rollup/-/rollup-2.46.0.tgz",
|
||||||
"integrity": "sha512-qPGoUBNl+Z8uNu0z7pD3WPTABWRbcOwIrO/5ccDJzmrtzn0LVf6Lj91+L5CcWhXl6iWf23FQ6m8Jkl2CmN1O7Q==",
|
"integrity": "sha512-qPGoUBNl+Z8uNu0z7pD3WPTABWRbcOwIrO/5ccDJzmrtzn0LVf6Lj91+L5CcWhXl6iWf23FQ6m8Jkl2CmN1O7Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
|
"dependencies": {
|
||||||
|
"fsevents": "~2.3.1"
|
||||||
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"rollup": "dist/bin/rollup"
|
"rollup": "dist/bin/rollup"
|
||||||
},
|
},
|
||||||
@@ -18472,6 +18429,20 @@
|
|||||||
"node": ">=10"
|
"node": ">=10"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/rollup/node_modules/fsevents": {
|
||||||
|
"version": "2.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
||||||
|
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
||||||
|
"dev": true,
|
||||||
|
"hasInstallScript": true,
|
||||||
|
"optional": true,
|
||||||
|
"os": [
|
||||||
|
"darwin"
|
||||||
|
],
|
||||||
|
"engines": {
|
||||||
|
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/run-async": {
|
"node_modules/run-async": {
|
||||||
"version": "2.4.1",
|
"version": "2.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
|
"resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz",
|
||||||
@@ -19469,8 +19440,9 @@
|
|||||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||||
},
|
},
|
||||||
"node_modules/sql.js": {
|
"node_modules/sql.js": {
|
||||||
"resolved": "lib/sql-js",
|
"version": "1.5.0",
|
||||||
"link": true
|
"resolved": "https://registry.npmjs.org/sql.js/-/sql.js-1.5.0.tgz",
|
||||||
|
"integrity": "sha512-Qqr6HgX/hCDpLFWdN0BNoNpYQ2c1tOl1c3HGI0cshjaFSAWszKICuLZ9CyFUvRFPpEGW8RzHzwuXWWvXVGTKBg=="
|
||||||
},
|
},
|
||||||
"node_modules/sqlite-parser": {
|
"node_modules/sqlite-parser": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
@@ -21646,6 +21618,7 @@
|
|||||||
"peer": true,
|
"peer": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"source-map": "~0.5.1",
|
"source-map": "~0.5.1",
|
||||||
|
"uglify-to-browserify": "~1.0.0",
|
||||||
"yargs": "~3.10.0"
|
"yargs": "~3.10.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
@@ -21969,15 +21942,6 @@
|
|||||||
"integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=",
|
"integrity": "sha1-M7QHd3VMZDJXPBIMw4CLvRDUfwQ=",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/vue-multiselect": {
|
|
||||||
"version": "2.1.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/vue-multiselect/-/vue-multiselect-2.1.6.tgz",
|
|
||||||
"integrity": "sha512-s7jmZPlm9FeueJg1RwJtnE9KNPtME/7C8uRWSfp9/yEN4M8XcS/d+bddoyVwVnvFyRh9msFo0HWeW0vTL8Qv+w==",
|
|
||||||
"engines": {
|
|
||||||
"node": ">= 4.0.0",
|
|
||||||
"npm": ">= 3.0.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"node_modules/vue-router": {
|
"node_modules/vue-router": {
|
||||||
"version": "3.3.4",
|
"version": "3.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.3.4.tgz",
|
||||||
@@ -22015,11 +21979,6 @@
|
|||||||
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
|
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/vue2-teleport": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/vue2-teleport/-/vue2-teleport-1.0.1.tgz",
|
|
||||||
"integrity": "sha512-hbY/Q0x8qXGFxo6h4KU4YYesUcN+uUjliqqC0PoNSgpcbS2QRb3qXi+7XMTgLYs0a8i7o1H6Mu43UV4Vbgkhgw=="
|
|
||||||
},
|
|
||||||
"node_modules/vuejs-paginate": {
|
"node_modules/vuejs-paginate": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/vuejs-paginate/-/vuejs-paginate-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/vuejs-paginate/-/vuejs-paginate-2.1.0.tgz",
|
||||||
@@ -22049,8 +22008,10 @@
|
|||||||
"integrity": "sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g==",
|
"integrity": "sha512-ymVbbQP40MFTp+cNMvpyBpBtygHnPzPkHqoIwRRj/0B8KhqQwV8LaKjtbaxF2lK4vl8zN9wCxS46IFCU5K4W0g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"chokidar": "^3.4.0",
|
||||||
"graceful-fs": "^4.1.2",
|
"graceful-fs": "^4.1.2",
|
||||||
"neo-async": "^2.5.0"
|
"neo-async": "^2.5.0",
|
||||||
|
"watchpack-chokidar2": "^2.0.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"chokidar": "^3.4.0",
|
"chokidar": "^3.4.0",
|
||||||
@@ -22130,7 +22091,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
|
||||||
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
|
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"hasInstallScript": true,
|
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@@ -22452,6 +22412,7 @@
|
|||||||
"anymatch": "^2.0.0",
|
"anymatch": "^2.0.0",
|
||||||
"async-each": "^1.0.1",
|
"async-each": "^1.0.1",
|
||||||
"braces": "^2.3.2",
|
"braces": "^2.3.2",
|
||||||
|
"fsevents": "^1.2.7",
|
||||||
"glob-parent": "^3.1.0",
|
"glob-parent": "^3.1.0",
|
||||||
"inherits": "^2.0.3",
|
"inherits": "^2.0.3",
|
||||||
"is-binary-path": "^1.0.0",
|
"is-binary-path": "^1.0.0",
|
||||||
@@ -22470,7 +22431,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz",
|
||||||
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
|
"integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"hasInstallScript": true,
|
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"os": [
|
"os": [
|
||||||
"darwin"
|
"darwin"
|
||||||
@@ -22822,6 +22782,7 @@
|
|||||||
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
"integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"graceful-fs": "^4.1.6",
|
||||||
"universalify": "^2.0.0"
|
"universalify": "^2.0.0"
|
||||||
},
|
},
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
@@ -25986,9 +25947,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"anymatch": {
|
"anymatch": {
|
||||||
"version": "3.1.2",
|
"version": "3.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz",
|
||||||
"integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
|
"integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
@@ -27513,20 +27474,20 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"chokidar": {
|
"chokidar": {
|
||||||
"version": "3.5.2",
|
"version": "3.4.1",
|
||||||
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
|
"resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.4.1.tgz",
|
||||||
"integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
|
"integrity": "sha512-TQTJyr2stihpC4Sya9hs2Xh+O2wf+igjL36Y75xx2WdHuiICcn/XJza46Jwt0eT5hVpQOzo3FpY3cj3RVYLX0g==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"anymatch": "~3.1.2",
|
"anymatch": "~3.1.1",
|
||||||
"braces": "~3.0.2",
|
"braces": "~3.0.2",
|
||||||
"fsevents": "~2.3.2",
|
"fsevents": "~2.1.2",
|
||||||
"glob-parent": "~5.1.2",
|
"glob-parent": "~5.1.0",
|
||||||
"is-binary-path": "~2.1.0",
|
"is-binary-path": "~2.1.0",
|
||||||
"is-glob": "~4.0.1",
|
"is-glob": "~4.0.1",
|
||||||
"normalize-path": "~3.0.0",
|
"normalize-path": "~3.0.0",
|
||||||
"readdirp": "~3.6.0"
|
"readdirp": "~3.4.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"braces": {
|
"braces": {
|
||||||
@@ -28789,21 +28750,6 @@
|
|||||||
"resolved": "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/css-global-keywords/-/css-global-keywords-1.0.1.tgz",
|
||||||
"integrity": "sha1-cqmupyeW0Bmx0qMlLeTlqqN+Smk="
|
"integrity": "sha1-cqmupyeW0Bmx0qMlLeTlqqN+Smk="
|
||||||
},
|
},
|
||||||
"css-line-break": {
|
|
||||||
"version": "1.1.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-1.1.1.tgz",
|
|
||||||
"integrity": "sha512-1feNVaM4Fyzdj4mKPIQNL2n70MmuYzAXZ1aytlROFX1JsOo070OsugwGjj7nl6jnDJWHDM8zRZswkmeYVWZJQA==",
|
|
||||||
"requires": {
|
|
||||||
"base64-arraybuffer": "^0.2.0"
|
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"base64-arraybuffer": {
|
|
||||||
"version": "0.2.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.2.0.tgz",
|
|
||||||
"integrity": "sha512-7emyCsu1/xiBXgQZrscw/8KPRT44I4Yq9Pe6EGs3aPRTsWuggML1/1DTuZUuIaJPIm1FTDUVXl4x/yW8s0kQDQ=="
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"css-loader": {
|
"css-loader": {
|
||||||
"version": "3.6.0",
|
"version": "3.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/css-loader/-/css-loader-3.6.0.tgz",
|
||||||
@@ -31598,9 +31544,9 @@
|
|||||||
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
||||||
},
|
},
|
||||||
"fsevents": {
|
"fsevents": {
|
||||||
"version": "2.3.2",
|
"version": "2.1.3",
|
||||||
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz",
|
||||||
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
"integrity": "sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
@@ -32431,9 +32377,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"glob-parent": {
|
"glob-parent": {
|
||||||
"version": "5.1.2",
|
"version": "5.1.1",
|
||||||
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
|
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz",
|
||||||
"integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
|
"integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"is-glob": "^4.0.1"
|
"is-glob": "^4.0.1"
|
||||||
@@ -33093,14 +33039,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"html2canvas": {
|
|
||||||
"version": "1.1.4",
|
|
||||||
"resolved": "https://registry.npmjs.org/html2canvas/-/html2canvas-1.1.4.tgz",
|
|
||||||
"integrity": "sha512-uHgQDwrXsRmFdnlOVFvHin9R7mdjjZvoBoXxicPR+NnucngkaLa5zIDW9fzMkiip0jSffyTyWedE8iVogYOeWg==",
|
|
||||||
"requires": {
|
|
||||||
"css-line-break": "1.1.1"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"htmlparser2": {
|
"htmlparser2": {
|
||||||
"version": "3.10.1",
|
"version": "3.10.1",
|
||||||
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
|
"resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz",
|
||||||
@@ -34302,11 +34240,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"jquery": {
|
|
||||||
"version": "3.6.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz",
|
|
||||||
"integrity": "sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw=="
|
|
||||||
},
|
|
||||||
"js-base64": {
|
"js-base64": {
|
||||||
"version": "2.6.4",
|
"version": "2.6.4",
|
||||||
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
|
"resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz",
|
||||||
@@ -36640,9 +36573,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"papaparse": {
|
"papaparse": {
|
||||||
"version": "5.3.1",
|
"version": "5.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.1.tgz",
|
"resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.0.tgz",
|
||||||
"integrity": "sha512-Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA=="
|
"integrity": "sha512-Lb7jN/4bTpiuGPrYy4tkKoUS8sTki8zacB5ke1p5zolhcSE4TlWgrlsxjrDTbG/dFVh07ck7X36hUf/b5V68pg=="
|
||||||
},
|
},
|
||||||
"parallel-transform": {
|
"parallel-transform": {
|
||||||
"version": "1.2.0",
|
"version": "1.2.0",
|
||||||
@@ -37031,14 +36964,6 @@
|
|||||||
"pinkie": "^2.0.0"
|
"pinkie": "^2.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"pivottable": {
|
|
||||||
"version": "2.23.0",
|
|
||||||
"resolved": "https://registry.npmjs.org/pivottable/-/pivottable-2.23.0.tgz",
|
|
||||||
"integrity": "sha512-6WRaiiI0mU5JxzNMWbtf3vfrBvBhBPIUbwu2Q7Nv7fVCxIvlmFqXSldMwmHAsiEFwdZdUrpQHqIu+N3jZUezyg==",
|
|
||||||
"requires": {
|
|
||||||
"jquery": ">=1.9.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"pkg-dir": {
|
"pkg-dir": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
|
"resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz",
|
||||||
@@ -38561,9 +38486,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"readdirp": {
|
"readdirp": {
|
||||||
"version": "3.6.0",
|
"version": "3.4.0",
|
||||||
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
|
"resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.4.0.tgz",
|
||||||
"integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
|
"integrity": "sha512-0xe001vZBnJEK+uKcj8qOhyAKPzIT+gStxWr3LCB0DwcXR5NZJ3IaC+yGnHCYzB/S7ov3m3EEbZI2zeNvX+hGQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
@@ -39186,6 +39111,15 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"fsevents": "~2.3.1"
|
"fsevents": "~2.3.1"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"fsevents": {
|
||||||
|
"version": "2.3.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
|
||||||
|
"integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
|
||||||
|
"dev": true,
|
||||||
|
"optional": true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"rollup-plugin-terser": {
|
"rollup-plugin-terser": {
|
||||||
@@ -40172,7 +40106,9 @@
|
|||||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||||
},
|
},
|
||||||
"sql.js": {
|
"sql.js": {
|
||||||
"version": "file:lib/sql-js"
|
"version": "1.5.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/sql.js/-/sql.js-1.5.0.tgz",
|
||||||
|
"integrity": "sha512-Qqr6HgX/hCDpLFWdN0BNoNpYQ2c1tOl1c3HGI0cshjaFSAWszKICuLZ9CyFUvRFPpEGW8RzHzwuXWWvXVGTKBg=="
|
||||||
},
|
},
|
||||||
"sqlite-parser": {
|
"sqlite-parser": {
|
||||||
"version": "1.0.1",
|
"version": "1.0.1",
|
||||||
@@ -42302,11 +42238,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"vue-multiselect": {
|
|
||||||
"version": "2.1.6",
|
|
||||||
"resolved": "https://registry.npmjs.org/vue-multiselect/-/vue-multiselect-2.1.6.tgz",
|
|
||||||
"integrity": "sha512-s7jmZPlm9FeueJg1RwJtnE9KNPtME/7C8uRWSfp9/yEN4M8XcS/d+bddoyVwVnvFyRh9msFo0HWeW0vTL8Qv+w=="
|
|
||||||
},
|
|
||||||
"vue-router": {
|
"vue-router": {
|
||||||
"version": "3.3.4",
|
"version": "3.3.4",
|
||||||
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.3.4.tgz",
|
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.3.4.tgz",
|
||||||
@@ -42346,11 +42277,6 @@
|
|||||||
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
|
"integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"vue2-teleport": {
|
|
||||||
"version": "1.0.1",
|
|
||||||
"resolved": "https://registry.npmjs.org/vue2-teleport/-/vue2-teleport-1.0.1.tgz",
|
|
||||||
"integrity": "sha512-hbY/Q0x8qXGFxo6h4KU4YYesUcN+uUjliqqC0PoNSgpcbS2QRb3qXi+7XMTgLYs0a8i7o1H6Mu43UV4Vbgkhgw=="
|
|
||||||
},
|
|
||||||
"vuejs-paginate": {
|
"vuejs-paginate": {
|
||||||
"version": "2.1.0",
|
"version": "2.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/vuejs-paginate/-/vuejs-paginate-2.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/vuejs-paginate/-/vuejs-paginate-2.1.0.tgz",
|
||||||
|
|||||||
11
package.json
11
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "sqliteviz",
|
"name": "sqliteviz",
|
||||||
"version": "0.15.2",
|
"version": "0.13.0",
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -12,24 +12,19 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"codemirror": "^5.57.0",
|
"codemirror": "^5.57.0",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
"html2canvas": "^1.1.4",
|
|
||||||
"jquery": "^3.6.0",
|
|
||||||
"nanoid": "^3.1.12",
|
"nanoid": "^3.1.12",
|
||||||
"papaparse": "^5.3.1",
|
"papaparse": "^5.3.0",
|
||||||
"pivottable": "^2.23.0",
|
|
||||||
"plotly.js": "^1.58.4",
|
"plotly.js": "^1.58.4",
|
||||||
"promise-worker": "^2.0.1",
|
"promise-worker": "^2.0.1",
|
||||||
"react": "^16.13.1",
|
"react": "^16.13.1",
|
||||||
"react-chart-editor": "^0.45.0",
|
"react-chart-editor": "^0.45.0",
|
||||||
"react-dom": "^16.13.1",
|
"react-dom": "^16.13.1",
|
||||||
"sql.js": "file:./lib/sql-js",
|
"sql.js": "^1.5.0",
|
||||||
"sqlite-parser": "^1.0.1",
|
"sqlite-parser": "^1.0.1",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-codemirror": "^4.0.6",
|
"vue-codemirror": "^4.0.6",
|
||||||
"vue-js-modal": "^2.0.0-rc.6",
|
"vue-js-modal": "^2.0.0-rc.6",
|
||||||
"vue-multiselect": "^2.1.6",
|
|
||||||
"vue-router": "^3.2.0",
|
"vue-router": "^3.2.0",
|
||||||
"vue2-teleport": "^1.0.1",
|
|
||||||
"vuejs-paginate": "^2.1.0",
|
"vuejs-paginate": "^2.1.0",
|
||||||
"vuera": "^0.2.7",
|
"vuera": "^0.2.7",
|
||||||
"vuex": "^3.4.0"
|
"vuex": "^3.4.0"
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M4.51581 7.54801C4.95181 7.10201 5.55881 7.06701 6.09181 7.54801L9.99981 11.295L13.9078 7.54801C14.4408 7.06701 15.0488 7.10201 15.4818 7.54801C15.9178 7.99301 15.8898 8.74501 15.4818 9.16301C15.0758 9.58101 10.7868 13.665 10.7868 13.665C10.5698 13.888 10.2848 14 9.99981 14C9.71481 14 9.42981 13.888 9.21081 13.665C9.21081 13.665 4.92381 9.58101 4.51581 9.16301C4.10781 8.74501 4.07981 7.99301 4.51581 7.54801V7.54801Z" fill="#119DFF"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 550 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M4.51581 7.54801C4.95181 7.10201 5.55881 7.06701 6.09181 7.54801L9.99981 11.295L13.9078 7.54801C14.4408 7.06701 15.0488 7.10201 15.4818 7.54801C15.9178 7.99301 15.8898 8.74501 15.4818 9.16301C15.0758 9.58101 10.7868 13.665 10.7868 13.665C10.5698 13.888 10.2848 14 9.99981 14C9.71481 14 9.42981 13.888 9.21081 13.665C9.21081 13.665 4.92381 9.58101 4.51581 9.16301C4.10781 8.74501 4.07981 7.99301 4.51581 7.54801V7.54801Z" fill="#C8D4E3"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 550 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M10.0436 10.3943C9.7153 10.7226 9.1833 10.7226 8.8557 10.3943L7 8.27329L5.1443 10.3936C4.816 10.7219 4.284 10.7219 3.9564 10.3936C3.6281 10.0653 3.6281 9.53329 3.9564 9.20569L5.887 7.00069L3.9557 4.79429C3.6274 4.46599 3.6274 3.93469 3.9557 3.60639C4.284 3.27809 4.8153 3.27809 5.1436 3.60639L7 5.72809L8.8557 3.60639C9.184 3.27809 9.7153 3.27809 10.0436 3.60639C10.3719 3.93469 10.3719 4.46669 10.0436 4.79429L8.113 7.00069L10.0436 9.20569C10.3719 9.53399 10.3719 10.066 10.0436 10.3943V10.3943Z" fill="#DE350B"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 627 B |
@@ -1,3 +0,0 @@
|
|||||||
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M10.0436 10.3945C9.7153 10.7228 9.1833 10.7228 8.8557 10.3945L7 8.27348L5.1443 10.3938C4.816 10.7221 4.284 10.7221 3.9564 10.3938C3.6281 10.0655 3.6281 9.53348 3.9564 9.20588L5.887 7.00088L3.9557 4.79448C3.6274 4.46618 3.6274 3.93488 3.9557 3.60658C4.284 3.27828 4.8153 3.27828 5.1436 3.60658L7 5.72828L8.8557 3.60658C9.184 3.27828 9.7153 3.27828 10.0436 3.60658C10.3719 3.93488 10.3719 4.46688 10.0436 4.79448L8.113 7.00088L10.0436 9.20588C10.3719 9.53418 10.3719 10.0662 10.0436 10.3945V10.3945Z" fill="#506784"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 628 B |
@@ -1,11 +0,0 @@
|
|||||||
<svg width="6" height="12" viewBox="0 0 6 12" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g clip-path="url(#clip0)">
|
|
||||||
<path d="M2.99932 -3.63032e-05C2.75092 -3.63032e-05 2.54932 0.201563 2.54932 0.449964L2.54932 11.55C2.54932 11.7984 2.75092 12 2.99932 12C3.24772 12 3.44932 11.7984 3.44932 11.55L3.44932 0.449964C3.44932 0.201563 3.24772 -3.63032e-05 2.99932 -3.63032e-05Z" fill="#506784"/>
|
|
||||||
<path d="M2.99915 1.80492e-05C2.8839 1.80492e-05 2.76865 0.0438534 2.68109 0.132073L0.581055 2.232C0.405273 2.40789 0.405273 2.69287 0.581055 2.86865C0.756946 3.04443 1.04193 3.04443 1.21771 2.86865L2.99969 1.08667L4.78168 2.86865C4.95746 3.04443 5.24255 3.04443 5.41833 2.86865C5.59412 2.69287 5.59412 2.40789 5.41833 2.232L3.3183 0.132073C3.22953 0.0438534 3.11428 1.80492e-05 2.99915 1.80492e-05V1.80492e-05Z" fill="#506784"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0">
|
|
||||||
<rect width="6" height="12" fill="white" transform="matrix(1 0 0 -1 0 12)"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 964 B |
@@ -1,136 +0,0 @@
|
|||||||
.sqliteviz-select,
|
|
||||||
.sqliteviz-select .multiselect__tags {
|
|
||||||
min-height: 36px;
|
|
||||||
color: var(--color-text-base);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__select {
|
|
||||||
height: 34px;
|
|
||||||
min-height: 34px;
|
|
||||||
padding: 6px;
|
|
||||||
width: 32px;
|
|
||||||
height: 32px;
|
|
||||||
margin-top: 1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__tags {
|
|
||||||
border-radius: var(--border-radius-medium-2);
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
padding: 4px 32px 0 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select,
|
|
||||||
.sqliteviz-select .multiselect__input,
|
|
||||||
.sqliteviz-select .multiselect__single,
|
|
||||||
.sqliteviz-select .multiselect__placeholder {
|
|
||||||
font-size: 12px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__single,
|
|
||||||
.sqliteviz-select .multiselect__placeholder,
|
|
||||||
.sqliteviz-select .multiselect__input {
|
|
||||||
padding: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
line-height: 28px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__input {
|
|
||||||
width: 0 !important;
|
|
||||||
color: var(--color-text-base);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--active .multiselect__input {
|
|
||||||
width: auto !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__placeholder,
|
|
||||||
.sqliteviz-select .multiselect__input::placeholder {
|
|
||||||
color: var(--color-text-light-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__option.multiselect__option--highlight {
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
color: var(--color-text-active);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__tag {
|
|
||||||
background-color: var(--color-bg-light-4);
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
border-radius: var(--border-radius-small);
|
|
||||||
color: var(--color-text-active);
|
|
||||||
font-size: 11.05px;
|
|
||||||
margin: 2px;
|
|
||||||
}
|
|
||||||
.sqliteviz-select .multiselect__tag-icon:after {
|
|
||||||
content: url('~@/assets/images/delete-tag.svg');
|
|
||||||
height: 14px;
|
|
||||||
width: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__tag-icon:focus:after,
|
|
||||||
.sqliteviz-select .multiselect__tag-icon:hover:after {
|
|
||||||
content: url('~@/assets/images/delete-tag-hover.svg');
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__tag-icon:focus,
|
|
||||||
.sqliteviz-select .multiselect__tag-icon:hover {
|
|
||||||
background-color: var(--color-bg-danger);
|
|
||||||
border-radius: var(--border-radius-small);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__option {
|
|
||||||
min-height: 29px;
|
|
||||||
padding: 8px 12px;
|
|
||||||
line-height: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__option:after {
|
|
||||||
line-height: 29px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__content-wrapper {
|
|
||||||
border-radius: var(--border-radius-medium-2);
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
box-shadow: var(--shadow-1);
|
|
||||||
top: calc(100% - 1px);
|
|
||||||
max-height: 292px !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--above .multiselect__content-wrapper {
|
|
||||||
top: unset;
|
|
||||||
bottom: calc(100% - 1px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__select:before {
|
|
||||||
content: url('~@/assets/images/arrow.svg');
|
|
||||||
border: none;
|
|
||||||
top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--active .multiselect__select {
|
|
||||||
transform: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select:hover .multiselect__tags {
|
|
||||||
border-color: var(--color-border-dark);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__select:hover:before {
|
|
||||||
content: url('~@/assets/images/arrow-hover.svg');
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--active .multiselect__tags {
|
|
||||||
border-radius: var(--border-radius-medium-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select .multiselect__option .no-results {
|
|
||||||
color: var(--color-text-light-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--disabled {
|
|
||||||
opacity: unset;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sqliteviz-select.multiselect--disabled .multiselect__select {
|
|
||||||
background: unset;
|
|
||||||
}
|
|
||||||
@@ -6,12 +6,6 @@
|
|||||||
border: 1px solid var(--color-border-light);
|
border: 1px solid var(--color-border-light);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.straight .rounded-bg {
|
|
||||||
border-radius: 0;
|
|
||||||
border-width: 0 0 1px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.header-container {
|
.header-container {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@@ -24,19 +18,6 @@
|
|||||||
border-radius: 5px 5px 0 0;
|
border-radius: 5px 5px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.straight .header-container {
|
|
||||||
border-radius: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.straight {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.straight .rounded-bg {
|
|
||||||
/* 27 - height of table footer */
|
|
||||||
height: calc(100% - 27px);
|
|
||||||
}
|
|
||||||
|
|
||||||
@supports (-moz-appearance:none) {
|
@supports (-moz-appearance:none) {
|
||||||
.header-container {
|
.header-container {
|
||||||
top: 0;
|
top: 0;
|
||||||
@@ -51,25 +32,22 @@
|
|||||||
}
|
}
|
||||||
.table-container {
|
.table-container {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-height: 100%;
|
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
table.sqliteviz-table {
|
table {
|
||||||
min-width: 100%;
|
min-width: 100%;
|
||||||
margin-top: -35px;
|
margin-top: -35px;
|
||||||
border-collapse: collapse;
|
border-collapse: collapse;
|
||||||
}
|
}
|
||||||
.sqliteviz-table thead th, .fixed-header {
|
thead th, .fixed-header {
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
background-color: var(--color-bg-dark);
|
background-color: var(--color-bg-dark);
|
||||||
color: var(--color-text-light);
|
color: var(--color-text-light);
|
||||||
border-right: 1px solid var(--color-border-light);
|
border-right: 1px solid var(--color-border-light);
|
||||||
overflow: hidden;
|
|
||||||
text-overflow: ellipsis;
|
|
||||||
}
|
}
|
||||||
.sqliteviz-table tbody td {
|
tbody td {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
background-color:white;
|
background-color:white;
|
||||||
color: var(--color-text-base);
|
color: var(--color-text-base);
|
||||||
@@ -77,20 +55,18 @@ table.sqliteviz-table {
|
|||||||
border-bottom: 1px solid var(--color-border-light);
|
border-bottom: 1px solid var(--color-border-light);
|
||||||
border-right: 1px solid var(--color-border-light);
|
border-right: 1px solid var(--color-border-light);
|
||||||
}
|
}
|
||||||
.sqliteviz-table td,
|
td, th, .fixed-header {
|
||||||
.sqliteviz-table th,
|
|
||||||
.fixed-header {
|
|
||||||
padding: 8px 24px;
|
padding: 8px 24px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr td:last-child,
|
tbody tr td:last-child,
|
||||||
.sqliteviz-table thead tr th:last-child,
|
thead tr th:last-child,
|
||||||
.header-container div .fixed-header:last-child {
|
.header-container div .fixed-header:last-child {
|
||||||
border-right: none;
|
border-right: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table td > div.cell-data {
|
td > div.cell-data {
|
||||||
width: -webkit-max-content;
|
width: -webkit-max-content;
|
||||||
width: -moz-max-content;
|
width: -moz-max-content;
|
||||||
width: max-content;
|
width: max-content;
|
||||||
|
|||||||
@@ -11,8 +11,6 @@
|
|||||||
--color-blue-dark: #0D76BF;
|
--color-blue-dark: #0D76BF;
|
||||||
--color-blue-dark-2: #2A3F5F;
|
--color-blue-dark-2: #2A3F5F;
|
||||||
--color-red: #EF553B;
|
--color-red: #EF553B;
|
||||||
--color-red-2: #DE350B;
|
|
||||||
--color-red-light: #FFBDAD;
|
|
||||||
--color-yellow: #FBEFCB;
|
--color-yellow: #FBEFCB;
|
||||||
|
|
||||||
|
|
||||||
@@ -20,16 +18,13 @@
|
|||||||
--color-bg-light: var(--color-gray-light);
|
--color-bg-light: var(--color-gray-light);
|
||||||
--color-bg-light-2: var(--color-gray-light-2);
|
--color-bg-light-2: var(--color-gray-light-2);
|
||||||
--color-bg-light-3: var(--color-gray-light-5);
|
--color-bg-light-3: var(--color-gray-light-5);
|
||||||
--color-bg-light-4: var(--color-gray-light-4);
|
|
||||||
--color-bg-dark: var(--color-gray-dark);
|
--color-bg-dark: var(--color-gray-dark);
|
||||||
--color-bg-warning: var(--color-yellow);
|
--color-bg-warning: var(--color-yellow);
|
||||||
--color-bg-danger: var(--color-red-light);
|
--color-danger: var(--color-red);
|
||||||
--color-danger: var(--color-red-2);
|
|
||||||
--color-accent: var(--color-blue-medium);
|
--color-accent: var(--color-blue-medium);
|
||||||
--color-accent-shade: var(--color-blue-dark);
|
--color-accent-shade: var(--color-blue-dark);
|
||||||
--color-border-light: var(--color-gray-light-2);
|
--color-border-light: var(--color-gray-light-2);
|
||||||
--color-border: var(--color-gray-light-3);
|
--color-border: var(--color-gray-light-3);
|
||||||
--color-border-dark: var(--color-gray-medium);
|
|
||||||
--color-text-light: var(--color-white);
|
--color-text-light: var(--color-white);
|
||||||
--color-text-light-2: var(--color-gray-medium);
|
--color-text-light-2: var(--color-gray-medium);
|
||||||
--color-text-base: var(--color-gray-dark);
|
--color-text-base: var(--color-gray-dark);
|
||||||
|
|||||||
@@ -8,41 +8,27 @@ const hintsByCode = {
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
getResult (source) {
|
getResult (source) {
|
||||||
const result = {
|
const result = {}
|
||||||
columns: []
|
|
||||||
}
|
|
||||||
const values = {}
|
|
||||||
if (source.meta.fields) {
|
if (source.meta.fields) {
|
||||||
source.meta.fields.forEach(col => {
|
result.columns = source.meta.fields.map(col => col.trim())
|
||||||
const colName = col.trim()
|
result.values = source.data.map(row => {
|
||||||
result.columns.push(colName)
|
const resultRow = []
|
||||||
values[colName] = source.data.map(row => {
|
result.columns.forEach(col => { resultRow.push(row[col]) })
|
||||||
let value = row[col]
|
return resultRow
|
||||||
if (value instanceof Date) {
|
|
||||||
value = value.toISOString()
|
|
||||||
}
|
|
||||||
return value
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
} else {
|
} else {
|
||||||
for (let i = 0; i <= source.data[0].length - 1; i++) {
|
result.values = source.data
|
||||||
const colName = `col${i + 1}`
|
result.columns = []
|
||||||
result.columns.push(colName)
|
for (let i = 1; i <= source.data[0].length; i++) {
|
||||||
values[colName] = source.data.map(row => {
|
result.columns.push(`col${i}`)
|
||||||
let value = row[i]
|
|
||||||
if (value instanceof Date) {
|
|
||||||
value = value.toISOString()
|
|
||||||
}
|
|
||||||
return value
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
result.values = values
|
|
||||||
return result
|
return result
|
||||||
},
|
},
|
||||||
|
|
||||||
parse (file, config = {}) {
|
parse (file, config = {}) {
|
||||||
|
let parsedData = null
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
const defaultConfig = {
|
const defaultConfig = {
|
||||||
delimiter: '', // auto-detect
|
delimiter: '', // auto-detect
|
||||||
@@ -57,14 +43,22 @@ export default {
|
|||||||
worker: true,
|
worker: true,
|
||||||
comments: false,
|
comments: false,
|
||||||
step: undefined,
|
step: undefined,
|
||||||
complete: results => {
|
chunk: results => {
|
||||||
const res = {
|
if (parsedData === null) {
|
||||||
data: this.getResult(results),
|
parsedData = results
|
||||||
delimiter: results.meta.delimiter,
|
} else {
|
||||||
hasErrors: false,
|
parsedData.data = parsedData.data.concat(results.data)
|
||||||
rowCount: results.data.length
|
parsedData.errors = parsedData.errors.concat(results.errors)
|
||||||
}
|
}
|
||||||
res.messages = results.errors.map(msg => {
|
},
|
||||||
|
chunkSize: 1024 * 716,
|
||||||
|
complete: () => {
|
||||||
|
const res = {
|
||||||
|
data: this.getResult(parsedData),
|
||||||
|
delimiter: parsedData.meta.delimiter,
|
||||||
|
hasErrors: false
|
||||||
|
}
|
||||||
|
res.messages = parsedData.errors.map(msg => {
|
||||||
msg.type = msg.code === 'UndetectableDelimiter' ? 'info' : 'error'
|
msg.type = msg.code === 'UndetectableDelimiter' ? 'info' : 'error'
|
||||||
if (msg.type === 'error') res.hasErrors = true
|
if (msg.type === 'error') res.hasErrors = true
|
||||||
msg.hint = hintsByCode[msg.code]
|
msg.hint = hintsByCode[msg.code]
|
||||||
@@ -79,8 +73,6 @@ export default {
|
|||||||
downloadRequestHeaders: undefined,
|
downloadRequestHeaders: undefined,
|
||||||
downloadRequestBody: undefined,
|
downloadRequestBody: undefined,
|
||||||
skipEmptyLines: 'greedy',
|
skipEmptyLines: 'greedy',
|
||||||
chunk: undefined,
|
|
||||||
chunkSize: undefined,
|
|
||||||
fastMode: undefined,
|
fastMode: undefined,
|
||||||
beforeFirstChunk: undefined,
|
beforeFirstChunk: undefined,
|
||||||
withCredentials: undefined,
|
withCredentials: undefined,
|
||||||
|
|||||||
@@ -55,10 +55,9 @@
|
|||||||
:disabled="disableDialog"
|
:disabled="disableDialog"
|
||||||
/>
|
/>
|
||||||
<sql-table
|
<sql-table
|
||||||
v-if="previewData
|
v-if="previewData && (previewData.values.length > 0 || previewData.columns.length > 0)"
|
||||||
&& (previewData.rowCount > 0 || Object.keys(previewData).length > 0)
|
|
||||||
"
|
|
||||||
:data-set="previewData"
|
:data-set="previewData"
|
||||||
|
height="160"
|
||||||
class="preview-table"
|
class="preview-table"
|
||||||
:preview="true"
|
:preview="true"
|
||||||
/>
|
/>
|
||||||
@@ -256,7 +255,7 @@ export default {
|
|||||||
let end = new Date()
|
let end = new Date()
|
||||||
|
|
||||||
if (!parseResult.hasErrors) {
|
if (!parseResult.hasErrors) {
|
||||||
const rowCount = parseResult.rowCount
|
const rowCount = parseResult.data.values.length
|
||||||
let period = time.getPeriod(start, end)
|
let period = time.getPeriod(start, end)
|
||||||
parseCsvMsg.type = 'success'
|
parseCsvMsg.type = 'success'
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="db-uploader-container" :style="{ width }">
|
<div class="db-uploader-container" :style="{ width }">
|
||||||
<change-db-icon v-if="type === 'small'" @click="browse"/>
|
<change-db-icon v-if="type === 'small'" @click.native="browse"/>
|
||||||
<div v-if="type === 'illustrated'" class="drop-area-container">
|
<div v-if="type === 'illustrated'" class="drop-area-container">
|
||||||
<div
|
<div
|
||||||
class="drop-area"
|
class="drop-area"
|
||||||
@@ -110,8 +110,8 @@ export default {
|
|||||||
|
|
||||||
async finish () {
|
async finish () {
|
||||||
this.$store.commit('setDb', this.newDb)
|
this.$store.commit('setDb', this.newDb)
|
||||||
if (this.$route.path !== '/workspace') {
|
if (this.$route.path !== '/editor') {
|
||||||
this.$router.push('/workspace')
|
this.$router.push('/editor')
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
@@ -1,110 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div
|
|
||||||
:class="['icon-btn', { active }, { disabled }]"
|
|
||||||
@click="onClick"
|
|
||||||
@mouseenter="showTooltip($event, tooltipPosition)"
|
|
||||||
@mouseleave="hideTooltip"
|
|
||||||
>
|
|
||||||
<div class="icon"><slot /></div>
|
|
||||||
<div v-show="loading" class="icon-in-progress">
|
|
||||||
<loading-indicator />
|
|
||||||
</div>
|
|
||||||
<span v-if="tooltip" class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
|
||||||
{{ tooltip }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import tooltipMixin from '@/tooltipMixin'
|
|
||||||
import LoadingIndicator from '@/components/LoadingIndicator'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'SideBarButton',
|
|
||||||
props: ['active', 'disabled', 'tooltip', 'tooltipPosition', 'loading'],
|
|
||||||
components: { LoadingIndicator },
|
|
||||||
mixins: [tooltipMixin],
|
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.icon-btn {
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 26px;
|
|
||||||
height: 26px;
|
|
||||||
cursor: pointer;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
}
|
|
||||||
.icon-btn:hover {
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
border-radius: var(--border-radius-medium-2);
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-btn:hover .icon >>> path,
|
|
||||||
.icon-btn.active .icon >>> path,
|
|
||||||
.icon-btn:hover .icon >>> circle,
|
|
||||||
.icon-btn.active .icon >>> circle {
|
|
||||||
fill: var(--color-accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.disabled.icon-btn .icon >>> path,
|
|
||||||
.disabled.icon-btn .icon >>> circle {
|
|
||||||
fill: var(--color-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.disabled.icon-btn {
|
|
||||||
cursor: default;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.disabled.icon-btn:hover .icon >>> path {
|
|
||||||
fill: var(--color-border);
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon-in-progress {
|
|
||||||
position: absolute;
|
|
||||||
width: 26px;
|
|
||||||
height: 26px;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
will-change: opacity;
|
|
||||||
/*
|
|
||||||
We need to show loader in 1 sec after starting query execution. We can't do that with
|
|
||||||
setTimeout because the main thread can be busy by getting a result set from the web worker.
|
|
||||||
But we can use CSS animation for opacity. Opacity triggers changes only in the Composite Layer
|
|
||||||
stage in rendering waterfall. Hence it can be processed only with Compositor Thread while
|
|
||||||
the Main Thread processes a result set.
|
|
||||||
https://www.viget.com/articles/animation-performance-101-browser-under-the-hood/
|
|
||||||
*/
|
|
||||||
animation: show-loader 1s linear 0s 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes show-loader {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
99% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -49,7 +49,6 @@ export default {
|
|||||||
.paginator-continer {
|
.paginator-continer {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
line-height: 10px;
|
|
||||||
}
|
}
|
||||||
>>> .paginator-page-link {
|
>>> .paginator-page-link {
|
||||||
padding: 2px 3px;
|
padding: 2px 3px;
|
||||||
|
|||||||
@@ -17,21 +17,20 @@
|
|||||||
class="table-container"
|
class="table-container"
|
||||||
ref="table-container"
|
ref="table-container"
|
||||||
@scroll="onScrollTable"
|
@scroll="onScrollTable"
|
||||||
|
:style="{maxHeight: `${height}px`}"
|
||||||
>
|
>
|
||||||
<table ref="table" class="sqliteviz-table">
|
<table ref="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th v-for="(th, index) in columns" :key="index" ref="th">
|
<th v-for="(th,index) in dataSet.columns" :key="index" ref="th">
|
||||||
<div class="cell-data" :style="cellStyle">{{ th }}</div>
|
<div class="cell-data" :style="cellStyle">{{ th }}</div>
|
||||||
</th>
|
</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr v-for="rowIndex in currentPageData.count" :key="rowIndex">
|
<tr v-for="(row,index) in currentPageData" :key="index">
|
||||||
<td v-for="(col, colIndex) in columns" :key="colIndex">
|
<td v-for="(value, valIndex) in row" :key="valIndex">
|
||||||
<div class="cell-data" :style="cellStyle">
|
<div class="cell-data" :style="cellStyle">{{ value }}</div>
|
||||||
{{ dataSet.values[col][rowIndex - 1 + currentPageData.start] }}
|
|
||||||
</div>
|
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
@@ -40,7 +39,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="table-footer">
|
<div class="table-footer">
|
||||||
<div class="table-footer-count">
|
<div class="table-footer-count">
|
||||||
{{ rowCount }} {{rowCount === 1 ? 'row' : 'rows'}} retrieved
|
{{ dataSet.values.length}} {{dataSet.values.length === 1 ? 'row' : 'rows'}} retrieved
|
||||||
<span v-if="preview">for preview</span>
|
<span v-if="preview">for preview</span>
|
||||||
<span v-if="time">in {{ time }}</span>
|
<span v-if="time">in {{ time }}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -55,15 +54,7 @@ import Pager from './Pager'
|
|||||||
export default {
|
export default {
|
||||||
name: 'SqlTable',
|
name: 'SqlTable',
|
||||||
components: { Pager },
|
components: { Pager },
|
||||||
props: {
|
props: ['dataSet', 'time', 'height', 'preview'],
|
||||||
dataSet: Object,
|
|
||||||
time: String,
|
|
||||||
pageSize: {
|
|
||||||
type: Number,
|
|
||||||
default: 20
|
|
||||||
},
|
|
||||||
preview: Boolean
|
|
||||||
},
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
header: null,
|
header: null,
|
||||||
@@ -73,30 +64,20 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
columns () {
|
|
||||||
return this.dataSet.columns
|
|
||||||
},
|
|
||||||
rowCount () {
|
|
||||||
return this.dataSet.values[this.columns[0]].length
|
|
||||||
},
|
|
||||||
cellStyle () {
|
cellStyle () {
|
||||||
const eq = this.tableWidth / this.columns.length
|
const eq = this.tableWidth / this.dataSet.columns.length
|
||||||
|
|
||||||
return { maxWidth: `${Math.max(eq, 100)}px` }
|
return { maxWidth: `${Math.max(eq, 100)}px` }
|
||||||
},
|
},
|
||||||
|
pageSize () {
|
||||||
|
return Math.max(Math.floor(this.height / 40), 20)
|
||||||
|
},
|
||||||
pageCount () {
|
pageCount () {
|
||||||
return Math.ceil(this.rowCount / this.pageSize)
|
return Math.ceil(this.dataSet.values.length / this.pageSize)
|
||||||
},
|
},
|
||||||
currentPageData () {
|
currentPageData () {
|
||||||
const start = (this.currentPage - 1) * this.pageSize
|
const start = (this.currentPage - 1) * this.pageSize
|
||||||
let end = start + this.pageSize
|
return this.dataSet.values.slice(start, start + this.pageSize)
|
||||||
if (end > this.rowCount - 1) {
|
|
||||||
end = this.rowCount - 1
|
|
||||||
}
|
|
||||||
return {
|
|
||||||
start,
|
|
||||||
end,
|
|
||||||
count: end - start + 1
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|||||||
@@ -6,9 +6,9 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
@click.stop="$emit('click')"
|
||||||
@mouseenter="showTooltip"
|
@mouseover="showTooltip"
|
||||||
@mouseleave="hideTooltip"
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<g clip-path="url(#clip0)">
|
<g clip-path="url(#clip0)">
|
||||||
<path
|
<path
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
</clipPath>
|
</clipPath>
|
||||||
</defs>
|
</defs>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Add new table from CSV
|
Add new table from CSV
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -44,13 +44,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
export default {
|
export default {
|
||||||
name: 'AddTableIcon',
|
name: 'AddTableIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin],
|
||||||
props: ['tooltip'],
|
props: ['tooltip']
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -6,16 +6,16 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip"
|
@mouseover="showTooltip"
|
||||||
@mouseleave="hideTooltip"
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M3 10.5V12.75C3 14.25 5.2875 15.54 8.25 15.75V13.5825L8.3475 13.5C5.34 13.32 3 12.045 3 10.5ZM9 9.75C5.685 9.75 3 8.4075 3 6.75V9C3 10.6575 5.685 12 9 12C9.2925 12 9.5775 12 9.87 12L12.75 9.09C11.55 9.54 10.2825 9.75 9 9.75ZM9 2.25C5.685 2.25 3 3.5925 3 5.25C3 6.9075 5.685 8.25 9 8.25C12.315 8.25 15 6.9075 15 5.25C15 3.5925 12.315 2.25 9 2.25ZM15.75 8.3475C15.6375 8.3475 15.5325 8.3925 15.4575 8.475L14.7075 9.225L16.245 10.725L16.995 9.975C17.1525 9.825 17.16 9.57 16.995 9.3975L16.065 8.475C15.99 8.3925 15.885 8.3475 15.78 8.3475H15.75ZM14.28 9.66L9.75 14.205V15.75H11.295L15.84 11.1975L14.28 9.66Z"
|
d="M3 10.5V12.75C3 14.25 5.2875 15.54 8.25 15.75V13.5825L8.3475 13.5C5.34 13.32 3 12.045 3 10.5ZM9 9.75C5.685 9.75 3 8.4075 3 6.75V9C3 10.6575 5.685 12 9 12C9.2925 12 9.5775 12 9.87 12L12.75 9.09C11.55 9.54 10.2825 9.75 9 9.75ZM9 2.25C5.685 2.25 3 3.5925 3 5.25C3 6.9075 5.685 8.25 9 8.25C12.315 8.25 15 6.9075 15 5.25C15 3.5925 12.315 2.25 9 2.25ZM15.75 8.3475C15.6375 8.3475 15.5325 8.3925 15.4575 8.475L14.7075 9.225L16.245 10.725L16.995 9.975C17.1525 9.825 17.16 9.57 16.995 9.3975L16.065 8.475C15.99 8.3925 15.885 8.3475 15.78 8.3475H15.75ZM14.28 9.66L9.75 14.205V15.75H11.295L15.84 11.1975L14.28 9.66Z"
|
||||||
fill="#A2B1C6"
|
fill="#A2B1C6"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Load another database or CSV
|
Load another database or CSV
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -26,13 +26,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'changeDbIcon',
|
name: 'changeDbIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin]
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,22 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.41943 16V10H10.4194V16H8.41943Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.41943 16L2.41943 10H4.41943V16H2.41943Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M11.4194 16V7H13.4194V16H11.4194Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.4194 16V8H16.4194V16H14.4194Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M7.41943 12V16H5.41943V12H7.41943Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.4332 1.80676L16.6265 6.00001L15.9194 6.70712L12.4055 3.19326L5.93169 9.1691L1.71436 5.55424L2.36515 4.79499L5.90707 7.83092L12.4332 1.80676Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'ChartIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M13.5552 6.91522C13.7584 6.91357 13.9535 6.99442 14.096 7.13926L17.2582 10.3541C17.5486 10.6494 17.5447 11.1242 17.2494 11.4147C16.9541 11.7051 16.4793 11.7012 16.1888 11.4059L13.57 8.74357L9.29577 13.2318C9.01977 13.5216 8.56484 13.5436 8.2621 13.2819L5.35435 10.7677L2.03285 13.7321C1.72382 14.0079 1.24971 13.981 0.973901 13.6719C0.69809 13.3629 0.725022 12.8888 1.03406 12.613L4.8471 9.20986C5.12827 8.95892 5.55198 8.95559 5.83705 9.20208L8.70249 11.6797L13.0182 7.14796C13.1583 7.00084 13.3521 6.91686 13.5552 6.91522Z" fill="#A2B1C6"/>
|
|
||||||
<circle cx="5.50049" cy="6.00339" r="1.5" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.036 1.21788L1.96546 1.213C1.14046 1.213 0.465462 1.888 0.465462 2.713L0.464111 15.2821C0.464111 16.1071 1.13911 16.7821 1.96411 16.7821L16.0347 16.787C16.8674 16.787 17.5347 16.1121 17.5347 15.287L17.536 2.71788C17.536 1.88787 16.866 1.21788 16.036 1.21788ZM16.0374 2.71788L1.96424 2.713L1.96289 15.2773L16.036 15.2821L16.0374 2.71788Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'DataViewIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -6,16 +6,17 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip($event, tooltipPosition)"
|
@click.stop="$emit('click')"
|
||||||
@mouseleave="hideTooltip"
|
@mouseover="showTooltip"
|
||||||
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M10.5 1.5H4.5C3.675 1.5 3 2.175 3 3V15C3 15.825 3.675 16.5 4.5 16.5H13.5C14.325 16.5 15 15.825 15 15V6L10.5 1.5ZM13.5 15H4.5V3H9.75V6.75H13.5V15ZM12 8.25V13.575L10.425 12L8.325 14.1L6.225 12L8.325 9.9L6.675 8.25H12Z"
|
d="M10.5 1.5H4.5C3.675 1.5 3 2.175 3 3V15C3 15.825 3.675 16.5 4.5 16.5H13.5C14.325 16.5 15 15.825 15 15V6L10.5 1.5ZM13.5 15H4.5V3H9.75V6.75H13.5V15ZM12 8.25V13.575L10.425 12L8.325 14.1L6.225 12L8.325 9.9L6.675 8.25H12Z"
|
||||||
fill="#A2B1C6"
|
fill="#A2B1C6"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
{{ tooltip }}
|
{{ tooltip }}
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
@@ -27,13 +28,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
export default {
|
export default {
|
||||||
name: 'ExportIcon',
|
name: 'ExportIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin],
|
||||||
props: ['tooltip', 'tooltipPosition'],
|
props: ['tooltip']
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -6,14 +6,14 @@
|
|||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip"
|
@mouseover="showTooltip"
|
||||||
@mouseleave="hideTooltip"
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path d="M8.75 14.1666H10.4167V12.5H8.75V14.1666ZM9.58333 16.25C5.90833 16.25 2.91667 13.2583 2.91667 9.58333C2.91667 5.90833 5.90833 2.91667 9.58333 2.91667C13.2583 2.91667 16.25 5.90833 16.25 9.58333C16.25 13.2583 13.2583 16.25 9.58333 16.25ZM9.58333 1.25C8.48898 1.25 7.40535 1.46555 6.3943 1.88434C5.38326 2.30313 4.4646 2.91696 3.69078 3.69078C2.12797 5.25358 1.25 7.3732 1.25 9.58333C1.25 11.7935 2.12797 13.9131 3.69078 15.4759C4.4646 16.2497 5.38326 16.8635 6.3943 17.2823C7.40535 17.7011 8.48898 17.9167 9.58333 17.9167C11.7935 17.9167 13.9131 17.0387 15.4759 15.4759C17.0387 13.9131 17.9167 11.7935 17.9167 9.58333C17.9167 8.48898 17.7011 7.40535 17.2823 6.3943C16.8635 5.38326 16.2497 4.4646 15.4759 3.69078C14.7021 2.91696 13.7834 2.30313 12.7724 1.88434C11.7613 1.46555 10.6777 1.25 9.58333 1.25Z" fill="#A2B1C6"/>
|
<path d="M8.75 14.1666H10.4167V12.5H8.75V14.1666ZM9.58333 16.25C5.90833 16.25 2.91667 13.2583 2.91667 9.58333C2.91667 5.90833 5.90833 2.91667 9.58333 2.91667C13.2583 2.91667 16.25 5.90833 16.25 9.58333C16.25 13.2583 13.2583 16.25 9.58333 16.25ZM9.58333 1.25C8.48898 1.25 7.40535 1.46555 6.3943 1.88434C5.38326 2.30313 4.4646 2.91696 3.69078 3.69078C2.12797 5.25358 1.25 7.3732 1.25 9.58333C1.25 11.7935 2.12797 13.9131 3.69078 15.4759C4.4646 16.2497 5.38326 16.8635 6.3943 17.2823C7.40535 17.7011 8.48898 17.9167 9.58333 17.9167C11.7935 17.9167 13.9131 17.0387 15.4759 15.4759C17.0387 13.9131 17.9167 11.7935 17.9167 9.58333C17.9167 8.48898 17.7011 7.40535 17.2823 6.3943C16.8635 5.38326 16.2497 4.4646 15.4759 3.69078C14.7021 2.91696 13.7834 2.30313 12.7724 1.88434C11.7613 1.46555 10.6777 1.25 9.58333 1.25Z" fill="#A2B1C6"/>
|
||||||
<path d="M9.91601 4.51787C8.98167 4.42606 8.05144 4.69097 7.36309 5.24472C6.68735 5.78828 6.2998 6.56661 6.2998 7.38012H7.92488C7.92488 6.97463 8.11059 6.60187 8.44779 6.33061C8.79784 6.049 9.25647 5.92005 9.73896 5.96755C10.4832 6.04076 11.0828 6.57277 11.1647 7.23265C11.2306 7.764 10.9661 8.28194 10.4744 8.58426C9.38676 9.25303 8.73742 10.343 8.73742 11.5H10.3625C10.3625 10.8243 10.7477 10.184 11.3929 9.78733C12.3808 9.17985 12.9122 8.13913 12.7798 7.07124C12.6144 5.73863 11.41 4.66476 9.91601 4.51787Z" fill="#A2B1C6"/>
|
<path d="M9.91601 4.51787C8.98167 4.42606 8.05144 4.69097 7.36309 5.24472C6.68735 5.78828 6.2998 6.56661 6.2998 7.38012H7.92488C7.92488 6.97463 8.11059 6.60187 8.44779 6.33061C8.79784 6.049 9.25647 5.92005 9.73896 5.96755C10.4832 6.04076 11.0828 6.57277 11.1647 7.23265C11.2306 7.764 10.9661 8.28194 10.4744 8.58426C9.38676 9.25303 8.73742 10.343 8.73742 11.5H10.3625C10.3625 10.8243 10.7477 10.184 11.3929 9.78733C12.3808 9.17985 12.9122 8.13913 12.7798 7.07124C12.6144 5.73863 11.41 4.66476 9.91601 4.51787Z" fill="#A2B1C6"/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="{...tooltipStyle, maxWidth: maxWidth }" ref="tooltip">
|
<span class="icon-tooltip" :style="{...tooltipStyle, maxWidth: maxWidth }">
|
||||||
{{ hint }}
|
{{ hint }}
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -25,13 +25,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
export default {
|
export default {
|
||||||
name: 'HintIcon',
|
name: 'HintIcon',
|
||||||
props: ['hint', 'maxWidth'],
|
props: ['hint', 'maxWidth'],
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin]
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.7661 5.13901L18.3407 9.43008H16.5161V12.8467C16.5161 13.7957 16.2783 14.6451 15.6714 15.2521C15.0645 15.859 14.215 16.0967 13.2661 16.0967H9.84942V17.9214L5.55835 15.3467L9.84942 12.7721V14.5967H13.2661C13.9838 14.5967 14.3844 14.4178 14.6108 14.1914C14.8372 13.965 15.0161 13.5645 15.0161 12.8467V9.43008H13.1914L15.7661 5.13901Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M6.41943 0H18.4194V4H6.41943V0Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M0.419434 6H4.41943V18H0.419434V6Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M0.419434 0H4.41943V4H0.419434V0Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'PivotIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<path d="M9 5.51953C6.57686 5.51953 4.60547 7.49092 4.60547 9.91406C4.60547 12.3372 6.57686 14.3086 9 14.3086C11.4231 14.3086 13.3945 12.3372 13.3945 9.91406C13.3945 7.49092 11.4231 5.51953 9 5.51953ZM9 12.9023C7.35226 12.9023 6.01172 11.5618 6.01172 9.91406C6.01172 8.26632 7.35226 6.92578 9 6.92578C10.6477 6.92578 11.9883 8.26632 11.9883 9.91406C11.9883 11.5618 10.6477 12.9023 9 12.9023Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M15.8906 3.41016H13.304C13.2221 3.41016 13.1483 3.36547 13.1104 3.29319L12.3948 1.78945C12.3928 1.78534 12.3908 1.78126 12.3887 1.77718C12.1117 1.22312 11.5548 0.878906 10.9353 0.878906H7.11478C6.49529 0.878906 5.93835 1.22312 5.66135 1.77722C5.65928 1.7813 5.65731 1.78538 5.65534 1.78949L4.9397 3.2933C4.90173 3.36547 4.82797 3.41016 4.74609 3.41016H2.10938C0.946266 3.41016 0 4.35642 0 5.51953V15.0117C0 16.1748 0.946266 17.1211 2.10938 17.1211H15.8906C17.0537 17.1211 18 16.1748 18 15.0117V5.51953C18 4.35642 17.0537 3.41016 15.8906 3.41016ZM16.5938 15.0117C16.5938 15.3994 16.2783 15.7148 15.8906 15.7148H2.10938C1.72167 15.7148 1.40625 15.3994 1.40625 15.0117V5.51953C1.40625 5.13183 1.72167 4.81641 2.10938 4.81641H4.74609C5.36555 4.81641 5.92249 4.47223 6.19952 3.91816C6.2016 3.91409 6.20357 3.90997 6.20557 3.90586L6.92121 2.40205C6.95914 2.32984 7.0329 2.28516 7.11478 2.28516H10.9353C11.0172 2.28516 11.091 2.32984 11.1289 2.40202L11.8445 3.90582C11.8465 3.90994 11.8485 3.91405 11.8506 3.91813C12.1276 4.47219 12.6846 4.81637 13.304 4.81637H15.8906C16.2783 4.81637 16.5938 5.13179 16.5938 5.5195V15.0117Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M15.1875 6.22266H13.7812V7.62891H15.1875V6.22266Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 1.7 KiB |
@@ -1,18 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path d="M9 5.51953C6.57686 5.51953 4.60547 7.49092 4.60547 9.91406C4.60547 12.3372 6.57686 14.3086 9 14.3086C11.4231 14.3086 13.3945 12.3372 13.3945 9.91406C13.3945 7.49092 11.4231 5.51953 9 5.51953ZM9 12.9023C7.35226 12.9023 6.01172 11.5618 6.01172 9.91406C6.01172 8.26632 7.35226 6.92578 9 6.92578C10.6477 6.92578 11.9883 8.26632 11.9883 9.91406C11.9883 11.5618 10.6477 12.9023 9 12.9023Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M15.8906 3.41016H13.304C13.2221 3.41016 13.1483 3.36547 13.1104 3.29319L12.3948 1.78945C12.3928 1.78534 12.3908 1.78126 12.3887 1.77718C12.1117 1.22312 11.5548 0.878906 10.9353 0.878906H7.11478C6.49529 0.878906 5.93835 1.22312 5.66135 1.77722C5.65928 1.7813 5.65731 1.78538 5.65534 1.78949L4.9397 3.2933C4.90173 3.36547 4.82797 3.41016 4.74609 3.41016H2.10938C0.946266 3.41016 0 4.35642 0 5.51953V15.0117C0 16.1748 0.946266 17.1211 2.10938 17.1211H15.8906C17.0537 17.1211 18 16.1748 18 15.0117V5.51953C18 4.35642 17.0537 3.41016 15.8906 3.41016ZM16.5938 15.0117C16.5938 15.3994 16.2783 15.7148 15.8906 15.7148H2.10938C1.72167 15.7148 1.40625 15.3994 1.40625 15.0117V5.51953C1.40625 5.13183 1.72167 4.81641 2.10938 4.81641H4.74609C5.36555 4.81641 5.92249 4.47223 6.19952 3.91816C6.2016 3.91409 6.20357 3.90997 6.20557 3.90586L6.92121 2.40205C6.95914 2.32984 7.0329 2.28516 7.11478 2.28516H10.9353C11.0172 2.28516 11.091 2.32984 11.1289 2.40202L11.8445 3.90582C11.8465 3.90994 11.8485 3.91405 11.8506 3.91813C12.1276 4.47219 12.6846 4.81637 13.304 4.81637H15.8906C16.2783 4.81637 16.5938 5.13179 16.5938 5.5195V15.0117Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M15.1875 6.22266H13.7812V7.62891H15.1875V6.22266Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
export default {
|
|
||||||
name: 'PngIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="12"
|
|
||||||
height="13"
|
|
||||||
viewBox="0 0 12 13"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path d="M11.1624 6.94358L0.770043 12.9436L0.770043 0.943573L11.1624 6.94358Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'RunIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,45 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
:class="['sort-icon', { horizontal }, { asc }]"
|
|
||||||
width="6"
|
|
||||||
height="12"
|
|
||||||
viewBox="0 0 6 12"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path d="M2.99932 -3.63032e-05C2.75092 -3.63032e-05 2.54932 0.201563 2.54932 0.449964L2.54932 11.55C2.54932 11.7984 2.75092 12 2.99932 12C3.24772 12 3.44932 11.7984 3.44932 11.55L3.44932 0.449964C3.44932 0.201563 3.24772 -3.63032e-05 2.99932 -3.63032e-05Z" fill="#506784"/>
|
|
||||||
<path d="M2.99915 1.80492e-05C2.8839 1.80492e-05 2.76865 0.0438534 2.68109 0.132073L0.581055 2.232C0.405273 2.40789 0.405273 2.69287 0.581055 2.86865C0.756946 3.04443 1.04193 3.04443 1.21771 2.86865L2.99969 1.08667L4.78168 2.86865C4.95746 3.04443 5.24255 3.04443 5.41833 2.86865C5.59412 2.69287 5.59412 2.40789 5.41833 2.232L3.3183 0.132073C3.22953 0.0438534 3.11428 1.80492e-05 2.99915 1.80492e-05V1.80492e-05Z" fill="#506784"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'SortIcon',
|
|
||||||
props: {
|
|
||||||
horizontal: {
|
|
||||||
type: Boolean,
|
|
||||||
required: false,
|
|
||||||
default: false
|
|
||||||
},
|
|
||||||
asc: {
|
|
||||||
type: Boolean,
|
|
||||||
required: false,
|
|
||||||
default: true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
svg.asc {
|
|
||||||
transform: rotate(180deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
svg.horizontal {
|
|
||||||
transform: rotate(-90deg);
|
|
||||||
}
|
|
||||||
|
|
||||||
svg.horizontal.asc {
|
|
||||||
transform: rotate(90deg);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,25 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="19"
|
|
||||||
viewBox="0 0 18 19"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<g clip-path="url(#clip0)">
|
|
||||||
<path d="M4.5 1.51343H10.5L15 6.01343V8.45284H13.5V6.76343H9.75V3.01343H4.5V8.45284H3V3.01343C3 2.18843 3.675 1.51343 4.5 1.51343Z" fill="#A2B1C6"/>
|
|
||||||
<path d="M4.28369 14.8127C4.28369 14.5872 4.20312 14.4114 4.04199 14.2854C3.88379 14.1594 3.604 14.0291 3.20264 13.8943C2.80127 13.7595 2.47314 13.6292 2.21826 13.5032C1.38916 13.0959 0.974609 12.5364 0.974609 11.8245C0.974609 11.47 1.07715 11.158 1.28223 10.8884C1.49023 10.616 1.7832 10.405 2.16113 10.2556C2.53906 10.1033 2.96387 10.0271 3.43555 10.0271C3.89551 10.0271 4.30713 10.1091 4.67041 10.2732C5.03662 10.4373 5.3208 10.6716 5.52295 10.9763C5.7251 11.2781 5.82617 11.6238 5.82617 12.0134H4.28809C4.28809 11.7527 4.20752 11.5505 4.04639 11.407C3.88818 11.2634 3.67285 11.1917 3.40039 11.1917C3.125 11.1917 2.90674 11.2532 2.74561 11.3762C2.5874 11.4963 2.5083 11.6501 2.5083 11.8376C2.5083 12.0017 2.59619 12.1511 2.77197 12.2859C2.94775 12.4177 3.25684 12.5554 3.69922 12.699C4.1416 12.8396 4.50488 12.9919 4.78906 13.156C5.48047 13.5544 5.82617 14.1038 5.82617 14.804C5.82617 15.3635 5.61523 15.803 5.19336 16.1223C4.77148 16.4417 4.19287 16.6013 3.45752 16.6013C2.93896 16.6013 2.46875 16.509 2.04688 16.3245C1.62793 16.137 1.31152 15.8821 1.09766 15.5598C0.886719 15.2346 0.78125 14.8611 0.78125 14.4392H2.32812C2.32812 14.782 2.41602 15.0354 2.5918 15.1995C2.77051 15.3606 3.05908 15.4412 3.45752 15.4412C3.7124 15.4412 3.91309 15.387 4.05957 15.2786C4.20898 15.1672 4.28369 15.012 4.28369 14.8127ZM12.0444 13.446C12.0444 14.0378 11.9463 14.5549 11.75 14.9973C11.5537 15.4368 11.2827 15.7898 10.937 16.0564L11.9697 16.8738L11.0161 17.6824L9.64062 16.575C9.51172 16.5925 9.38281 16.6013 9.25391 16.6013C8.70898 16.6013 8.22559 16.4753 7.80371 16.2234C7.38184 15.9714 7.05225 15.6111 6.81494 15.1423C6.58057 14.6736 6.45898 14.1345 6.4502 13.5251V13.1868C6.4502 12.5569 6.56445 12.0032 6.79297 11.5256C7.02441 11.0481 7.35254 10.679 7.77734 10.4182C8.20508 10.1575 8.69434 10.0271 9.24512 10.0271C9.78711 10.0271 10.2705 10.156 10.6953 10.4138C11.1201 10.6716 11.4497 11.0393 11.6841 11.5168C11.9214 11.9915 12.0415 12.5364 12.0444 13.1516V13.446ZM10.4756 13.178C10.4756 12.5422 10.3687 12.0603 10.1548 11.7322C9.94385 11.4011 9.64062 11.2356 9.24512 11.2356C8.83789 11.2356 8.53174 11.3982 8.32666 11.7234C8.12158 12.0486 8.01758 12.5247 8.01465 13.1516V13.446C8.01465 14.0759 8.11865 14.5593 8.32666 14.8962C8.53467 15.2302 8.84375 15.3972 9.25391 15.3972C9.64648 15.3972 9.94678 15.2317 10.1548 14.9006C10.3657 14.5696 10.4727 14.0935 10.4756 13.4724V13.178ZM14.3735 15.3269H17.0586V16.5134H12.8311V10.115H14.3735V15.3269Z" fill="#A2B1C6"/>
|
|
||||||
</g>
|
|
||||||
<defs>
|
|
||||||
<clipPath id="clip0">
|
|
||||||
<rect width="18" height="18" fill="white" transform="translate(0 0.0134277)"/>
|
|
||||||
</clipPath>
|
|
||||||
</defs>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'SqlEditorIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
<template>
|
|
||||||
<svg
|
|
||||||
width="18"
|
|
||||||
height="18"
|
|
||||||
viewBox="0 0 18 18"
|
|
||||||
fill="none"
|
|
||||||
>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.5 2.16512L3.5 2.16999C2.675 2.16999 2 2.84499 2 3.66999V14.3349C2 15.1599 2.675 15.8349 3.5 15.8349L14.5 15.83C15.3327 15.83 16 15.1551 16 14.33V3.66512C16 2.83511 15.33 2.16512 14.5 2.16512ZM14.5014 3.66512L3.49878 3.66999V14.33L14.5014 14.3251V3.66512Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.27319 14.7069L6.27319 3.32135L7.77319 3.32135L7.77319 14.7069L6.27319 14.7069Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.2639 14.6932L10.2639 3.30772L11.7639 3.30772L11.7639 14.6932L10.2639 14.6932Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5108 7.48325H2.4895V5.98325H15.5108V7.48325Z" fill="#A2B1C6"/>
|
|
||||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M15.5108 11.6056H2.4895V10.1056H15.5108V11.6056Z" fill="#A2B1C6"/>
|
|
||||||
</svg>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'TableIcon'
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
@@ -4,17 +4,6 @@ import dbUtils from './_statements'
|
|||||||
let SQL = null
|
let SQL = null
|
||||||
const sqlModuleReady = initSqlJs().then(sqlModule => { SQL = sqlModule })
|
const sqlModuleReady = initSqlJs().then(sqlModule => { SQL = sqlModule })
|
||||||
|
|
||||||
function _getDataSourcesFromSqlResult (sqlResult) {
|
|
||||||
if (!sqlResult) {
|
|
||||||
return {}
|
|
||||||
}
|
|
||||||
const dataSorces = {}
|
|
||||||
sqlResult.columns.forEach((column, index) => {
|
|
||||||
dataSorces[column] = sqlResult.values.map(row => row[index])
|
|
||||||
})
|
|
||||||
return dataSorces
|
|
||||||
}
|
|
||||||
|
|
||||||
export default class Sql {
|
export default class Sql {
|
||||||
constructor () {
|
constructor () {
|
||||||
this.db = null
|
this.db = null
|
||||||
@@ -47,24 +36,16 @@ export default class Sql {
|
|||||||
if (!sql) {
|
if (!sql) {
|
||||||
throw new Error('exec: Missing query string')
|
throw new Error('exec: Missing query string')
|
||||||
}
|
}
|
||||||
const sqlResults = this.db.exec(sql, params)
|
return this.db.exec(sql, params)
|
||||||
return sqlResults.map(result => {
|
|
||||||
return {
|
|
||||||
columns: result.columns,
|
|
||||||
values: _getDataSourcesFromSqlResult(result)
|
|
||||||
}
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
||||||
import (tabName, data, progressCounterId, progressCallback, chunkSize = 1500) {
|
import (tabName, columns, values, progressCounterId, progressCallback, chunkSize = 1500) {
|
||||||
if (this.db === null) {
|
if (this.db === null) {
|
||||||
this.createDb()
|
this.createDb()
|
||||||
}
|
}
|
||||||
const columns = data.columns
|
this.db.exec(dbUtils.getCreateStatement(tabName, columns, values))
|
||||||
const rowCount = data.values[columns[0]].length
|
const chunks = dbUtils.generateChunks(values, chunkSize)
|
||||||
this.db.exec(dbUtils.getCreateStatement(tabName, data.values))
|
const chunksAmount = Math.ceil(values.length / chunkSize)
|
||||||
const chunks = dbUtils.generateChunks(data.values, chunkSize)
|
|
||||||
const chunksAmount = Math.ceil(rowCount / chunkSize)
|
|
||||||
let count = 0
|
let count = 0
|
||||||
const insertStr = dbUtils.getInsertStmt(tabName, columns)
|
const insertStr = dbUtils.getInsertStmt(tabName, columns)
|
||||||
const insertStmt = this.db.prepare(insertStr)
|
const insertStmt = this.db.prepare(insertStr)
|
||||||
|
|||||||
@@ -1,17 +1,13 @@
|
|||||||
import sqliteParser from 'sqlite-parser'
|
import sqliteParser from 'sqlite-parser'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
* generateChunks (data, size) {
|
* generateChunks (arr, size) {
|
||||||
const matrix = Object.keys(data).map(col => data[col])
|
const count = Math.ceil(arr.length / size)
|
||||||
const [row] = matrix
|
|
||||||
const transposedMatrix = row.map((value, column) => matrix.map(row => row[column]))
|
|
||||||
|
|
||||||
const count = Math.ceil(transposedMatrix.length / size)
|
|
||||||
|
|
||||||
for (let i = 0; i <= count - 1; i++) {
|
for (let i = 0; i <= count - 1; i++) {
|
||||||
const start = size * i
|
const start = size * i
|
||||||
const end = start + size
|
const end = start + size
|
||||||
yield transposedMatrix.slice(start, end)
|
yield arr.slice(start, end)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@@ -21,11 +17,11 @@ export default {
|
|||||||
return `INSERT INTO "${tabName}" (${colList}) VALUES (${params});`
|
return `INSERT INTO "${tabName}" (${colList}) VALUES (${params});`
|
||||||
},
|
},
|
||||||
|
|
||||||
getCreateStatement (tabName, data) {
|
getCreateStatement (tabName, columns, values) {
|
||||||
let result = `CREATE table "${tabName}"(`
|
let result = `CREATE table "${tabName}"(`
|
||||||
for (const col in data) {
|
columns.forEach((col, index) => {
|
||||||
// Get the first row of values to determine types
|
// Get the first row of values to determine types
|
||||||
const value = data[col][0]
|
const value = values[0][index]
|
||||||
let type = ''
|
let type = ''
|
||||||
switch (typeof value) {
|
switch (typeof value) {
|
||||||
case 'number': {
|
case 'number': {
|
||||||
@@ -43,8 +39,7 @@ export default {
|
|||||||
default: type = 'TEXT'
|
default: type = 'TEXT'
|
||||||
}
|
}
|
||||||
result += `"${col}" ${type}, `
|
result += `"${col}" ${type}, `
|
||||||
}
|
})
|
||||||
|
|
||||||
result = result.replace(/,\s$/, ');')
|
result = result.replace(/,\s$/, ');')
|
||||||
return result
|
return result
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,7 +15,8 @@ function processMsg (sql) {
|
|||||||
case 'import':
|
case 'import':
|
||||||
return sql.import(
|
return sql.import(
|
||||||
data.tabName,
|
data.tabName,
|
||||||
data.data,
|
data.columns,
|
||||||
|
data.values,
|
||||||
data.progressCounterId,
|
data.progressCounterId,
|
||||||
postMessage
|
postMessage
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -55,7 +55,8 @@ class Database {
|
|||||||
async addTableFromCsv (tabName, data, progressCounterId) {
|
async addTableFromCsv (tabName, data, progressCounterId) {
|
||||||
const result = await this.pw.postMessage({
|
const result = await this.pw.postMessage({
|
||||||
action: 'import',
|
action: 'import',
|
||||||
data,
|
columns: data.columns,
|
||||||
|
values: data.values,
|
||||||
progressCounterId,
|
progressCounterId,
|
||||||
tabName
|
tabName
|
||||||
})
|
})
|
||||||
@@ -88,11 +89,11 @@ class Database {
|
|||||||
const result = await this.execute(getSchemaSql)
|
const result = await this.execute(getSchemaSql)
|
||||||
// Parse DDL statements to get column names and types
|
// Parse DDL statements to get column names and types
|
||||||
const parsedSchema = []
|
const parsedSchema = []
|
||||||
if (result && result.values && result.values.name) {
|
if (result && result.values) {
|
||||||
result.values.name.forEach((table, index) => {
|
result.values.forEach(item => {
|
||||||
parsedSchema.push({
|
parsedSchema.push({
|
||||||
name: table,
|
name: item[0],
|
||||||
columns: stms.getColumns(result.values.sql[index])
|
columns: stms.getColumns(item[1])
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +0,0 @@
|
|||||||
export default {
|
|
||||||
_migrate (installedVersion, inquiries) {
|
|
||||||
if (installedVersion === 1) {
|
|
||||||
inquiries.forEach(inquire => {
|
|
||||||
inquire.viewType = 'chart'
|
|
||||||
inquire.viewOptions = inquire.chart
|
|
||||||
delete inquire.chart
|
|
||||||
})
|
|
||||||
return inquiries
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,120 +0,0 @@
|
|||||||
import { nanoid } from 'nanoid'
|
|
||||||
import fu from '@/lib/utils/fileIo'
|
|
||||||
import migration from './_migrations'
|
|
||||||
|
|
||||||
const migrate = migration._migrate
|
|
||||||
|
|
||||||
export default {
|
|
||||||
version: 2,
|
|
||||||
getStoredInquiries () {
|
|
||||||
let myInquiries = JSON.parse(localStorage.getItem('myInquiries'))
|
|
||||||
if (!myInquiries) {
|
|
||||||
const oldInquiries = localStorage.getItem('myQueries')
|
|
||||||
if (oldInquiries) {
|
|
||||||
myInquiries = migrate(1, JSON.parse(oldInquiries))
|
|
||||||
this.updateStorage(myInquiries)
|
|
||||||
return myInquiries
|
|
||||||
}
|
|
||||||
return []
|
|
||||||
}
|
|
||||||
|
|
||||||
return (myInquiries && myInquiries.inquiries) || []
|
|
||||||
},
|
|
||||||
|
|
||||||
duplicateInquiry (baseInquiry) {
|
|
||||||
const newInquiry = JSON.parse(JSON.stringify(baseInquiry))
|
|
||||||
newInquiry.name = newInquiry.name + ' Copy'
|
|
||||||
newInquiry.id = nanoid()
|
|
||||||
newInquiry.createdAt = new Date()
|
|
||||||
delete newInquiry.isPredefined
|
|
||||||
|
|
||||||
return newInquiry
|
|
||||||
},
|
|
||||||
|
|
||||||
isTabNeedName (inquiryTab) {
|
|
||||||
const isFromScratch = !inquiryTab.initName
|
|
||||||
return inquiryTab.isPredefined || isFromScratch
|
|
||||||
},
|
|
||||||
|
|
||||||
save (inquiryTab, newName) {
|
|
||||||
const value = {
|
|
||||||
id: inquiryTab.isPredefined ? nanoid() : inquiryTab.id,
|
|
||||||
query: inquiryTab.query,
|
|
||||||
viewType: inquiryTab.$refs.dataView.mode,
|
|
||||||
viewOptions: inquiryTab.$refs.dataView.getOptionsForSave(),
|
|
||||||
name: newName || inquiryTab.initName
|
|
||||||
}
|
|
||||||
|
|
||||||
// Get inquiries from local storage
|
|
||||||
const myInquiries = this.getStoredInquiries()
|
|
||||||
|
|
||||||
// Set createdAt
|
|
||||||
if (newName) {
|
|
||||||
value.createdAt = new Date()
|
|
||||||
} else {
|
|
||||||
var inquiryIndex = myInquiries.findIndex(oldInquiry => oldInquiry.id === inquiryTab.id)
|
|
||||||
value.createdAt = myInquiries[inquiryIndex].createdAt
|
|
||||||
}
|
|
||||||
|
|
||||||
// Insert in inquiries list
|
|
||||||
if (newName) {
|
|
||||||
myInquiries.push(value)
|
|
||||||
} else {
|
|
||||||
myInquiries[inquiryIndex] = value
|
|
||||||
}
|
|
||||||
|
|
||||||
// Save to local storage
|
|
||||||
this.updateStorage(myInquiries)
|
|
||||||
return value
|
|
||||||
},
|
|
||||||
|
|
||||||
updateStorage (inquiries) {
|
|
||||||
localStorage.setItem('myInquiries', JSON.stringify({ version: this.version, inquiries }))
|
|
||||||
},
|
|
||||||
|
|
||||||
serialiseInquiries (inquiryList) {
|
|
||||||
const preparedData = JSON.parse(JSON.stringify(inquiryList))
|
|
||||||
preparedData.forEach(inquiry => delete inquiry.isPredefined)
|
|
||||||
return JSON.stringify({ version: this.version, inquiries: preparedData }, null, 4)
|
|
||||||
},
|
|
||||||
|
|
||||||
deserialiseInquiries (str) {
|
|
||||||
const inquiries = JSON.parse(str)
|
|
||||||
let inquiryList = []
|
|
||||||
if (!inquiries.version) {
|
|
||||||
// Turn data into array if they are not
|
|
||||||
inquiryList = !Array.isArray(inquiries) ? [inquiries] : inquiries
|
|
||||||
inquiryList = migrate(1, inquiryList)
|
|
||||||
} else {
|
|
||||||
inquiryList = inquiries.inquiries || []
|
|
||||||
}
|
|
||||||
|
|
||||||
// Generate new ids if they are the same as existing inquiries
|
|
||||||
inquiryList.forEach(inquiry => {
|
|
||||||
const allInquiriesIds = this.getStoredInquiries().map(inquiry => inquiry.id)
|
|
||||||
if (allInquiriesIds.includes(inquiry.id)) {
|
|
||||||
inquiry.id = nanoid()
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
return inquiryList
|
|
||||||
},
|
|
||||||
|
|
||||||
importInquiries () {
|
|
||||||
return fu.importFile()
|
|
||||||
.then(str => {
|
|
||||||
return this.deserialiseInquiries(str)
|
|
||||||
})
|
|
||||||
},
|
|
||||||
|
|
||||||
async readPredefinedInquiries () {
|
|
||||||
const res = await fu.readFile('./inquiries.json')
|
|
||||||
const data = await res.json()
|
|
||||||
|
|
||||||
if (!data.version) {
|
|
||||||
return data.length > 0 ? migrate(1, data) : []
|
|
||||||
} else {
|
|
||||||
return data.inquiries
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
96
src/lib/storedQueries.js
Normal file
96
src/lib/storedQueries.js
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
import { nanoid } from 'nanoid'
|
||||||
|
import fu from '@/lib/utils/fileIo'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
getStoredQueries () {
|
||||||
|
return JSON.parse(localStorage.getItem('myQueries')) || []
|
||||||
|
},
|
||||||
|
|
||||||
|
duplicateQuery (baseQuery) {
|
||||||
|
const newQuery = JSON.parse(JSON.stringify(baseQuery))
|
||||||
|
newQuery.name = newQuery.name + ' Copy'
|
||||||
|
newQuery.id = nanoid()
|
||||||
|
newQuery.createdAt = new Date()
|
||||||
|
delete newQuery.isPredefined
|
||||||
|
|
||||||
|
return newQuery
|
||||||
|
},
|
||||||
|
|
||||||
|
isTabNeedName (queryTab) {
|
||||||
|
const isFromScratch = !queryTab.initName
|
||||||
|
return queryTab.isPredefined || isFromScratch
|
||||||
|
},
|
||||||
|
|
||||||
|
save (queryTab, newName) {
|
||||||
|
const value = {
|
||||||
|
id: queryTab.isPredefined ? nanoid() : queryTab.id,
|
||||||
|
query: queryTab.query,
|
||||||
|
chart: queryTab.$refs.chart.getChartStateForSave(),
|
||||||
|
name: newName || queryTab.initName
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get queries from local storage
|
||||||
|
const myQueries = this.getStoredQueries()
|
||||||
|
|
||||||
|
// Set createdAt
|
||||||
|
if (newName) {
|
||||||
|
value.createdAt = new Date()
|
||||||
|
} else {
|
||||||
|
var queryIndex = myQueries.findIndex(oldQuery => oldQuery.id === queryTab.id)
|
||||||
|
value.createdAt = myQueries[queryIndex].createdAt
|
||||||
|
}
|
||||||
|
|
||||||
|
// Insert in queries list
|
||||||
|
if (newName) {
|
||||||
|
myQueries.push(value)
|
||||||
|
} else {
|
||||||
|
myQueries[queryIndex] = value
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save to local storage
|
||||||
|
this.updateStorage(myQueries)
|
||||||
|
return value
|
||||||
|
},
|
||||||
|
|
||||||
|
updateStorage (value) {
|
||||||
|
localStorage.setItem('myQueries', JSON.stringify(value))
|
||||||
|
},
|
||||||
|
|
||||||
|
serialiseQueries (queryList) {
|
||||||
|
const preparedData = JSON.parse(JSON.stringify(queryList))
|
||||||
|
preparedData.forEach(query => delete query.isPredefined)
|
||||||
|
return JSON.stringify(preparedData, null, 4)
|
||||||
|
},
|
||||||
|
|
||||||
|
deserialiseQueries (str) {
|
||||||
|
let queryList = JSON.parse(str)
|
||||||
|
// Turn data into array if they are not
|
||||||
|
if (!Array.isArray(queryList)) {
|
||||||
|
queryList = [queryList]
|
||||||
|
}
|
||||||
|
|
||||||
|
// Generate new ids if they are the same as existing queries
|
||||||
|
queryList.forEach(query => {
|
||||||
|
const allQueriesIds = this.getStoredQueries().map(query => query.id)
|
||||||
|
if (allQueriesIds.includes(query.id)) {
|
||||||
|
query.id = nanoid()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
return queryList
|
||||||
|
},
|
||||||
|
|
||||||
|
importQueries () {
|
||||||
|
return fu.importFile()
|
||||||
|
.then(data => {
|
||||||
|
return this.deserialiseQueries(data)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
|
||||||
|
readPredefinedQueries () {
|
||||||
|
return fu.readFile('./queries.json')
|
||||||
|
.then(resp => {
|
||||||
|
return resp.json()
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -10,9 +10,11 @@ export default {
|
|||||||
return file.name.replace(/\.[^.]+$/, '')
|
return file.name.replace(/\.[^.]+$/, '')
|
||||||
},
|
},
|
||||||
|
|
||||||
downloadFromUrl (url, fileName) {
|
exportToFile (str, fileName, type = 'octet/stream') {
|
||||||
// Create downloader
|
// Create downloader
|
||||||
const downloader = document.createElement('a')
|
const downloader = document.createElement('a')
|
||||||
|
const blob = new Blob([str], { type })
|
||||||
|
const url = URL.createObjectURL(blob)
|
||||||
downloader.href = url
|
downloader.href = url
|
||||||
downloader.download = fileName
|
downloader.download = fileName
|
||||||
|
|
||||||
@@ -23,12 +25,6 @@ export default {
|
|||||||
URL.revokeObjectURL(url)
|
URL.revokeObjectURL(url)
|
||||||
},
|
},
|
||||||
|
|
||||||
async exportToFile (str, fileName, type = 'octet/stream') {
|
|
||||||
const blob = new Blob([str], { type })
|
|
||||||
const url = URL.createObjectURL(blob)
|
|
||||||
this.downloadFromUrl(url, fileName)
|
|
||||||
},
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Note: if user press Cancel in file choosing dialog
|
* Note: if user press Cancel in file choosing dialog
|
||||||
* it will be an unsettled promise. But it's grabbed by
|
* it will be an unsettled promise. But it's grabbed by
|
||||||
|
|||||||
@@ -11,8 +11,6 @@ import '@/assets/styles/tables.css'
|
|||||||
import '@/assets/styles/dialogs.css'
|
import '@/assets/styles/dialogs.css'
|
||||||
import '@/assets/styles/tooltips.css'
|
import '@/assets/styles/tooltips.css'
|
||||||
import '@/assets/styles/messages.css'
|
import '@/assets/styles/messages.css'
|
||||||
import 'vue-multiselect/dist/vue-multiselect.min.css'
|
|
||||||
import '@/assets/styles/multiselect.css'
|
|
||||||
|
|
||||||
if (!['localhost', '127.0.0.1'].includes(location.hostname)) {
|
if (!['localhost', '127.0.0.1'].includes(location.hostname)) {
|
||||||
import('./registerServiceWorker') // eslint-disable-line no-unused-expressions
|
import('./registerServiceWorker') // eslint-disable-line no-unused-expressions
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import Vue from 'vue'
|
import Vue from 'vue'
|
||||||
import VueRouter from 'vue-router'
|
import VueRouter from 'vue-router'
|
||||||
import Workspace from '@/views/Main/Workspace'
|
import Editor from '@/views/Main/Editor'
|
||||||
import Inquiries from '@/views/Main/Inquiries'
|
import MyQueries from '@/views/Main/MyQueries'
|
||||||
import Welcome from '@/views/Welcome'
|
import Welcome from '@/views/Welcome'
|
||||||
import Main from '@/views/Main'
|
import Main from '@/views/Main'
|
||||||
import store from '@/store'
|
import store from '@/store'
|
||||||
@@ -21,14 +21,14 @@ const routes = [
|
|||||||
component: Main,
|
component: Main,
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: '/workspace',
|
path: '/editor',
|
||||||
name: 'Workspace',
|
name: 'Editor',
|
||||||
component: Workspace
|
component: Editor
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/inquiries',
|
path: '/my-queries',
|
||||||
name: 'Inquiries',
|
name: 'MyQueries',
|
||||||
component: Inquiries
|
component: MyQueries
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,18 +5,16 @@ export default {
|
|||||||
const tab = data ? JSON.parse(JSON.stringify(data)) : {}
|
const tab = data ? JSON.parse(JSON.stringify(data)) : {}
|
||||||
// If no data then create a new blank one...
|
// If no data then create a new blank one...
|
||||||
// No data.id means to create new tab, but not blank,
|
// No data.id means to create new tab, but not blank,
|
||||||
// e.g. with 'select * from csv_import' inquiry after csv import
|
// e.g. with 'select * from csv_import' query after csv import
|
||||||
if (!data || !data.id) {
|
if (!data || !data.id) {
|
||||||
tab.id = nanoid()
|
tab.id = nanoid()
|
||||||
tab.name = null
|
tab.name = null
|
||||||
tab.tempName = state.untitledLastIndex
|
tab.tempName = state.untitledLastIndex
|
||||||
? `Untitled ${state.untitledLastIndex}`
|
? `Untitled ${state.untitledLastIndex}`
|
||||||
: 'Untitled'
|
: 'Untitled'
|
||||||
tab.viewType = 'chart'
|
tab.isUnsaved = true
|
||||||
tab.viewOptions = undefined
|
|
||||||
tab.isSaved = false
|
|
||||||
} else {
|
} else {
|
||||||
tab.isSaved = true
|
tab.isUnsaved = false
|
||||||
}
|
}
|
||||||
|
|
||||||
// add new tab only if was not already opened
|
// add new tab only if was not already opened
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ export default {
|
|||||||
state.db = db
|
state.db = db
|
||||||
},
|
},
|
||||||
|
|
||||||
updateTab (state, { index, name, id, query, viewType, viewOptions, isSaved }) {
|
updateTab (state, { index, name, id, query, chart, isUnsaved }) {
|
||||||
const tab = state.tabs[index]
|
const tab = state.tabs[index]
|
||||||
const oldId = tab.id
|
const oldId = tab.id
|
||||||
|
|
||||||
@@ -19,17 +19,15 @@ export default {
|
|||||||
if (id) { tab.id = id }
|
if (id) { tab.id = id }
|
||||||
if (name) { tab.name = name }
|
if (name) { tab.name = name }
|
||||||
if (query) { tab.query = query }
|
if (query) { tab.query = query }
|
||||||
if (viewType) { tab.viewType = viewType }
|
if (chart) { tab.chart = chart }
|
||||||
if (viewOptions) { tab.viewOptions = viewOptions }
|
if (isUnsaved !== undefined) { tab.isUnsaved = isUnsaved }
|
||||||
if (isSaved !== undefined) { tab.isSaved = isSaved }
|
if (!isUnsaved) {
|
||||||
if (isSaved) {
|
// Saved query is not predefined
|
||||||
// Saved inquiry is not predefined
|
|
||||||
delete tab.isPredefined
|
delete tab.isPredefined
|
||||||
}
|
}
|
||||||
|
|
||||||
Vue.set(state.tabs, index, tab)
|
Vue.set(state.tabs, index, tab)
|
||||||
},
|
},
|
||||||
|
|
||||||
deleteTab (state, index) {
|
deleteTab (state, index) {
|
||||||
// If closing tab is the current opened
|
// If closing tab is the current opened
|
||||||
if (state.tabs[index].id === state.currentTabId) {
|
if (state.tabs[index].id === state.currentTabId) {
|
||||||
@@ -51,7 +49,11 @@ export default {
|
|||||||
setCurrentTab (state, tab) {
|
setCurrentTab (state, tab) {
|
||||||
state.currentTab = tab
|
state.currentTab = tab
|
||||||
},
|
},
|
||||||
updatePredefinedInquiries (state, inquiries) {
|
updatePredefinedQueries (state, queries) {
|
||||||
state.predefinedInquiries = Array.isArray(inquiries) ? inquiries : [inquiries]
|
if (Array.isArray(queries)) {
|
||||||
|
state.predefinedQueries = queries
|
||||||
|
} else {
|
||||||
|
state.predefinedQueries = [queries]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,6 @@ export default {
|
|||||||
currentTab: null,
|
currentTab: null,
|
||||||
currentTabId: null,
|
currentTabId: null,
|
||||||
untitledLastIndex: 0,
|
untitledLastIndex: 0,
|
||||||
predefinedInquiries: [],
|
predefinedQueries: [],
|
||||||
db: null
|
db: null
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,28 +6,10 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
|
||||||
tooltipElement () {
|
|
||||||
return this.$refs.tooltip
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
methods: {
|
||||||
showTooltip (e, tooltipPosition) {
|
showTooltip (e) {
|
||||||
const position = tooltipPosition ? tooltipPosition.split('-') : ['top', 'right']
|
this.tooltipStyle.top = e.clientY - 12 + 'px'
|
||||||
const offset = 12
|
this.tooltipStyle.left = e.clientX + 12 + 'px'
|
||||||
|
|
||||||
if (position[0] === 'top') {
|
|
||||||
this.tooltipStyle.top = e.clientY - offset + 'px'
|
|
||||||
} else {
|
|
||||||
this.tooltipStyle.top = e.clientY + offset + 'px'
|
|
||||||
}
|
|
||||||
|
|
||||||
if (position[1] === 'right') {
|
|
||||||
this.tooltipStyle.left = e.clientX + offset + 'px'
|
|
||||||
} else {
|
|
||||||
this.tooltipStyle.left = e.clientX - offset - this.tooltipElement.offsetWidth + 'px'
|
|
||||||
}
|
|
||||||
|
|
||||||
this.tooltipStyle.visibility = 'visible'
|
this.tooltipStyle.visibility = 'visible'
|
||||||
},
|
},
|
||||||
hideTooltip () {
|
hideTooltip () {
|
||||||
|
|||||||
@@ -44,16 +44,16 @@ export default {
|
|||||||
|
|
||||||
async created () {
|
async created () {
|
||||||
const state = this.$store.state
|
const state = this.$store.state
|
||||||
let result = (await state.db.execute('select sqlite_version()')).values
|
let result = await state.db.execute('select sqlite_version()')
|
||||||
this.info.push({
|
this.info.push({
|
||||||
name: 'SQLite version',
|
name: 'SQLite version',
|
||||||
info: result['sqlite_version()']
|
info: result.values[0]
|
||||||
})
|
})
|
||||||
|
|
||||||
result = (await state.db.execute('PRAGMA compile_options')).values
|
result = await state.db.execute('PRAGMA compile_options')
|
||||||
this.info.push({
|
this.info.push({
|
||||||
name: 'SQLite compile options',
|
name: 'SQLite compile options',
|
||||||
info: result.compile_options
|
info: result.values.map(row => row[0])
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,27 @@
|
|||||||
import dereference from 'react-chart-editor/lib/lib/dereference'
|
import dereference from 'react-chart-editor/lib/lib/dereference'
|
||||||
|
|
||||||
export function getOptionsFromDataSources (dataSources) {
|
export function getDataSourcesFromSqlResult (sqlResult) {
|
||||||
if (!dataSources) {
|
if (!sqlResult) {
|
||||||
return []
|
return {}
|
||||||
}
|
}
|
||||||
|
const dataSorces = {}
|
||||||
|
const matrix = sqlResult.values
|
||||||
|
const [row] = matrix
|
||||||
|
const transposedMatrix = row.map((value, column) => matrix.map(row => row[column]))
|
||||||
|
sqlResult.columns.forEach((column, index) => {
|
||||||
|
dataSorces[column] = transposedMatrix[index]
|
||||||
|
})
|
||||||
|
return dataSorces
|
||||||
|
}
|
||||||
|
|
||||||
|
export function getOptionsFromDataSources (dataSources) {
|
||||||
return Object.keys(dataSources).map(name => ({
|
return Object.keys(dataSources).map(name => ({
|
||||||
value: name,
|
value: name,
|
||||||
label: name
|
label: name
|
||||||
}))
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getOptionsForSave (state, dataSources) {
|
export function getChartStateForSave (state, dataSources) {
|
||||||
// we don't need to save the data, only settings
|
// we don't need to save the data, only settings
|
||||||
// so we modify state.data using dereference
|
// so we modify state.data using dereference
|
||||||
const stateCopy = JSON.parse(JSON.stringify(state))
|
const stateCopy = JSON.parse(JSON.stringify(state))
|
||||||
@@ -24,6 +34,7 @@ export function getOptionsForSave (state, dataSources) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
getDataSourcesFromSqlResult,
|
||||||
getOptionsFromDataSources,
|
getOptionsFromDataSources,
|
||||||
getOptionsForSave
|
getChartStateForSave
|
||||||
}
|
}
|
||||||
98
src/views/Main/Editor/Tabs/Tab/Chart/index.vue
Normal file
98
src/views/Main/Editor/Tabs/Tab/Chart/index.vue
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
<template>
|
||||||
|
<div v-show="visible" class="chart-container">
|
||||||
|
<div class="warning chart-warning" v-show="!sqlResult && visible">
|
||||||
|
There is no data to build a chart. Run your sql query and make sure the result is not empty.
|
||||||
|
</div>
|
||||||
|
<PlotlyEditor
|
||||||
|
:data="state.data"
|
||||||
|
:layout="state.layout"
|
||||||
|
:frames="state.frames"
|
||||||
|
:config="{ editable: true, displaylogo: false }"
|
||||||
|
:dataSources="dataSources"
|
||||||
|
:dataSourceOptions="dataSourceOptions"
|
||||||
|
:plotly="plotly"
|
||||||
|
@onUpdate="update"
|
||||||
|
@onRender="go"
|
||||||
|
:useResizeHandler="true"
|
||||||
|
:debug="true"
|
||||||
|
:advancedTraceTypeSelector="true"
|
||||||
|
class="chart"
|
||||||
|
ref="plotlyEditor"
|
||||||
|
:style="{ height: !sqlResult ? 'calc(100% - 40px)' : '100%' }"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import plotly from 'plotly.js/dist/plotly'
|
||||||
|
import 'react-chart-editor/lib/react-chart-editor.min.css'
|
||||||
|
|
||||||
|
import PlotlyEditor from 'react-chart-editor'
|
||||||
|
import chartHelper from './chartHelper'
|
||||||
|
import dereference from 'react-chart-editor/lib/lib/dereference'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Chart',
|
||||||
|
props: ['sqlResult', 'initChart', 'visible'],
|
||||||
|
components: {
|
||||||
|
PlotlyEditor
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
plotly: plotly,
|
||||||
|
state: this.initChart || {
|
||||||
|
data: [],
|
||||||
|
layout: {},
|
||||||
|
frames: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
dataSources () {
|
||||||
|
return chartHelper.getDataSourcesFromSqlResult(this.sqlResult)
|
||||||
|
},
|
||||||
|
dataSourceOptions () {
|
||||||
|
return chartHelper.getOptionsFromDataSources(this.dataSources)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
dataSources () {
|
||||||
|
// we need to update state.data in order to update the graph
|
||||||
|
// https://github.com/plotly/react-chart-editor/issues/948
|
||||||
|
dereference(this.state.data, this.dataSources)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
go (data, layout, frames) {
|
||||||
|
// TODO: check changes and enable Save button if needed
|
||||||
|
},
|
||||||
|
update (data, layout, frames) {
|
||||||
|
this.state = { data, layout, frames }
|
||||||
|
this.$emit('update')
|
||||||
|
},
|
||||||
|
getChartStateForSave () {
|
||||||
|
return chartHelper.getChartStateForSave(this.state, this.dataSources)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.chart-container {
|
||||||
|
height: calc(100% - 89px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.chart-warning {
|
||||||
|
height: 40px;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chart {
|
||||||
|
border-top: 1px solid var(--color-border);
|
||||||
|
min-height: 242px;
|
||||||
|
}
|
||||||
|
|
||||||
|
>>> .editor_controls .sidebar__item:before {
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -1,24 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="sql-editor-panel">
|
<div class="codemirror-container">
|
||||||
<div class="codemirror-container">
|
<codemirror ref="cm" v-model="query" :options="cmOptions" @changes="onChange" />
|
||||||
<codemirror
|
|
||||||
ref="cm"
|
|
||||||
v-model="query"
|
|
||||||
:options="cmOptions"
|
|
||||||
@changes="onChange"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<side-tool-bar panel="sqlEditor" @switchTo="$emit('switchTo', $event)">
|
|
||||||
<icon-button
|
|
||||||
:disabled="runDisabled"
|
|
||||||
:loading="isGettingResults"
|
|
||||||
tooltip="Run SQL query"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
@click="$emit('run')"
|
|
||||||
>
|
|
||||||
<run-icon :disabled="runDisabled"/>
|
|
||||||
</icon-button>
|
|
||||||
</side-tool-bar>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -31,23 +13,16 @@ import 'codemirror/mode/sql/sql.js'
|
|||||||
import 'codemirror/theme/neo.css'
|
import 'codemirror/theme/neo.css'
|
||||||
import 'codemirror/addon/hint/show-hint.css'
|
import 'codemirror/addon/hint/show-hint.css'
|
||||||
import 'codemirror/addon/display/autorefresh.js'
|
import 'codemirror/addon/display/autorefresh.js'
|
||||||
import SideToolBar from '../SideToolBar'
|
|
||||||
import IconButton from '@/components/IconButton'
|
|
||||||
import RunIcon from '@/components/svg/run'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'SqlEditor',
|
name: 'SqlEditor',
|
||||||
props: ['value', 'isGettingResults'],
|
props: ['value'],
|
||||||
components: {
|
components: { codemirror },
|
||||||
codemirror,
|
|
||||||
SideToolBar,
|
|
||||||
IconButton,
|
|
||||||
RunIcon
|
|
||||||
},
|
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
query: this.value,
|
query: this.value,
|
||||||
cmOptions: {
|
cmOptions: {
|
||||||
|
// codemirror options
|
||||||
tabSize: 4,
|
tabSize: 4,
|
||||||
mode: 'text/x-mysql',
|
mode: 'text/x-mysql',
|
||||||
theme: 'neo',
|
theme: 'neo',
|
||||||
@@ -58,11 +33,6 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
|
||||||
runDisabled () {
|
|
||||||
return (!this.$store.state.db || !this.query || this.isGettingResults)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
watch: {
|
||||||
query () {
|
query () {
|
||||||
this.$emit('input', this.query)
|
this.$emit('input', this.query)
|
||||||
@@ -78,18 +48,9 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.sql-editor-panel {
|
|
||||||
display: flex;
|
|
||||||
flex-grow: 1;
|
|
||||||
height: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
box-sizing: border-box;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.codemirror-container {
|
.codemirror-container {
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
overflow: auto;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
>>> .vue-codemirror {
|
>>> .vue-codemirror {
|
||||||
67
src/views/Main/Editor/Tabs/Tab/ViewSwitcher.vue
Normal file
67
src/views/Main/Editor/Tabs/Tab/ViewSwitcher.vue
Normal file
@@ -0,0 +1,67 @@
|
|||||||
|
<template>
|
||||||
|
<div class="view-switcher">
|
||||||
|
<div
|
||||||
|
:class="['table-mode', {'active-mode': view === 'table'}]"
|
||||||
|
@click="$emit('update:view','table')"
|
||||||
|
>
|
||||||
|
Table
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
:class="['chart-mode', {'active-mode': view === 'chart'}]"
|
||||||
|
@click="$emit('update:view','chart')"
|
||||||
|
>
|
||||||
|
Chart
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'ViewSwitcher',
|
||||||
|
props: ['view']
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.view-switcher {
|
||||||
|
height: 28px;
|
||||||
|
display: flex;
|
||||||
|
padding: 30px;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.view-switcher div {
|
||||||
|
height: 100%;
|
||||||
|
width: 136px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
line-height: 28px;
|
||||||
|
font-size: 12px;
|
||||||
|
cursor: pointer;
|
||||||
|
background: var(--color-white);
|
||||||
|
border: 1px solid var(--color-border);
|
||||||
|
color: var(--color-text-base);
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
.view-switcher div:hover {
|
||||||
|
background-color: var(--color-bg-light);
|
||||||
|
color: var(--color-text-active);
|
||||||
|
}
|
||||||
|
.view-switcher div.active-mode {
|
||||||
|
background: var(--color-accent);
|
||||||
|
border: 1px solid var(--color-accent-shade);
|
||||||
|
color: var(--color-text-light);
|
||||||
|
text-shadow: var(--shadow);
|
||||||
|
z-index: 1;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.view-switcher div.active-mode:hover {
|
||||||
|
background: var(--color-accent-shade);
|
||||||
|
}
|
||||||
|
.table-mode {
|
||||||
|
border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
|
||||||
|
}
|
||||||
|
.chart-mode {
|
||||||
|
margin-left: -1px;
|
||||||
|
border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
225
src/views/Main/Editor/Tabs/Tab/index.vue
Normal file
225
src/views/Main/Editor/Tabs/Tab/index.vue
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
<template>
|
||||||
|
<div class="tab-content-container" v-show="isActive">
|
||||||
|
<splitpanes
|
||||||
|
class="query-results-splitter"
|
||||||
|
horizontal
|
||||||
|
:before="{ size: 50, max: 100 }"
|
||||||
|
:after="{ size: 50, max: 100 }"
|
||||||
|
>
|
||||||
|
<template #left-pane>
|
||||||
|
<div class="query-editor">
|
||||||
|
<sql-editor ref="sqlEditor" v-model="query" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #right-pane>
|
||||||
|
<div id="bottomPane" ref="bottomPane">
|
||||||
|
<view-switcher :view.sync="view" />
|
||||||
|
<div v-show="view === 'table'" class="table-view">
|
||||||
|
<div
|
||||||
|
v-show="result === null && !isGettingResults && !error"
|
||||||
|
class="table-preview result-before"
|
||||||
|
>
|
||||||
|
Run your query and get results here
|
||||||
|
</div>
|
||||||
|
<div v-if="isGettingResults" class="table-preview result-in-progress">
|
||||||
|
<loading-indicator :size="30"/>
|
||||||
|
Fetching results...
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
v-show="result === undefined && !isGettingResults && !error"
|
||||||
|
class="table-preview result-empty"
|
||||||
|
>
|
||||||
|
No rows retrieved according to your query
|
||||||
|
</div>
|
||||||
|
<logs v-if="error" :messages="[error]"/>
|
||||||
|
<sql-table v-if="result" :data-set="result" :time="time" :height="tableViewHeight" />
|
||||||
|
</div>
|
||||||
|
<chart
|
||||||
|
:visible="view === 'chart'"
|
||||||
|
:sql-result="result"
|
||||||
|
:init-chart="initChart"
|
||||||
|
ref="chart"
|
||||||
|
@update="$store.commit('updateTab', { index: tabIndex, isUnsaved: true })"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</splitpanes>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import SqlTable from '@/components/SqlTable'
|
||||||
|
import Splitpanes from '@/components/Splitpanes'
|
||||||
|
import LoadingIndicator from '@/components/LoadingIndicator'
|
||||||
|
import SqlEditor from './SqlEditor'
|
||||||
|
import ViewSwitcher from './ViewSwitcher'
|
||||||
|
import Chart from './Chart'
|
||||||
|
import Logs from '@/components/Logs'
|
||||||
|
import time from '@/lib/utils/time'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Tab',
|
||||||
|
props: ['id', 'initName', 'initQuery', 'initChart', 'tabIndex', 'isPredefined'],
|
||||||
|
components: {
|
||||||
|
SqlEditor,
|
||||||
|
SqlTable,
|
||||||
|
Splitpanes,
|
||||||
|
ViewSwitcher,
|
||||||
|
Chart,
|
||||||
|
LoadingIndicator,
|
||||||
|
Logs
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
query: this.initQuery,
|
||||||
|
result: null,
|
||||||
|
view: 'table',
|
||||||
|
tableViewHeight: 0,
|
||||||
|
isGettingResults: false,
|
||||||
|
error: null,
|
||||||
|
resizeObserver: null,
|
||||||
|
time: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
isActive () {
|
||||||
|
return this.id === this.$store.state.currentTabId
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted () {
|
||||||
|
this.resizeObserver = new ResizeObserver(this.handleResize)
|
||||||
|
this.resizeObserver.observe(this.$refs.bottomPane)
|
||||||
|
this.calculateTableHeight()
|
||||||
|
},
|
||||||
|
beforeDestroy () {
|
||||||
|
this.resizeObserver.unobserve(this.$refs.bottomPane)
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
isActive: {
|
||||||
|
immediate: true,
|
||||||
|
async handler () {
|
||||||
|
if (this.isActive) {
|
||||||
|
this.$store.commit('setCurrentTab', this)
|
||||||
|
await this.$nextTick()
|
||||||
|
this.$refs.sqlEditor.focus()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
query () {
|
||||||
|
this.$store.commit('updateTab', { index: this.tabIndex, isUnsaved: true })
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// Run a command in the database
|
||||||
|
async execute () {
|
||||||
|
this.isGettingResults = true
|
||||||
|
this.result = null
|
||||||
|
this.error = null
|
||||||
|
const state = this.$store.state
|
||||||
|
try {
|
||||||
|
const start = new Date()
|
||||||
|
this.result = await state.db.execute(this.query + ';')
|
||||||
|
this.time = time.getPeriod(start, new Date())
|
||||||
|
} catch (err) {
|
||||||
|
this.error = {
|
||||||
|
type: 'error',
|
||||||
|
message: err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
state.db.refreshSchema()
|
||||||
|
this.isGettingResults = false
|
||||||
|
},
|
||||||
|
handleResize () {
|
||||||
|
if (this.view === 'chart') {
|
||||||
|
// hack react-chart editor: hidden and show in order to make the graph resize
|
||||||
|
this.view = 'not chart'
|
||||||
|
this.$nextTick(() => {
|
||||||
|
this.view = 'chart'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.calculateTableHeight()
|
||||||
|
},
|
||||||
|
calculateTableHeight () {
|
||||||
|
const bottomPane = this.$refs.bottomPane
|
||||||
|
// 88 - view swittcher height
|
||||||
|
// 34 - table footer width
|
||||||
|
// 12 - desirable space after the table
|
||||||
|
// 5 - padding-bottom of rounded table container
|
||||||
|
// 35 - height of table header
|
||||||
|
const freeSpace = bottomPane.offsetHeight - 88 - 34 - 12 - 5 - 35
|
||||||
|
this.tableViewHeight = freeSpace - (freeSpace % 35)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.tab-content-container {
|
||||||
|
background-color: var(--color-white);
|
||||||
|
border-top: 1px solid var(--color-border-light);
|
||||||
|
margin-top: -1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#bottomPane {
|
||||||
|
height: 100%;
|
||||||
|
background-color: var(--color-bg-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-results-splitter {
|
||||||
|
height: calc(100vh - 104px);
|
||||||
|
background-color: var(--color-bg-light);
|
||||||
|
}
|
||||||
|
|
||||||
|
.query-editor {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
box-sizing: border-box;
|
||||||
|
min-height: 190px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-view {
|
||||||
|
margin: 0 52px;
|
||||||
|
height: calc(100% - 88px);
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-preview {
|
||||||
|
position: absolute;
|
||||||
|
top: 40%;
|
||||||
|
left: 50%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
color: var(--color-text-base);
|
||||||
|
font-size: 13px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.result-in-progress {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
will-change: opacity;
|
||||||
|
/*
|
||||||
|
We need to show loader in 1 sec after starting query execution. We can't do that with
|
||||||
|
setTimeout because the main thread can be busy by getting a result set from the web worker.
|
||||||
|
But we can use CSS animation for opacity. Opacity triggers changes only in the Composite Layer
|
||||||
|
stage in rendering waterfall. Hence it can be processed only with Compositor Thread while
|
||||||
|
the Main Thread processes a result set.
|
||||||
|
https://www.viget.com/articles/animation-performance-101-browser-under-the-hood/
|
||||||
|
*/
|
||||||
|
animation: show-loader 1s linear 0s 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes show-loader {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
99% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
@@ -8,7 +8,7 @@
|
|||||||
:class="[{'tab-selected': (tab.id === selectedIndex)}, 'tab']"
|
:class="[{'tab-selected': (tab.id === selectedIndex)}, 'tab']"
|
||||||
>
|
>
|
||||||
<div class="tab-name">
|
<div class="tab-name">
|
||||||
<span v-show="!tab.isSaved" class="star">*</span>
|
<span v-show="tab.isUnsaved" class="star">*</span>
|
||||||
<span v-if="tab.name">{{ tab.name }}</span>
|
<span v-if="tab.name">{{ tab.name }}</span>
|
||||||
<span v-else class="tab-untitled">{{ tab.tempName }}</span>
|
<span v-else class="tab-untitled">{{ tab.tempName }}</span>
|
||||||
</div>
|
</div>
|
||||||
@@ -23,15 +23,14 @@
|
|||||||
:id="tab.id"
|
:id="tab.id"
|
||||||
:init-name="tab.name"
|
:init-name="tab.name"
|
||||||
:init-query="tab.query"
|
:init-query="tab.query"
|
||||||
:init-view-options="tab.viewOptions"
|
:init-chart="tab.chart"
|
||||||
:init-view-type="tab.viewType"
|
|
||||||
:is-predefined="tab.isPredefined"
|
:is-predefined="tab.isPredefined"
|
||||||
:tab-index="index"
|
:tab-index="index"
|
||||||
/>
|
/>
|
||||||
<div v-show="tabs.length === 0" id="start-guide">
|
<div v-show="tabs.length === 0" id="start-guide">
|
||||||
<span class="link" @click="$root.$emit('createNewInquiry')">Create</span>
|
<span class="link" @click="$root.$emit('createNewQuery')">Create</span>
|
||||||
new inquiry from scratch or open one from
|
a new query from scratch or open the one from
|
||||||
<router-link class="link" to="/inquiries">Inquiries</router-link>
|
<router-link class="link" to="/my-queries">My queries</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--Close tab warning dialog -->
|
<!--Close tab warning dialog -->
|
||||||
@@ -89,7 +88,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
leavingSqliteviz (event) {
|
leavingSqliteviz (event) {
|
||||||
if (this.tabs.some(tab => !tab.isSaved)) {
|
if (this.tabs.some(tab => tab.isUnsaved)) {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
event.returnValue = ''
|
event.returnValue = ''
|
||||||
}
|
}
|
||||||
@@ -99,7 +98,7 @@ export default {
|
|||||||
},
|
},
|
||||||
beforeCloseTab (index) {
|
beforeCloseTab (index) {
|
||||||
this.closingTabIndex = index
|
this.closingTabIndex = index
|
||||||
if (!this.tabs[index].isSaved) {
|
if (this.tabs[index].isUnsaved) {
|
||||||
this.$modal.show('close-warn')
|
this.$modal.show('close-warn')
|
||||||
} else {
|
} else {
|
||||||
this.closeTab(index)
|
this.closeTab(index)
|
||||||
@@ -111,14 +110,14 @@ export default {
|
|||||||
this.$store.commit('deleteTab', index)
|
this.$store.commit('deleteTab', index)
|
||||||
},
|
},
|
||||||
saveAndClose (index) {
|
saveAndClose (index) {
|
||||||
this.$root.$on('inquirySaved', () => {
|
this.$root.$on('querySaved', () => {
|
||||||
this.closeTab(index)
|
this.closeTab(index)
|
||||||
this.$root.$off('inquirySaved')
|
this.$root.$off('querySaved')
|
||||||
})
|
})
|
||||||
this.selectTab(this.tabs[index].id)
|
this.selectTab(this.tabs[index].id)
|
||||||
this.$modal.hide('close-warn')
|
this.$modal.hide('close-warn')
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.$root.$emit('saveInquiry')
|
this.$root.$emit('saveQuery')
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -160,29 +159,18 @@ export default {
|
|||||||
flex-shrink: 1;
|
flex-shrink: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tabs-header .tab:hover {
|
#tabs-header div:hover {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#tabs-header .tab-selected {
|
#tabs-header .tab-selected {
|
||||||
color: var(--color-text-active);
|
color: var(--color-text-active);
|
||||||
|
font-weight: 600;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
background-color: var(--color-white);
|
background-color: var(--color-white);
|
||||||
position: relative;
|
|
||||||
}
|
}
|
||||||
|
#tabs-header .tab-selected:hover {
|
||||||
#tabs-header .tab-selected:after {
|
cursor: default;
|
||||||
content: '';
|
|
||||||
width: 100%;
|
|
||||||
height: 4px;
|
|
||||||
background-color: var(--color-accent);
|
|
||||||
position: absolute;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
#tabs-header .tab.tab-selected:hover {
|
|
||||||
cursor: default;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.close-icon {
|
.close-icon {
|
||||||
@@ -21,7 +21,7 @@ import Schema from './Schema'
|
|||||||
import Tabs from './Tabs'
|
import Tabs from './Tabs'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Workspace',
|
name: 'Editor',
|
||||||
components: {
|
components: {
|
||||||
Schema,
|
Schema,
|
||||||
Splitpanes,
|
Splitpanes,
|
||||||
@@ -1,44 +1,53 @@
|
|||||||
<template>
|
<template>
|
||||||
<nav>
|
<nav>
|
||||||
<div>
|
<div>
|
||||||
<router-link to="/workspace">Workspace</router-link>
|
<router-link to="/editor">Editor</router-link>
|
||||||
<router-link to="/inquiries">Inquiries</router-link>
|
<router-link to="/my-queries">My queries</router-link>
|
||||||
<a href="https://github.com/lana-k/sqliteviz/wiki" target="_blank">Help</a>
|
<a href="https://github.com/lana-k/sqliteviz/wiki" target="_blank">Help</a>
|
||||||
</div>
|
</div>
|
||||||
<div id="nav-buttons">
|
<div id="nav-buttons">
|
||||||
<button
|
<button
|
||||||
id="save-btn"
|
id="run-btn"
|
||||||
v-show="currentInquiry && $route.path === '/workspace'"
|
v-if="currentQuery && $route.path === '/editor'"
|
||||||
class="primary"
|
class="primary"
|
||||||
:disabled="isSaved"
|
:disabled="runDisabled"
|
||||||
@click="checkInquiryBeforeSave"
|
@click="currentQuery.execute"
|
||||||
|
>
|
||||||
|
Run
|
||||||
|
</button>
|
||||||
|
<button
|
||||||
|
id="save-btn"
|
||||||
|
v-show="currentQuery && $route.path === '/editor'"
|
||||||
|
class="primary"
|
||||||
|
:disabled="!isUnsaved"
|
||||||
|
@click="checkQueryBeforeSave"
|
||||||
>
|
>
|
||||||
Save
|
Save
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
id="create-btn"
|
id="create-btn"
|
||||||
class="primary"
|
class="primary"
|
||||||
@click="createNewInquiry"
|
@click="createNewQuery"
|
||||||
>
|
>
|
||||||
Create
|
Create
|
||||||
</button>
|
</button>
|
||||||
<app-diagnostic-info />
|
<app-diagnostic-info />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--Save Inquiry dialog -->
|
<!--Save Query dialog -->
|
||||||
<modal name="save" classes="dialog" height="auto">
|
<modal name="save" classes="dialog" height="auto">
|
||||||
<div class="dialog-header">
|
<div class="dialog-header">
|
||||||
Save inquiry
|
Save query
|
||||||
<close-icon @click="cancelSave"/>
|
<close-icon @click="cancelSave"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-body">
|
<div class="dialog-body">
|
||||||
<div v-show="isPredefined" id="save-note">
|
<div v-show="isPredefined" id="save-note">
|
||||||
<img :src="require('@/assets/images/info.svg')">
|
<img :src="require('@/assets/images/info.svg')">
|
||||||
Note: Predefined inquiries can't be edited.
|
Note: Predefined queries can't be edited.
|
||||||
That's why your modifications will be saved as a new inquiry. Enter the name for it.
|
That's why your modifications will be saved as a new query. Enter the name for it.
|
||||||
</div>
|
</div>
|
||||||
<text-field
|
<text-field
|
||||||
label="Inquiry name"
|
label="Query name"
|
||||||
:error-msg="errorMsg"
|
:error-msg="errorMsg"
|
||||||
v-model="name"
|
v-model="name"
|
||||||
width="100%"
|
width="100%"
|
||||||
@@ -46,7 +55,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="dialog-buttons-container">
|
<div class="dialog-buttons-container">
|
||||||
<button class="secondary" @click="cancelSave">Cancel</button>
|
<button class="secondary" @click="cancelSave">Cancel</button>
|
||||||
<button class="primary" @click="saveInquiry">Save</button>
|
<button class="primary" @click="saveQuery">Save</button>
|
||||||
</div>
|
</div>
|
||||||
</modal>
|
</modal>
|
||||||
</nav>
|
</nav>
|
||||||
@@ -55,7 +64,7 @@
|
|||||||
<script>
|
<script>
|
||||||
import TextField from '@/components/TextField'
|
import TextField from '@/components/TextField'
|
||||||
import CloseIcon from '@/components/svg/close'
|
import CloseIcon from '@/components/svg/close'
|
||||||
import storedInquiries from '@/lib/storedInquiries'
|
import storedQueries from '@/lib/storedQueries'
|
||||||
import AppDiagnosticInfo from './AppDiagnosticInfo'
|
import AppDiagnosticInfo from './AppDiagnosticInfo'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@@ -72,122 +81,121 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
currentInquiry () {
|
currentQuery () {
|
||||||
return this.$store.state.currentTab
|
return this.$store.state.currentTab
|
||||||
},
|
},
|
||||||
isSaved () {
|
isUnsaved () {
|
||||||
if (!this.currentInquiry) {
|
if (!this.currentQuery) {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
const tabIndex = this.currentInquiry.tabIndex
|
const tabIndex = this.currentQuery.tabIndex
|
||||||
const tab = this.$store.state.tabs[tabIndex]
|
const tab = this.$store.state.tabs[tabIndex]
|
||||||
return tab && tab.isSaved
|
return tab && tab.isUnsaved
|
||||||
},
|
},
|
||||||
isPredefined () {
|
isPredefined () {
|
||||||
if (this.currentInquiry) {
|
if (this.currentQuery) {
|
||||||
return this.currentInquiry.isPredefined
|
return this.currentQuery.isPredefined
|
||||||
} else {
|
} else {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
runDisabled () {
|
runDisabled () {
|
||||||
return this.currentInquiry && (!this.$store.state.db || !this.currentInquiry.query)
|
return this.currentQuery && (!this.$store.state.db || !this.currentQuery.query)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
this.$root.$on('createNewInquiry', this.createNewInquiry)
|
this.$root.$on('createNewQuery', this.createNewQuery)
|
||||||
this.$root.$on('saveInquiry', this.checkInquiryBeforeSave)
|
this.$root.$on('saveQuery', this.checkQueryBeforeSave)
|
||||||
document.addEventListener('keydown', this._keyListener)
|
document.addEventListener('keydown', this._keyListener)
|
||||||
},
|
},
|
||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
document.removeEventListener('keydown', this._keyListener)
|
document.removeEventListener('keydown', this._keyListener)
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
createNewInquiry () {
|
createNewQuery () {
|
||||||
this.$store.dispatch('addTab').then(id => {
|
this.$store.dispatch('addTab').then(id => {
|
||||||
this.$store.commit('setCurrentTabId', id)
|
this.$store.commit('setCurrentTabId', id)
|
||||||
if (this.$route.path !== '/workspace') {
|
if (this.$route.path !== '/editor') {
|
||||||
this.$router.push('/workspace')
|
this.$router.push('/editor')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
cancelSave () {
|
cancelSave () {
|
||||||
this.$modal.hide('save')
|
this.$modal.hide('save')
|
||||||
this.$root.$off('inquirySaved')
|
this.$root.$off('querySaved')
|
||||||
},
|
},
|
||||||
checkInquiryBeforeSave () {
|
checkQueryBeforeSave () {
|
||||||
this.errorMsg = null
|
this.errorMsg = null
|
||||||
this.name = ''
|
this.name = ''
|
||||||
|
|
||||||
if (storedInquiries.isTabNeedName(this.currentInquiry)) {
|
if (storedQueries.isTabNeedName(this.currentQuery)) {
|
||||||
this.$modal.show('save')
|
this.$modal.show('save')
|
||||||
} else {
|
} else {
|
||||||
this.saveInquiry()
|
this.saveQuery()
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveInquiry () {
|
saveQuery () {
|
||||||
const isNeedName = storedInquiries.isTabNeedName(this.currentInquiry)
|
const isNeedName = storedQueries.isTabNeedName(this.currentQuery)
|
||||||
if (isNeedName && !this.name) {
|
if (isNeedName && !this.name) {
|
||||||
this.errorMsg = 'Inquiry name can\'t be empty'
|
this.errorMsg = 'Query name can\'t be empty'
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const dataSet = this.currentInquiry.result
|
const dataSet = this.currentQuery.result
|
||||||
const tabView = this.currentInquiry.view
|
const tabView = this.currentQuery.view
|
||||||
|
|
||||||
// Save inquiry
|
// Save query
|
||||||
const value = storedInquiries.save(this.currentInquiry, this.name)
|
const value = storedQueries.save(this.currentQuery, this.name)
|
||||||
|
|
||||||
// Update tab in store
|
// Update tab in store
|
||||||
this.$store.commit('updateTab', {
|
this.$store.commit('updateTab', {
|
||||||
index: this.currentInquiry.tabIndex,
|
index: this.currentQuery.tabIndex,
|
||||||
name: value.name,
|
name: value.name,
|
||||||
id: value.id,
|
id: value.id,
|
||||||
query: value.query,
|
query: value.query,
|
||||||
viewType: value.viewType,
|
chart: value.chart,
|
||||||
viewOptions: value.viewOptions,
|
isUnsaved: false
|
||||||
isSaved: true
|
|
||||||
})
|
})
|
||||||
|
|
||||||
// Restore data:
|
// Restore data:
|
||||||
// e.g. if we save predefined inquiry the tab will be created again
|
// e.g. if we save predefined query the tab will be created again
|
||||||
// (because of new id) and
|
// (because of new id) and
|
||||||
// it will be without sql result and has default view - table.
|
// it will be without sql result and has default view - table.
|
||||||
// That's why we need to restore data and view
|
// That's why we need to restore data and view
|
||||||
this.$nextTick(() => {
|
this.$nextTick(() => {
|
||||||
this.currentInquiry.result = dataSet
|
this.currentQuery.result = dataSet
|
||||||
this.currentInquiry.view = tabView
|
this.currentQuery.view = tabView
|
||||||
})
|
})
|
||||||
|
|
||||||
// Hide dialog
|
// Hide dialog
|
||||||
this.$modal.hide('save')
|
this.$modal.hide('save')
|
||||||
|
|
||||||
// Signal about saving
|
// Signal about saving
|
||||||
this.$root.$emit('inquirySaved')
|
this.$root.$emit('querySaved')
|
||||||
},
|
},
|
||||||
_keyListener (e) {
|
_keyListener (e) {
|
||||||
if (this.$route.path === '/workspace') {
|
if (this.$route.path === '/editor') {
|
||||||
// Run query Ctrl+R or Ctrl+Enter
|
// Run query Ctrl+R or Ctrl+Enter
|
||||||
if ((e.key === 'r' || e.key === 'Enter') && (e.ctrlKey || e.metaKey)) {
|
if ((e.key === 'r' || e.key === 'Enter') && (e.ctrlKey || e.metaKey)) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
if (!this.runDisabled) {
|
if (!this.runDisabled) {
|
||||||
this.currentInquiry.execute()
|
this.currentQuery.execute()
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// Save inquiry Ctrl+S
|
// Save query Ctrl+S
|
||||||
if (e.key === 's' && (e.ctrlKey || e.metaKey)) {
|
if (e.key === 's' && (e.ctrlKey || e.metaKey)) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
if (!this.isSaved) {
|
if (this.isUnsaved) {
|
||||||
this.checkInquiryBeforeSave()
|
this.checkQueryBeforeSave()
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// New (blank) inquiry Ctrl+B
|
// New (blank) query Ctrl+B
|
||||||
if (e.key === 'b' && (e.ctrlKey || e.metaKey)) {
|
if (e.key === 'b' && (e.ctrlKey || e.metaKey)) {
|
||||||
e.preventDefault()
|
e.preventDefault()
|
||||||
this.createNewInquiry()
|
this.createNewQuery()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,22 +1,22 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div id="start-guide" v-if="showedInquiries.length === 0">
|
<div id="start-guide" v-if="showedQueries.length === 0">
|
||||||
You don't have saved inquiries so far.
|
You don't have saved queries so far.
|
||||||
<span class="link" @click="$root.$emit('createNewInquiry')">Create</span>
|
<span class="link" @click="$root.$emit('createNewQuery')">Create</span>
|
||||||
the one from scratch or
|
the one from scratch or
|
||||||
<span @click="importInquiries" class="link">import</span> from a file.
|
<span @click="importQueries" class="link">import</span> from a file.
|
||||||
</div>
|
</div>
|
||||||
<div id="my-inquiries-content" ref="my-inquiries-content" v-show="showedInquiries.length > 0">
|
<div id="my-queries-content" ref="my-queries-content" v-show="showedQueries.length > 0">
|
||||||
<div id="my-inquiries-toolbar">
|
<div id="my-queries-toolbar">
|
||||||
<div id="toolbar-buttons">
|
<div id="toolbar-buttons">
|
||||||
<button id="toolbar-btns-import" class="toolbar" @click="importInquiries">
|
<button id="toolbar-btns-import" class="toolbar" @click="importQueries">
|
||||||
Import
|
Import
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
id="toolbar-btns-export"
|
id="toolbar-btns-export"
|
||||||
class="toolbar"
|
class="toolbar"
|
||||||
v-show="selectedInquiriesCount > 0"
|
v-show="selectedQueriesCount > 0"
|
||||||
@click="exportSelectedInquiries()"
|
@click="exportSelectedQueries()"
|
||||||
>
|
>
|
||||||
Export
|
Export
|
||||||
</button>
|
</button>
|
||||||
@@ -24,13 +24,13 @@
|
|||||||
id="toolbar-btns-delete"
|
id="toolbar-btns-delete"
|
||||||
class="toolbar"
|
class="toolbar"
|
||||||
v-show="selectedNotPredefinedCount > 0"
|
v-show="selectedNotPredefinedCount > 0"
|
||||||
@click="showDeleteDialog(selectedInquiriesIds)"
|
@click="showDeleteDialog(selectedQueriesIds)"
|
||||||
>
|
>
|
||||||
Delete
|
Delete
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div id="toolbar-search">
|
<div id="toolbar-search">
|
||||||
<text-field placeholder="Search inquiry by name" width="300px" v-model="filter"/>
|
<text-field placeholder="Search query by name" width="300px" v-model="filter"/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="rounded-bg">
|
<div class="rounded-bg">
|
||||||
@@ -46,49 +46,48 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="table-container" :style="{ 'max-height': `${maxTableHeight}px` }">
|
<div class="table-container" :style="{ 'max-height': `${maxTableHeight}px` }">
|
||||||
<table ref="table" class="sqliteviz-table">
|
<table ref="table">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr
|
<tr
|
||||||
v-for="(inquiry, index) in showedInquiries"
|
v-for="(query, index) in showedQueries"
|
||||||
:key="inquiry.id"
|
:key="query.id"
|
||||||
@click="openInquiry(index)"
|
@click="openQuery(index)"
|
||||||
>
|
>
|
||||||
<td ref="name-td">
|
<td ref="name-td">
|
||||||
<div class="cell-data">
|
<div class="cell-data">
|
||||||
<check-box
|
<check-box
|
||||||
ref="rowCheckBox"
|
ref="rowCheckBox"
|
||||||
:init="selectAll || selectedInquiriesIds.has(inquiry.id)"
|
:init="selectAll || selectedQueriesIds.has(query.id)"
|
||||||
@click="toggleRow($event, inquiry.id)"
|
@click="toggleRow($event, query.id)"
|
||||||
/>
|
/>
|
||||||
<div class="name">{{ inquiry.name }}</div>
|
<div class="name">{{ query.name }}</div>
|
||||||
<div
|
<div
|
||||||
v-if="inquiry.isPredefined"
|
v-if="query.isPredefined"
|
||||||
class="badge"
|
class="badge"
|
||||||
@mouseenter="showTooltip"
|
@mouseover="showTooltip"
|
||||||
@mouseleave="hideTooltip"
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
Predefined
|
Predefined
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Predefined inquiries come from the server.
|
Predefined queries come from the server.
|
||||||
These inquiries can’t be deleted or renamed.
|
These queries can’t be deleted or renamed.
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="second-column">
|
<div class="second-column">
|
||||||
<div class="date-container">{{ inquiry.createdAt | date }}</div>
|
<div class="date-container">{{ query.createdAt | date }}</div>
|
||||||
<div class="icons-container">
|
<div class="icons-container">
|
||||||
<rename-icon v-if="!inquiry.isPredefined" @click="showRenameDialog(inquiry.id)" />
|
<rename-icon v-if="!query.isPredefined" @click="showRenameDialog(query.id)" />
|
||||||
<copy-icon @click="duplicateInquiry(index)"/>
|
<copy-icon @click="duplicateQuery(index)"/>
|
||||||
<export-icon
|
<export-icon
|
||||||
@click="exportToFile([inquiry], `${inquiry.name}.json`)"
|
@click="exportToFile([query], `${query.name}.json`)"
|
||||||
tooltip="Export inquiry to file"
|
tooltip="Export query to file"
|
||||||
tooltip-position="top-left"
|
|
||||||
/>
|
/>
|
||||||
<delete-icon
|
<delete-icon
|
||||||
v-if="!inquiry.isPredefined"
|
v-if="!query.isPredefined"
|
||||||
@click="showDeleteDialog((new Set()).add(inquiry.id))"
|
@click="showDeleteDialog((new Set()).add(query.id))"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -100,15 +99,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--Rename Inquiry dialog -->
|
<!--Rename Query dialog -->
|
||||||
<modal name="rename" classes="dialog" height="auto">
|
<modal name="rename" classes="dialog" height="auto">
|
||||||
<div class="dialog-header">
|
<div class="dialog-header">
|
||||||
Rename inquiry
|
Rename query
|
||||||
<close-icon @click="$modal.hide('rename')"/>
|
<close-icon @click="$modal.hide('rename')"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-body">
|
<div class="dialog-body">
|
||||||
<text-field
|
<text-field
|
||||||
label="New inquiry name"
|
label="New query name"
|
||||||
:error-msg="errorMsg"
|
:error-msg="errorMsg"
|
||||||
v-model="newName"
|
v-model="newName"
|
||||||
width="100%"
|
width="100%"
|
||||||
@@ -116,26 +115,26 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="dialog-buttons-container">
|
<div class="dialog-buttons-container">
|
||||||
<button class="secondary" @click="$modal.hide('rename')">Cancel</button>
|
<button class="secondary" @click="$modal.hide('rename')">Cancel</button>
|
||||||
<button class="primary" @click="renameInquiry">Rename</button>
|
<button class="primary" @click="renameQuery">Rename</button>
|
||||||
</div>
|
</div>
|
||||||
</modal>
|
</modal>
|
||||||
|
|
||||||
<!--Delete Inquiry dialog -->
|
<!--Delete Query dialog -->
|
||||||
<modal name="delete" classes="dialog" height="auto">
|
<modal name="delete" classes="dialog" height="auto">
|
||||||
<div class="dialog-header">
|
<div class="dialog-header">
|
||||||
Delete {{ deleteGroup ? 'inquiries' : 'inquiry' }}
|
Delete {{ deleteGroup ? 'queries' : 'query' }}
|
||||||
<close-icon @click="$modal.hide('delete')"/>
|
<close-icon @click="$modal.hide('delete')"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-body">
|
<div class="dialog-body">
|
||||||
{{ deleteDialogMsg }}
|
{{ deleteDialogMsg }}
|
||||||
<div v-show="selectedInquiriesCount > selectedNotPredefinedCount" id="note">
|
<div v-show="selectedQueriesCount > selectedNotPredefinedCount" id="note">
|
||||||
<img :src="require('@/assets/images/info.svg')">
|
<img :src="require('@/assets/images/info.svg')">
|
||||||
Note: Predefined inquiries you've selected won't be deleted
|
Note: Predefined queries you've selected won't be deleted
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="dialog-buttons-container">
|
<div class="dialog-buttons-container">
|
||||||
<button class="secondary" @click="$modal.hide('delete')">Cancel</button>
|
<button class="secondary" @click="$modal.hide('delete')">Cancel</button>
|
||||||
<button class="primary" @click="deleteInquiry">Delete</button>
|
<button class="primary" @click="deleteQuery">Delete</button>
|
||||||
</div>
|
</div>
|
||||||
</modal>
|
</modal>
|
||||||
</div>
|
</div>
|
||||||
@@ -150,11 +149,11 @@ import CloseIcon from '@/components/svg/close'
|
|||||||
import TextField from '@/components/TextField'
|
import TextField from '@/components/TextField'
|
||||||
import CheckBox from '@/components/CheckBox'
|
import CheckBox from '@/components/CheckBox'
|
||||||
import tooltipMixin from '@/tooltipMixin'
|
import tooltipMixin from '@/tooltipMixin'
|
||||||
import storedInquiries from '@/lib/storedInquiries'
|
import storedQueries from '@/lib/storedQueries'
|
||||||
import fu from '@/lib/utils/fileIo'
|
import fu from '@/lib/utils/fileIo'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'Inquiries',
|
name: 'MyQueries',
|
||||||
components: {
|
components: {
|
||||||
RenameIcon,
|
RenameIcon,
|
||||||
CopyIcon,
|
CopyIcon,
|
||||||
@@ -167,13 +166,13 @@ export default {
|
|||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin],
|
||||||
data () {
|
data () {
|
||||||
return {
|
return {
|
||||||
inquiries: [],
|
queries: [],
|
||||||
filter: null,
|
filter: null,
|
||||||
newName: null,
|
newName: null,
|
||||||
processedInquiryId: null,
|
processedQueryId: null,
|
||||||
errorMsg: null,
|
errorMsg: null,
|
||||||
selectedInquiriesIds: new Set(),
|
selectedQueriesIds: new Set(),
|
||||||
selectedInquiriesCount: 0,
|
selectedQueriesCount: 0,
|
||||||
selectedNotPredefinedCount: 0,
|
selectedNotPredefinedCount: 0,
|
||||||
selectAll: false,
|
selectAll: false,
|
||||||
deleteGroup: false,
|
deleteGroup: false,
|
||||||
@@ -182,61 +181,61 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
predefinedInquiries () {
|
predefinedQueries () {
|
||||||
return this.$store.state.predefinedInquiries.map(inquiry => {
|
return this.$store.state.predefinedQueries.map(query => {
|
||||||
inquiry.isPredefined = true
|
query.isPredefined = true
|
||||||
return inquiry
|
return query
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
predefinedInquiriesIds () {
|
predefinedQueriesIds () {
|
||||||
return new Set(this.predefinedInquiries.map(inquiry => inquiry.id))
|
return new Set(this.predefinedQueries.map(query => query.id))
|
||||||
},
|
},
|
||||||
showedInquiries () {
|
showedQueries () {
|
||||||
let showedInquiries = this.allInquiries
|
let showedQueries = this.allQueries
|
||||||
if (this.filter) {
|
if (this.filter) {
|
||||||
showedInquiries = showedInquiries.filter(
|
showedQueries = showedQueries.filter(
|
||||||
inquiry => inquiry.name.toUpperCase().indexOf(this.filter.toUpperCase()) >= 0
|
query => query.name.toUpperCase().indexOf(this.filter.toUpperCase()) >= 0
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return showedInquiries
|
return showedQueries
|
||||||
},
|
},
|
||||||
allInquiries () {
|
allQueries () {
|
||||||
return this.predefinedInquiries.concat(this.inquiries)
|
return this.predefinedQueries.concat(this.queries)
|
||||||
},
|
},
|
||||||
processedInquiryIndex () {
|
processedQueryIndex () {
|
||||||
return this.inquiries.findIndex(inquiry => inquiry.id === this.processedInquiryId)
|
return this.queries.findIndex(query => query.id === this.processedQueryId)
|
||||||
},
|
},
|
||||||
deleteDialogMsg () {
|
deleteDialogMsg () {
|
||||||
if (!this.deleteGroup && (
|
if (!this.deleteGroup && (
|
||||||
this.processedInquiryIndex === null ||
|
this.processedQueryIndex === null ||
|
||||||
this.processedInquiryIndex < 0 ||
|
this.processedQueryIndex < 0 ||
|
||||||
this.processedInquiryIndex > this.inquiries.length
|
this.processedQueryIndex > this.queries.length
|
||||||
)) {
|
)) {
|
||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
|
|
||||||
const deleteItem = this.deleteGroup
|
const deleteItem = this.deleteGroup
|
||||||
? `${this.selectedNotPredefinedCount} ${this.selectedNotPredefinedCount > 1
|
? `${this.selectedNotPredefinedCount} ${this.selectedNotPredefinedCount > 1
|
||||||
? 'inquiries'
|
? 'queries'
|
||||||
: 'inquiry'}`
|
: 'query'}`
|
||||||
: `"${this.inquiries[this.processedInquiryIndex].name}"`
|
: `"${this.queries[this.processedQueryIndex].name}"`
|
||||||
|
|
||||||
return `Are you sure you want to delete ${deleteItem}?`
|
return `Are you sure you want to delete ${deleteItem}?`
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
created () {
|
created () {
|
||||||
storedInquiries.readPredefinedInquiries()
|
storedQueries.readPredefinedQueries()
|
||||||
.then(inquiries => {
|
.then(queries => {
|
||||||
this.$store.commit('updatePredefinedInquiries', inquiries)
|
this.$store.commit('updatePredefinedQueries', queries)
|
||||||
})
|
})
|
||||||
.catch(console.error)
|
.catch(console.error)
|
||||||
.finally(() => {
|
.finally(() => {
|
||||||
this.inquiries = storedInquiries.getStoredInquiries()
|
this.queries = storedQueries.getStoredQueries()
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
this.resizeObserver = new ResizeObserver(this.calcMaxTableHeight)
|
this.resizeObserver = new ResizeObserver(this.calcMaxTableHeight)
|
||||||
this.resizeObserver.observe(this.$refs['my-inquiries-content'])
|
this.resizeObserver.observe(this.$refs['my-queries-content'])
|
||||||
|
|
||||||
this.tableResizeObserver = new ResizeObserver(this.calcNameWidth)
|
this.tableResizeObserver = new ResizeObserver(this.calcNameWidth)
|
||||||
this.tableResizeObserver.observe(this.$refs.table)
|
this.tableResizeObserver.observe(this.$refs.table)
|
||||||
@@ -244,7 +243,7 @@ export default {
|
|||||||
this.calcMaxTableHeight()
|
this.calcMaxTableHeight()
|
||||||
},
|
},
|
||||||
beforeDestroy () {
|
beforeDestroy () {
|
||||||
this.resizeObserver.unobserve(this.$refs['my-inquiries-content'])
|
this.resizeObserver.unobserve(this.$refs['my-queries-content'])
|
||||||
this.tableResizeObserver.unobserve(this.$refs.table)
|
this.tableResizeObserver.unobserve(this.$refs.table)
|
||||||
},
|
},
|
||||||
filters: {
|
filters: {
|
||||||
@@ -270,153 +269,153 @@ export default {
|
|||||||
this.$refs['name-th'].style = `width: ${nameWidth}px`
|
this.$refs['name-th'].style = `width: ${nameWidth}px`
|
||||||
},
|
},
|
||||||
calcMaxTableHeight () {
|
calcMaxTableHeight () {
|
||||||
const freeSpace = this.$refs['my-inquiries-content'].offsetHeight - 200
|
const freeSpace = this.$refs['my-queries-content'].offsetHeight - 200
|
||||||
this.maxTableHeight = freeSpace - (freeSpace % 40) + 1
|
this.maxTableHeight = freeSpace - (freeSpace % 40) + 1
|
||||||
},
|
},
|
||||||
openInquiry (index) {
|
openQuery (index) {
|
||||||
const tab = this.showedInquiries[index]
|
const tab = this.showedQueries[index]
|
||||||
this.$store.dispatch('addTab', tab).then(id => {
|
this.$store.dispatch('addTab', tab).then(id => {
|
||||||
this.$store.commit('setCurrentTabId', id)
|
this.$store.commit('setCurrentTabId', id)
|
||||||
this.$router.push('/workspace')
|
this.$router.push('/editor')
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
showRenameDialog (id) {
|
showRenameDialog (id) {
|
||||||
this.errorMsg = null
|
this.errorMsg = null
|
||||||
this.processedInquiryId = id
|
this.processedQueryId = id
|
||||||
this.newName = this.inquiries[this.processedInquiryIndex].name
|
this.newName = this.queries[this.processedQueryIndex].name
|
||||||
this.$modal.show('rename')
|
this.$modal.show('rename')
|
||||||
},
|
},
|
||||||
renameInquiry () {
|
renameQuery () {
|
||||||
if (!this.newName) {
|
if (!this.newName) {
|
||||||
this.errorMsg = "Inquiry name can't be empty"
|
this.errorMsg = 'Query name can\'t be empty'
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
const processedInquiry = this.inquiries[this.processedInquiryIndex]
|
const processedQuery = this.queries[this.processedQueryIndex]
|
||||||
processedInquiry.name = this.newName
|
processedQuery.name = this.newName
|
||||||
this.$set(this.inquiries, this.processedInquiryIndex, processedInquiry)
|
this.$set(this.queries, this.processedQueryIndex, processedQuery)
|
||||||
|
|
||||||
// update inquiries in local storage
|
// update queries in local storage
|
||||||
storedInquiries.updateStorage(this.inquiries)
|
storedQueries.updateStorage(this.queries)
|
||||||
|
|
||||||
// update tab, if renamed inquiry is opened
|
// update tab, if renamed query is opened
|
||||||
const tabIndex = this.findTabIndex(processedInquiry.id)
|
const tabIndex = this.findTabIndex(processedQuery.id)
|
||||||
if (tabIndex >= 0) {
|
if (tabIndex >= 0) {
|
||||||
this.$store.commit('updateTab', {
|
this.$store.commit('updateTab', {
|
||||||
index: tabIndex,
|
index: tabIndex,
|
||||||
name: this.newName,
|
name: this.newName,
|
||||||
id: processedInquiry.id
|
id: processedQuery.id
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// hide dialog
|
// hide dialog
|
||||||
this.$modal.hide('rename')
|
this.$modal.hide('rename')
|
||||||
},
|
},
|
||||||
duplicateInquiry (index) {
|
duplicateQuery (index) {
|
||||||
const newInquiry = storedInquiries.duplicateInquiry(this.showedInquiries[index])
|
const newQuery = storedQueries.duplicateQuery(this.showedQueries[index])
|
||||||
if (this.selectAll) {
|
if (this.selectAll) {
|
||||||
this.selectedInquiriesIds.add(newInquiry.id)
|
this.selectedQueriesIds.add(newQuery.id)
|
||||||
this.selectedInquiriesCount = this.selectedInquiriesIds.size
|
this.selectedQueriesCount = this.selectedQueriesIds.size
|
||||||
}
|
}
|
||||||
this.inquiries.push(newInquiry)
|
this.queries.push(newQuery)
|
||||||
storedInquiries.updateStorage(this.inquiries)
|
storedQueries.updateStorage(this.queries)
|
||||||
},
|
},
|
||||||
showDeleteDialog (idsSet) {
|
showDeleteDialog (idsSet) {
|
||||||
this.deleteGroup = idsSet.size > 1
|
this.deleteGroup = idsSet.size > 1
|
||||||
if (!this.deleteGroup) {
|
if (!this.deleteGroup) {
|
||||||
this.processedInquiryId = idsSet.values().next().value
|
this.processedQueryId = idsSet.values().next().value
|
||||||
}
|
}
|
||||||
this.$modal.show('delete')
|
this.$modal.show('delete')
|
||||||
},
|
},
|
||||||
deleteInquiry () {
|
deleteQuery () {
|
||||||
this.$modal.hide('delete')
|
this.$modal.hide('delete')
|
||||||
if (!this.deleteGroup) {
|
if (!this.deleteGroup) {
|
||||||
this.inquiries.splice(this.processedInquiryIndex, 1)
|
this.queries.splice(this.processedQueryIndex, 1)
|
||||||
|
|
||||||
// Close deleted inquiry tab if it was opened
|
// Close deleted query tab if it was opened
|
||||||
const tabIndex = this.findTabIndex(this.processedInquiryId)
|
const tabIndex = this.findTabIndex(this.processedQueryId)
|
||||||
if (tabIndex >= 0) {
|
if (tabIndex >= 0) {
|
||||||
this.$store.commit('deleteTab', tabIndex)
|
this.$store.commit('deleteTab', tabIndex)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear checkboxes
|
// Clear checkboxes
|
||||||
if (this.selectedInquiriesIds.has(this.processedInquiryId)) {
|
if (this.selectedQueriesIds.has(this.processedQueryId)) {
|
||||||
this.selectedInquiriesIds.delete(this.processedInquiryId)
|
this.selectedQueriesIds.delete(this.processedQueryId)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.inquiries = this.selectAll
|
this.queries = this.selectAll
|
||||||
? []
|
? []
|
||||||
: this.inquiries.filter(inquiry => !this.selectedInquiriesIds.has(inquiry.id))
|
: this.queries.filter(query => !this.selectedQueriesIds.has(query.id))
|
||||||
|
|
||||||
// Close deleted inquiries if it was opened
|
// Close deleted queries if it was opened
|
||||||
const tabs = this.$store.state.tabs
|
const tabs = this.$store.state.tabs
|
||||||
for (let i = tabs.length - 1; i >= 0; i--) {
|
for (let i = tabs.length - 1; i >= 0; i--) {
|
||||||
if (this.selectedInquiriesIds.has(tabs[i].id)) {
|
if (this.selectedQueriesIds.has(tabs[i].id)) {
|
||||||
this.$store.commit('deleteTab', i)
|
this.$store.commit('deleteTab', i)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clear checkboxes
|
// Clear checkboxes
|
||||||
this.selectedInquiriesIds.clear()
|
this.selectedQueriesIds.clear()
|
||||||
}
|
}
|
||||||
this.selectedInquiriesCount = this.selectedInquiriesIds.size
|
this.selectedQueriesCount = this.selectedQueriesIds.size
|
||||||
storedInquiries.updateStorage(this.inquiries)
|
storedQueries.updateStorage(this.queries)
|
||||||
},
|
},
|
||||||
findTabIndex (id) {
|
findTabIndex (id) {
|
||||||
return this.$store.state.tabs.findIndex(tab => tab.id === id)
|
return this.$store.state.tabs.findIndex(tab => tab.id === id)
|
||||||
},
|
},
|
||||||
exportToFile (inquiryList, fileName) {
|
exportToFile (queryList, fileName) {
|
||||||
const jsonStr = storedInquiries.serialiseInquiries(inquiryList)
|
const jsonStr = storedQueries.serialiseQueries(queryList)
|
||||||
fu.exportToFile(jsonStr, fileName)
|
fu.exportToFile(jsonStr, fileName)
|
||||||
},
|
},
|
||||||
exportSelectedInquiries () {
|
exportSelectedQueries () {
|
||||||
const inquiryList = this.selectAll
|
const queryList = this.selectAll
|
||||||
? this.allInquiries
|
? this.allQueries
|
||||||
: this.allInquiries.filter(inquiry => this.selectedInquiriesIds.has(inquiry.id))
|
: this.allQueries.filter(query => this.selectedQueriesIds.has(query.id))
|
||||||
|
|
||||||
this.exportToFile(inquiryList, 'My sqliteviz inquiries.json')
|
this.exportToFile(queryList, 'My sqliteviz queries.json')
|
||||||
},
|
},
|
||||||
importInquiries () {
|
importQueries () {
|
||||||
storedInquiries.importInquiries()
|
storedQueries.importQueries()
|
||||||
.then(importedInquiries => {
|
.then(importedQueries => {
|
||||||
if (this.selectAll) {
|
if (this.selectAll) {
|
||||||
importedInquiries.forEach(inquiry => {
|
importedQueries.forEach(query => {
|
||||||
this.selectedInquiriesIds.add(inquiry.id)
|
this.selectedQueriesIds.add(query.id)
|
||||||
})
|
})
|
||||||
this.selectedInquiriesCount = this.selectedInquiriesIds.size
|
this.selectedQueriesCount = this.selectedQueriesIds.size
|
||||||
}
|
}
|
||||||
|
|
||||||
this.inquiries = this.inquiries.concat(importedInquiries)
|
this.queries = this.queries.concat(importedQueries)
|
||||||
storedInquiries.updateStorage(this.inquiries)
|
storedQueries.updateStorage(this.queries)
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
toggleSelectAll (checked) {
|
toggleSelectAll (checked) {
|
||||||
this.selectAll = checked
|
this.selectAll = checked
|
||||||
this.$refs.rowCheckBox.forEach(item => { item.checked = checked })
|
this.$refs.rowCheckBox.forEach(item => { item.checked = checked })
|
||||||
|
|
||||||
this.selectedInquiriesIds = checked
|
this.selectedQueriesIds = checked
|
||||||
? new Set(this.allInquiries.map(inquiry => inquiry.id))
|
? new Set(this.allQueries.map(query => query.id))
|
||||||
: new Set()
|
: new Set()
|
||||||
|
|
||||||
this.selectedInquiriesCount = this.selectedInquiriesIds.size
|
this.selectedQueriesCount = this.selectedQueriesIds.size
|
||||||
this.selectedNotPredefinedCount = checked ? this.inquiries.length : 0
|
this.selectedNotPredefinedCount = checked ? this.queries.length : 0
|
||||||
},
|
},
|
||||||
toggleRow (checked, id) {
|
toggleRow (checked, id) {
|
||||||
const isPredefined = this.predefinedInquiriesIds.has(id)
|
const isPredefined = this.predefinedQueriesIds.has(id)
|
||||||
if (checked) {
|
if (checked) {
|
||||||
this.selectedInquiriesIds.add(id)
|
this.selectedQueriesIds.add(id)
|
||||||
if (!isPredefined) {
|
if (!isPredefined) {
|
||||||
this.selectedNotPredefinedCount += 1
|
this.selectedNotPredefinedCount += 1
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (this.selectedInquiriesIds.size === this.allInquiries.length) {
|
if (this.selectedQueriesIds.size === this.allQueries.length) {
|
||||||
this.$refs.mainCheckBox.checked = false
|
this.$refs.mainCheckBox.checked = false
|
||||||
this.selectAll = false
|
this.selectAll = false
|
||||||
}
|
}
|
||||||
this.selectedInquiriesIds.delete(id)
|
this.selectedQueriesIds.delete(id)
|
||||||
if (!isPredefined) {
|
if (!isPredefined) {
|
||||||
this.selectedNotPredefinedCount -= 1
|
this.selectedNotPredefinedCount -= 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
this.selectedInquiriesCount = this.selectedInquiriesIds.size
|
this.selectedQueriesCount = this.selectedQueriesIds.size
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -433,13 +432,13 @@ export default {
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#my-inquiries-content {
|
#my-queries-content {
|
||||||
padding: 52px;
|
padding: 52px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
#my-inquiries-toolbar {
|
#my-queries-toolbar {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
margin-bottom: 18px;
|
margin-bottom: 18px;
|
||||||
@@ -466,47 +465,47 @@ export default {
|
|||||||
margin-left: 24px;
|
margin-left: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
table.sqliteviz-table {
|
table {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr td {
|
tbody tr td {
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr td:first-child {
|
tbody tr td:first-child {
|
||||||
width: 70%;
|
width: 70%;
|
||||||
max-width: 0;
|
max-width: 0;
|
||||||
padding: 0 12px;
|
padding: 0 12px;
|
||||||
}
|
}
|
||||||
.sqliteviz-table tbody tr td:last-child {
|
tbody tr td:last-child {
|
||||||
width: 30%;
|
width: 30%;
|
||||||
max-width: 0;
|
max-width: 0;
|
||||||
padding: 0 24px;
|
padding: 0 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody .cell-data {
|
tbody .cell-data {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
.sqliteviz-table tbody .cell-data div.name {
|
tbody .cell-data div.name {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
margin-left: 24px;
|
margin-left: 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr:hover td {
|
tbody tr:hover td {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr:hover td {
|
tbody tr:hover td {
|
||||||
color: var(--color-text-active);
|
color: var(--color-text-active);
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table .second-column {
|
.second-column {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
@@ -524,7 +523,7 @@ table.sqliteviz-table {
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
.sqliteviz-table tbody tr:hover .icons-container {
|
tbody tr:hover .icons-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
.dialog input {
|
.dialog input {
|
||||||
@@ -546,7 +545,7 @@ button.toolbar {
|
|||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sqliteviz-table tbody tr:hover .badge {
|
tbody tr:hover .badge {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
#note {
|
#note {
|
||||||
@@ -6,17 +6,18 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip"
|
@click.stop="$emit('click')"
|
||||||
@mouseleave="hideTooltip"
|
@mouseover="showTooltip"
|
||||||
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M14.25 15.75H6V5.25H14.25V15.75ZM14.25 3.75H6C5.60218 3.75 5.22064 3.90804 4.93934 4.18934C4.65804 4.47064 4.5 4.85218 4.5 5.25V15.75C4.5 16.1478 4.65804 16.5294 4.93934 16.8107C5.22064 17.092 5.60218 17.25 6 17.25H14.25C14.6478 17.25 15.0294 17.092 15.3107 16.8107C15.592 16.5294 15.75 16.1478 15.75 15.75V5.25C15.75 4.85218 15.592 4.47064 15.3107 4.18934C15.0294 3.90804 14.6478 3.75 14.25 3.75ZM12 0.75H3C2.60218 0.75 2.22064 0.908035 1.93934 1.18934C1.65804 1.47064 1.5 1.85218 1.5 2.25V12.75H3V2.25H12V0.75Z"
|
d="M14.25 15.75H6V5.25H14.25V15.75ZM14.25 3.75H6C5.60218 3.75 5.22064 3.90804 4.93934 4.18934C4.65804 4.47064 4.5 4.85218 4.5 5.25V15.75C4.5 16.1478 4.65804 16.5294 4.93934 16.8107C5.22064 17.092 5.60218 17.25 6 17.25H14.25C14.6478 17.25 15.0294 17.092 15.3107 16.8107C15.592 16.5294 15.75 16.1478 15.75 15.75V5.25C15.75 4.85218 15.592 4.47064 15.3107 4.18934C15.0294 3.90804 14.6478 3.75 14.25 3.75ZM12 0.75H3C2.60218 0.75 2.22064 0.908035 1.93934 1.18934C1.65804 1.47064 1.5 1.85218 1.5 2.25V12.75H3V2.25H12V0.75Z"
|
||||||
fill="#A2B1C6"
|
fill="#A2B1C6"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Duplicate inquiry
|
Duplicate query
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
@@ -26,13 +27,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'CopyIcon',
|
name: 'CopyIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin]
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -6,17 +6,18 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip($event, 'top-left')"
|
@click.stop="$emit('click')"
|
||||||
@mouseleave="hideTooltip"
|
@mouseover="showTooltip"
|
||||||
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M6.75 2.25V3H3V4.5H3.75V14.25C3.75 14.6478 3.90804 15.0294 4.18934 15.3107C4.47064 15.592 4.85218 15.75 5.25 15.75H12.75C13.1478 15.75 13.5294 15.592 13.8107 15.3107C14.092 15.0294 14.25 14.6478 14.25 14.25V4.5H15V3H11.25V2.25H6.75ZM5.25 4.5H12.75V14.25H5.25V4.5ZM6.75 6V12.75H8.25V6H6.75ZM9.75 6V12.75H11.25V6H9.75Z"
|
d="M6.75 2.25V3H3V4.5H3.75V14.25C3.75 14.6478 3.90804 15.0294 4.18934 15.3107C4.47064 15.592 4.85218 15.75 5.25 15.75H12.75C13.1478 15.75 13.5294 15.592 13.8107 15.3107C14.092 15.0294 14.25 14.6478 14.25 14.25V4.5H15V3H11.25V2.25H6.75ZM5.25 4.5H12.75V14.25H5.25V4.5ZM6.75 6V12.75H8.25V6H6.75ZM9.75 6V12.75H11.25V6H9.75Z"
|
||||||
fill="#A2B1C6"
|
fill="#A2B1C6"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Delete inquiry
|
Delete query
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
@@ -26,13 +27,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'DeleteIcon',
|
name: 'DeleteIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin]
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -6,17 +6,18 @@
|
|||||||
height="18"
|
height="18"
|
||||||
viewBox="0 0 18 18"
|
viewBox="0 0 18 18"
|
||||||
fill="none"
|
fill="none"
|
||||||
@click.stop="onClick"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@mouseenter="showTooltip"
|
@click.stop="$emit('click')"
|
||||||
@mouseleave="hideTooltip"
|
@mouseover="showTooltip"
|
||||||
|
@mouseout="hideTooltip"
|
||||||
>
|
>
|
||||||
<path
|
<path
|
||||||
d="M10.545 6.75L11.25 7.455L4.44 14.25H3.75V13.56L10.545 6.75ZM13.245 2.25C13.0575 2.25 12.8625 2.325 12.72 2.4675L11.3475 3.84L14.16 6.6525L15.5325 5.28C15.825 4.9875 15.825 4.5 15.5325 4.2225L13.7775 2.4675C13.6275 2.3175 13.44 2.25 13.245 2.25ZM10.545 4.6425L2.25 12.9375V15.75H5.0625L13.3575 7.455L10.545 4.6425Z"
|
d="M10.545 6.75L11.25 7.455L4.44 14.25H3.75V13.56L10.545 6.75ZM13.245 2.25C13.0575 2.25 12.8625 2.325 12.72 2.4675L11.3475 3.84L14.16 6.6525L15.5325 5.28C15.825 4.9875 15.825 4.5 15.5325 4.2225L13.7775 2.4675C13.6275 2.3175 13.44 2.25 13.245 2.25ZM10.545 4.6425L2.25 12.9375V15.75H5.0625L13.3575 7.455L10.545 4.6425Z"
|
||||||
fill="#A2B1C6"
|
fill="#A2B1C6"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
<span class="icon-tooltip" :style="tooltipStyle" ref="tooltip">
|
<span class="icon-tooltip" :style="tooltipStyle">
|
||||||
Rename inquiry
|
Rename query
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
@@ -26,13 +27,7 @@ import tooltipMixin from '@/tooltipMixin'
|
|||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'RenameIcon',
|
name: 'RenameIcon',
|
||||||
mixins: [tooltipMixin],
|
mixins: [tooltipMixin]
|
||||||
methods: {
|
|
||||||
onClick () {
|
|
||||||
this.hideTooltip()
|
|
||||||
this.$emit('click')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div v-show="visible" class="chart-container" ref="chartContainer">
|
|
||||||
<div class="warning chart-warning" v-show="!dataSources && visible">
|
|
||||||
There is no data to build a chart. Run your SQL query and make sure the result is not empty.
|
|
||||||
</div>
|
|
||||||
<PlotlyEditor
|
|
||||||
:data="state.data"
|
|
||||||
:layout="state.layout"
|
|
||||||
:frames="state.frames"
|
|
||||||
:config="{ editable: true, displaylogo: false, modeBarButtonsToRemove: ['toImage'] }"
|
|
||||||
:dataSources="dataSources"
|
|
||||||
:dataSourceOptions="dataSourceOptions"
|
|
||||||
:plotly="plotly"
|
|
||||||
@onUpdate="update"
|
|
||||||
@onRender="onRender"
|
|
||||||
:useResizeHandler="true"
|
|
||||||
:debug="true"
|
|
||||||
:advancedTraceTypeSelector="true"
|
|
||||||
class="chart"
|
|
||||||
ref="plotlyEditor"
|
|
||||||
:style="{ height: !dataSources ? 'calc(100% - 40px)' : '100%' }"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import plotly from 'plotly.js'
|
|
||||||
import 'react-chart-editor/lib/react-chart-editor.min.css'
|
|
||||||
|
|
||||||
import PlotlyEditor from 'react-chart-editor'
|
|
||||||
import chartHelper from './chartHelper'
|
|
||||||
import dereference from 'react-chart-editor/lib/lib/dereference'
|
|
||||||
import fIo from '@/lib/utils/fileIo'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'Chart',
|
|
||||||
props: ['dataSources', 'initOptions', 'importToPngEnabled'],
|
|
||||||
components: {
|
|
||||||
PlotlyEditor
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
plotly: plotly,
|
|
||||||
state: this.initOptions || {
|
|
||||||
data: [],
|
|
||||||
layout: {},
|
|
||||||
frames: []
|
|
||||||
},
|
|
||||||
visible: true,
|
|
||||||
resizeObserver: null
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
dataSourceOptions () {
|
|
||||||
return chartHelper.getOptionsFromDataSources(this.dataSources)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.resizeObserver = new ResizeObserver(this.handleResize)
|
|
||||||
this.resizeObserver.observe(this.$refs.chartContainer)
|
|
||||||
},
|
|
||||||
beforeDestroy () {
|
|
||||||
this.resizeObserver.unobserve(this.$refs.chartContainer)
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
dataSources () {
|
|
||||||
// we need to update state.data in order to update the graph
|
|
||||||
// https://github.com/plotly/react-chart-editor/issues/948
|
|
||||||
dereference(this.state.data, this.dataSources)
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleResize () {
|
|
||||||
this.visible = false
|
|
||||||
this.$nextTick(() => {
|
|
||||||
this.visible = true
|
|
||||||
})
|
|
||||||
},
|
|
||||||
onRender (data, layout, frames) {
|
|
||||||
// TODO: check changes and enable Save button if needed
|
|
||||||
},
|
|
||||||
update (data, layout, frames) {
|
|
||||||
this.state = { data, layout, frames }
|
|
||||||
this.$emit('update')
|
|
||||||
},
|
|
||||||
getOptionsForSave () {
|
|
||||||
return chartHelper.getOptionsForSave(this.state, this.dataSources)
|
|
||||||
},
|
|
||||||
async saveAsPng () {
|
|
||||||
const chartElement = this.$refs.plotlyEditor.$el.querySelector('.js-plotly-plot')
|
|
||||||
const url = await plotly.toImage(chartElement, { format: 'png', width: null, height: null })
|
|
||||||
this.$emit('loadingImageCompleted')
|
|
||||||
fIo.downloadFromUrl(url, 'chart')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.chart-container {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chart-warning {
|
|
||||||
height: 40px;
|
|
||||||
line-height: 40px;
|
|
||||||
border-bottom: 1px solid var(--color-border);
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chart {
|
|
||||||
min-height: 242px;
|
|
||||||
}
|
|
||||||
|
|
||||||
>>> .editor_controls .sidebar__item:before {
|
|
||||||
width: 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,71 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div :class="['pivot-sort-btn', direction] " @click="changeSorting">
|
|
||||||
{{ value.includes('key') ? 'key' : 'value' }}
|
|
||||||
<sort-icon
|
|
||||||
class="sort-icon"
|
|
||||||
:horizontal="direction === 'col'"
|
|
||||||
:asc="value.includes('a_to_z')"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import SortIcon from '@/components/svg/sort'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'PivotSortBtn',
|
|
||||||
props: ['direction', 'value'],
|
|
||||||
components: {
|
|
||||||
SortIcon
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
changeSorting () {
|
|
||||||
if (this.value === 'key_a_to_z') {
|
|
||||||
this.$emit('input', 'value_a_to_z')
|
|
||||||
} else if (this.value === 'value_a_to_z') {
|
|
||||||
this.$emit('input', 'value_z_to_a')
|
|
||||||
} else {
|
|
||||||
this.$emit('input', 'key_a_to_z')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.pivot-sort-btn {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
width: 43px;
|
|
||||||
height: 27px;
|
|
||||||
background-color: var(--color-bg-light-4);
|
|
||||||
border-radius: var(--border-radius-medium-2);
|
|
||||||
border: 1px solid var(--color-border);
|
|
||||||
cursor: pointer;
|
|
||||||
font-size: 11px;
|
|
||||||
color: var(--color-text-base);
|
|
||||||
line-height: 8px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
.pivot-sort-btn:hover {
|
|
||||||
color: var(--color-text-active);
|
|
||||||
border-color: var(--color-border-dark);
|
|
||||||
}
|
|
||||||
.pivot-sort-btn:hover >>> .sort-icon path {
|
|
||||||
fill: var(--color-text-active);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-sort-btn.col {
|
|
||||||
flex-direction: column;
|
|
||||||
padding-top: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-sort-btn.row {
|
|
||||||
flex-direction: row;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-sort-btn.row .sort-icon {
|
|
||||||
margin-left: 2px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,302 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="pivot-ui">
|
|
||||||
<div :class="{collapsed}">
|
|
||||||
<div class="row">
|
|
||||||
<label>Columns</label>
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select cols"
|
|
||||||
v-model="cols"
|
|
||||||
:options="colsToSelect"
|
|
||||||
:disabled="colsToSelect.length === 0"
|
|
||||||
:multiple="true"
|
|
||||||
:hideSelected="true"
|
|
||||||
:close-on-select="true"
|
|
||||||
:show-labels="false"
|
|
||||||
:max="colsToSelect.length"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder=""
|
|
||||||
>
|
|
||||||
<template slot="maxElements">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template slot="placeholder">Choose columns</template>
|
|
||||||
|
|
||||||
<template slot="noResult">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
</multiselect>
|
|
||||||
<pivot-sort-btn class="sort-btn" direction="col" v-model="colOrder" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<label>Rows</label>
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select rows"
|
|
||||||
v-model="rows"
|
|
||||||
:options="rowsToSelect"
|
|
||||||
:disabled="rowsToSelect.length === 0"
|
|
||||||
:multiple="true"
|
|
||||||
:hideSelected="true"
|
|
||||||
:close-on-select="true"
|
|
||||||
:show-labels="false"
|
|
||||||
:max="rowsToSelect.length"
|
|
||||||
:option-height="29"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder=""
|
|
||||||
>
|
|
||||||
<template slot="maxElements">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<template slot="placeholder">Choose rows</template>
|
|
||||||
|
|
||||||
<template slot="noResult">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
</multiselect>
|
|
||||||
<pivot-sort-btn class="sort-btn" direction="row" v-model="rowOrder" />
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row aggregator">
|
|
||||||
<label>Aggregator</label>
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select short aggregator"
|
|
||||||
v-model="aggregator"
|
|
||||||
:options="aggregators"
|
|
||||||
label="name"
|
|
||||||
track-by="name"
|
|
||||||
:close-on-select="true"
|
|
||||||
:show-labels="false"
|
|
||||||
:hideSelected="true"
|
|
||||||
:option-height="29"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder="Choose a function"
|
|
||||||
>
|
|
||||||
<template slot="noResult">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
</multiselect>
|
|
||||||
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select aggr-arg"
|
|
||||||
v-show="valCount > 0"
|
|
||||||
v-model="val1"
|
|
||||||
:options="keyNames"
|
|
||||||
:disabled="keyNames.length === 0"
|
|
||||||
:close-on-select="true"
|
|
||||||
:show-labels="false"
|
|
||||||
:hideSelected="true"
|
|
||||||
:option-height="29"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder="Choose an argument"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select aggr-arg"
|
|
||||||
v-show="valCount > 1"
|
|
||||||
v-model="val2"
|
|
||||||
:options="keyNames"
|
|
||||||
:disabled="keyNames.length === 0"
|
|
||||||
:close-on-select="true"
|
|
||||||
:show-labels="false"
|
|
||||||
:hideSelected="true"
|
|
||||||
:option-height="29"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder="Choose a second argument"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row">
|
|
||||||
<label>View</label>
|
|
||||||
<multiselect
|
|
||||||
class="sqliteviz-select short renderer"
|
|
||||||
v-model="renderer"
|
|
||||||
:options="renderers"
|
|
||||||
label="name"
|
|
||||||
track-by="name"
|
|
||||||
:close-on-select="true"
|
|
||||||
:allow-empty="false"
|
|
||||||
:show-labels="false"
|
|
||||||
:hideSelected="true"
|
|
||||||
:option-height="29"
|
|
||||||
open-direction="bottom"
|
|
||||||
placeholder="Choose a view"
|
|
||||||
>
|
|
||||||
<template slot="noResult">
|
|
||||||
<span class="no-results">No Results</span>
|
|
||||||
</template>
|
|
||||||
</multiselect>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<span @click="collapsed = !collapsed" class="switcher">
|
|
||||||
{{ collapsed ? 'Show pivot settings' : 'Hide pivot settings' }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import $ from 'jquery'
|
|
||||||
import Multiselect from 'vue-multiselect'
|
|
||||||
import PivotSortBtn from './PivotSortBtn'
|
|
||||||
import { renderers, aggregators, zeroValAggregators, twoValAggregators } from './pivotHelper'
|
|
||||||
import Chart from '@/views/Main/Workspace/Tabs/Tab/DataView/Chart'
|
|
||||||
import Vue from 'vue'
|
|
||||||
const ChartClass = Vue.extend(Chart)
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'pivotUi',
|
|
||||||
props: ['keyNames', 'value'],
|
|
||||||
components: {
|
|
||||||
Multiselect,
|
|
||||||
PivotSortBtn
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
const aggregatorName = (this.value && this.value.aggregatorName) || 'Count'
|
|
||||||
const rendererName = (this.value && this.value.rendererName) || 'Table'
|
|
||||||
return {
|
|
||||||
collapsed: false,
|
|
||||||
renderer: { name: rendererName, fun: $.pivotUtilities.renderers[rendererName] },
|
|
||||||
aggregator: { name: aggregatorName, fun: $.pivotUtilities.aggregators[aggregatorName] },
|
|
||||||
rows: (this.value && this.value.rows) || [],
|
|
||||||
cols: (this.value && this.value.cols) || [],
|
|
||||||
val1: (this.value && this.value.vals && this.value.vals[0]) || '',
|
|
||||||
val2: (this.value && this.value.vals && this.value.vals[1]) || '',
|
|
||||||
colOrder: (this.value && this.value.colOrder) || 'key_a_to_z',
|
|
||||||
rowOrder: (this.value && this.value.rowOrder) || 'key_a_to_z',
|
|
||||||
customChartComponent:
|
|
||||||
(this.value && this.value.rendererOptions && this.value.rendererOptions.customChartComponent) ||
|
|
||||||
new ChartClass()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
valCount () {
|
|
||||||
if (zeroValAggregators.includes(this.aggregator.name)) {
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
if (twoValAggregators.includes(this.aggregator.name)) {
|
|
||||||
return 2
|
|
||||||
}
|
|
||||||
|
|
||||||
return 1
|
|
||||||
},
|
|
||||||
renderers () {
|
|
||||||
return renderers
|
|
||||||
},
|
|
||||||
aggregators () {
|
|
||||||
return aggregators
|
|
||||||
},
|
|
||||||
rowsToSelect () {
|
|
||||||
return this.keyNames.filter(key => !this.cols.includes(key))
|
|
||||||
},
|
|
||||||
colsToSelect () {
|
|
||||||
return this.keyNames.filter(key => !this.rows.includes(key))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
renderer () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
aggregator () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
rows () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
cols () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
val1 () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
val2 () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
colOrder () {
|
|
||||||
this.returnValue()
|
|
||||||
},
|
|
||||||
rowOrder () {
|
|
||||||
this.returnValue()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
created () {
|
|
||||||
this.customChartComponent.$on('update', () => { this.$emit('update') })
|
|
||||||
this.customChartComponent.$on('loadingImageCompleted', value => { this.$emit('loadingCustomChartImageCompleted') })
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
returnValue () {
|
|
||||||
const vals = []
|
|
||||||
for (let i = 1; i <= this.valCount; i++) {
|
|
||||||
vals.push(this[`val${i}`])
|
|
||||||
}
|
|
||||||
this.$emit('update')
|
|
||||||
this.$emit('input', {
|
|
||||||
rows: this.rows,
|
|
||||||
cols: this.cols,
|
|
||||||
colOrder: this.colOrder,
|
|
||||||
rowOrder: this.rowOrder,
|
|
||||||
aggregator: this.aggregator.fun(vals),
|
|
||||||
aggregatorName: this.aggregator.name,
|
|
||||||
renderer: this.renderer.fun,
|
|
||||||
rendererName: this.renderer.name,
|
|
||||||
rendererOptions: this.renderer.name !== 'Custom chart' ? undefined : {
|
|
||||||
customChartComponent: this.customChartComponent
|
|
||||||
},
|
|
||||||
vals
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<style scoped>
|
|
||||||
.pivot-ui {
|
|
||||||
padding: 12px 24px;
|
|
||||||
color: var(--color-text-base);
|
|
||||||
font-size: 12px;
|
|
||||||
border-bottom: 1px solid var(--color-border-light);
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-ui .row {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
margin: 12px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-ui .row label {
|
|
||||||
width: 76px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-ui .row .sqliteviz-select.short {
|
|
||||||
width: 220px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-ui .row .aggr-arg {
|
|
||||||
margin-left: 12px;
|
|
||||||
max-width: 220px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-ui .row .sort-btn {
|
|
||||||
margin-left: 12px;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.collapsed {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.switcher {
|
|
||||||
display: block;
|
|
||||||
width: min-content;
|
|
||||||
white-space: nowrap;
|
|
||||||
margin: auto;
|
|
||||||
cursor: pointer;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.switcher:hover {
|
|
||||||
color: var(--color-accent);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,77 +0,0 @@
|
|||||||
import $ from 'jquery'
|
|
||||||
import 'pivottable'
|
|
||||||
import 'pivottable/dist/export_renderers.js'
|
|
||||||
import 'pivottable/dist/plotly_renderers.js'
|
|
||||||
|
|
||||||
export const zeroValAggregators = [
|
|
||||||
'Count',
|
|
||||||
'Count as Fraction of Total',
|
|
||||||
'Count as Fraction of Rows',
|
|
||||||
'Count as Fraction of Columns'
|
|
||||||
]
|
|
||||||
|
|
||||||
export const twoValAggregators = [
|
|
||||||
'Sum over Sum',
|
|
||||||
'80% Upper Bound',
|
|
||||||
'80% Lower Bound'
|
|
||||||
]
|
|
||||||
|
|
||||||
export function _getDataSources (pivotData) {
|
|
||||||
const rowKeys = pivotData.getRowKeys()
|
|
||||||
const colKeys = pivotData.getColKeys()
|
|
||||||
|
|
||||||
const dataSources = {
|
|
||||||
'Column keys': colKeys.map(colKey => colKey.join('-')),
|
|
||||||
'Row keys': rowKeys.map(rowKey => rowKey.join('-'))
|
|
||||||
}
|
|
||||||
|
|
||||||
const dataSourcesByRows = {}
|
|
||||||
const dataSourcesByCols = {}
|
|
||||||
|
|
||||||
const rowAttrs = pivotData.rowAttrs.join('-')
|
|
||||||
const colAttrs = pivotData.colAttrs.join('-')
|
|
||||||
|
|
||||||
colKeys.forEach(colKey => {
|
|
||||||
const sourceColKey = colAttrs + ':' + colKey.join('-')
|
|
||||||
dataSourcesByCols[sourceColKey] = []
|
|
||||||
rowKeys.forEach(rowKey => {
|
|
||||||
const value = pivotData.getAggregator(rowKey, colKey).value()
|
|
||||||
dataSourcesByCols[sourceColKey].push(value)
|
|
||||||
const sourceRowKey = rowAttrs + ':' + rowKey.join('-')
|
|
||||||
if (!dataSourcesByRows[sourceRowKey]) {
|
|
||||||
dataSourcesByRows[sourceRowKey] = []
|
|
||||||
}
|
|
||||||
dataSourcesByRows[sourceRowKey].push(value)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
return Object.assign(dataSources, dataSourcesByCols, dataSourcesByRows)
|
|
||||||
}
|
|
||||||
|
|
||||||
function customChartRenderer (data, options) {
|
|
||||||
options.customChartComponent.dataSources = _getDataSources(data)
|
|
||||||
options.customChartComponent.$mount()
|
|
||||||
|
|
||||||
return $(options.customChartComponent.$el)
|
|
||||||
}
|
|
||||||
|
|
||||||
$.extend(
|
|
||||||
$.pivotUtilities.renderers,
|
|
||||||
$.pivotUtilities.export_renderers,
|
|
||||||
$.pivotUtilities.plotly_renderers,
|
|
||||||
{ 'Custom chart': customChartRenderer }
|
|
||||||
)
|
|
||||||
|
|
||||||
export const renderers = Object.keys($.pivotUtilities.renderers).map(key => {
|
|
||||||
return {
|
|
||||||
name: key,
|
|
||||||
fun: $.pivotUtilities.renderers[key]
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
export const aggregators = Object.keys($.pivotUtilities.aggregators).map(key => {
|
|
||||||
return {
|
|
||||||
name: key,
|
|
||||||
fun: $.pivotUtilities.aggregators[key]
|
|
||||||
}
|
|
||||||
})
|
|
||||||
@@ -1,228 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="pivot-container">
|
|
||||||
<div class="warning pivot-warning" v-show="!dataSources">
|
|
||||||
There is no data to build a pivot. Run your SQL query and make sure the result is not empty.
|
|
||||||
</div>
|
|
||||||
<pivot-ui
|
|
||||||
:key-names="columns"
|
|
||||||
v-model="pivotOptions"
|
|
||||||
@update="$emit('update')"
|
|
||||||
@loadingCustomChartImageCompleted="$emit('loadingImageCompleted')"
|
|
||||||
/>
|
|
||||||
<div ref="pivotOutput" class="pivot-output"/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import html2canvas from 'html2canvas'
|
|
||||||
import plotly from 'plotly.js'
|
|
||||||
import fIo from '@/lib/utils/fileIo'
|
|
||||||
import $ from 'jquery'
|
|
||||||
import 'pivottable'
|
|
||||||
import 'pivottable/dist/pivot.css'
|
|
||||||
import PivotUi from './PivotUi'
|
|
||||||
import Chart from '@/views/Main/Workspace/Tabs/Tab/DataView/Chart'
|
|
||||||
import Vue from 'vue'
|
|
||||||
const ChartClass = Vue.extend(Chart)
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'pivot',
|
|
||||||
props: ['dataSources', 'initOptions', 'importToPngEnabled'],
|
|
||||||
components: {
|
|
||||||
PivotUi
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
resizeObserver: null,
|
|
||||||
pivotOptions: !this.initOptions
|
|
||||||
? {
|
|
||||||
rows: [],
|
|
||||||
cols: [],
|
|
||||||
colOrder: 'key_a_to_z',
|
|
||||||
rowOrder: 'key_a_to_z',
|
|
||||||
aggregatorName: 'Count',
|
|
||||||
aggregator: $.pivotUtilities.aggregators.Count(),
|
|
||||||
vals: [],
|
|
||||||
rendererName: 'Table',
|
|
||||||
renderer: $.pivotUtilities.renderers.Table,
|
|
||||||
rendererOptions: undefined
|
|
||||||
}
|
|
||||||
: {
|
|
||||||
rows: this.initOptions.rows,
|
|
||||||
cols: this.initOptions.cols,
|
|
||||||
colOrder: this.initOptions.colOrder,
|
|
||||||
rowOrder: this.initOptions.rowOrder,
|
|
||||||
aggregatorName: this.initOptions.aggregatorName,
|
|
||||||
aggregator: $.pivotUtilities.aggregators[this.initOptions.aggregatorName](this.initOptions.vals),
|
|
||||||
vals: this.initOptions.vals,
|
|
||||||
rendererName: this.initOptions.rendererName,
|
|
||||||
renderer: $.pivotUtilities.renderers[this.initOptions.rendererName],
|
|
||||||
rendererOptions: !this.initOptions.rendererOptions ? undefined : {
|
|
||||||
customChartComponent: new ChartClass({
|
|
||||||
propsData: { initOptions: this.initOptions.rendererOptions.customChartOptions }
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
columns () {
|
|
||||||
return Object.keys(this.dataSources || {})
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
dataSources () {
|
|
||||||
this.show()
|
|
||||||
},
|
|
||||||
'pivotOptions.rendererName': {
|
|
||||||
immediate: true,
|
|
||||||
handler () {
|
|
||||||
this.$emit('update:importToPngEnabled', this.pivotOptions.rendererName !== 'TSV Export')
|
|
||||||
}
|
|
||||||
},
|
|
||||||
pivotOptions () {
|
|
||||||
this.show()
|
|
||||||
}
|
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.show()
|
|
||||||
// We need to detect resizing because plotly doesn't resize when resixe its container
|
|
||||||
// but it resize on window.resize (we will trigger it manualy in order to make plotly resize)
|
|
||||||
this.resizeObserver = new ResizeObserver(this.handleResize)
|
|
||||||
this.resizeObserver.observe(this.$refs.pivotOutput)
|
|
||||||
},
|
|
||||||
beforeDestroy () {
|
|
||||||
this.resizeObserver.unobserve(this.$refs.pivotOutput)
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleResize () {
|
|
||||||
// hack: plotly changes size only on window.resize event,
|
|
||||||
// so, we trigger it when container resizes (e.g. when move splitter)
|
|
||||||
if (this.pivotOptions.rendererName in $.pivotUtilities.plotly_renderers) {
|
|
||||||
window.dispatchEvent(new Event('resize'))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
show () {
|
|
||||||
const options = { ...this.pivotOptions }
|
|
||||||
if (this.pivotOptions.rendererName in $.pivotUtilities.plotly_renderers) {
|
|
||||||
options.rendererOptions = {
|
|
||||||
plotly: {
|
|
||||||
autosize: true,
|
|
||||||
width: null,
|
|
||||||
height: null
|
|
||||||
},
|
|
||||||
plotlyConfig: {
|
|
||||||
displaylogo: false,
|
|
||||||
responsive: true,
|
|
||||||
modeBarButtonsToRemove: ['toImage']
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$(this.$refs.pivotOutput).pivot(
|
|
||||||
function (callback) {
|
|
||||||
const rowCount = !this.dataSources ? 0 : this.dataSources[this.columns[0]].length
|
|
||||||
for (let i = 1; i <= rowCount; i++) {
|
|
||||||
const row = {}
|
|
||||||
this.columns.forEach(col => {
|
|
||||||
row[col] = this.dataSources[col][i - 1]
|
|
||||||
})
|
|
||||||
callback(row)
|
|
||||||
}
|
|
||||||
}.bind(this),
|
|
||||||
options
|
|
||||||
)
|
|
||||||
|
|
||||||
// fix for Firefox: fit plotly renderers just after choosing it in pivotUi
|
|
||||||
if (this.pivotOptions.rendererName in $.pivotUtilities.plotly_renderers) {
|
|
||||||
window.dispatchEvent(new Event('resize'))
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
getOptionsForSave () {
|
|
||||||
const options = { ...this.pivotOptions }
|
|
||||||
if (options.rendererOptions) {
|
|
||||||
const chartComponent = this.pivotOptions.rendererOptions.customChartComponent
|
|
||||||
options.rendererOptions = {
|
|
||||||
customChartOptions: chartComponent.getOptionsForSave()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return options
|
|
||||||
},
|
|
||||||
|
|
||||||
async saveAsPng () {
|
|
||||||
if (this.pivotOptions.rendererName === 'Custom chart') {
|
|
||||||
this.pivotOptions.rendererOptions.customChartComponent.saveAsPng()
|
|
||||||
} else if (this.pivotOptions.rendererName in $.pivotUtilities.plotly_renderers) {
|
|
||||||
const chartElement = this.$refs.pivotOutput.querySelector('.js-plotly-plot')
|
|
||||||
const url = await plotly.toImage(chartElement, {
|
|
||||||
format: 'png',
|
|
||||||
width: null,
|
|
||||||
height: null
|
|
||||||
})
|
|
||||||
this.$emit('loadingImageCompleted')
|
|
||||||
fIo.downloadFromUrl(url, 'pivot')
|
|
||||||
} else {
|
|
||||||
const tableElement = this.$refs.pivotOutput.querySelector('.pvtTable')
|
|
||||||
const canvas = await html2canvas(tableElement)
|
|
||||||
this.$emit('loadingImageCompleted')
|
|
||||||
fIo.downloadFromUrl(canvas.toDataURL('image/png'), 'pivot', 'image/png')
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.pivot-container {
|
|
||||||
height: 100%;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
background-color: var(--color-white);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-output {
|
|
||||||
flex-grow: 1;
|
|
||||||
width: 100%;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-warning {
|
|
||||||
height: 40px;
|
|
||||||
line-height: 40px;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
>>> .pvtTable {
|
|
||||||
min-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
>>> table.pvtTable tbody tr td,
|
|
||||||
>>> table.pvtTable thead tr th,
|
|
||||||
>>> table.pvtTable tbody tr th {
|
|
||||||
border-color: var(--color-border-light);
|
|
||||||
}
|
|
||||||
>>> table.pvtTable thead tr th,
|
|
||||||
>>> table.pvtTable tbody tr th {
|
|
||||||
background-color: var(--color-bg-dark);
|
|
||||||
color: var(--color-text-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
>>> table.pvtTable tbody tr td {
|
|
||||||
color: var(--color-text-base);
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-output >>> textarea {
|
|
||||||
color: var(--color-text-base);
|
|
||||||
min-width: 100%;
|
|
||||||
height: 100% !important;
|
|
||||||
display: block;
|
|
||||||
box-sizing: border-box;
|
|
||||||
border-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pivot-output >>> textarea:focus-visible {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="data-view-panel">
|
|
||||||
<div class="data-view-panel-content">
|
|
||||||
<component
|
|
||||||
:is="mode"
|
|
||||||
:init-options="mode === initMode ? initOptions : undefined"
|
|
||||||
:data-sources="dataSource"
|
|
||||||
:import-to-png-enabled.sync="importToPngEnabled"
|
|
||||||
@loadingImageCompleted="loadingImage = false"
|
|
||||||
ref="viewComponent"
|
|
||||||
@update="$emit('update')"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<side-tool-bar panel="dataView" @switchTo="$emit('switchTo', $event)">
|
|
||||||
<icon-button
|
|
||||||
:active="mode === 'chart'"
|
|
||||||
@click="mode = 'chart'"
|
|
||||||
tooltip="Switch to chart"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
>
|
|
||||||
<chart-icon />
|
|
||||||
</icon-button>
|
|
||||||
<icon-button
|
|
||||||
:active="mode === 'pivot'"
|
|
||||||
@click="mode = 'pivot'"
|
|
||||||
tooltip="Switch to pivot"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
>
|
|
||||||
<pivot-icon />
|
|
||||||
</icon-button>
|
|
||||||
|
|
||||||
<div class="side-tool-bar-divider"/>
|
|
||||||
|
|
||||||
<icon-button
|
|
||||||
:disabled="!importToPngEnabled || loadingImage"
|
|
||||||
:loading="loadingImage"
|
|
||||||
tooltip="Save as PNG image"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
@click="saveAsPng"
|
|
||||||
>
|
|
||||||
<png-icon />
|
|
||||||
</icon-button>
|
|
||||||
</side-tool-bar>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Chart from './Chart'
|
|
||||||
import Pivot from './Pivot'
|
|
||||||
import SideToolBar from '../SideToolBar'
|
|
||||||
import IconButton from '@/components/IconButton'
|
|
||||||
import ChartIcon from '@/components/svg/chart'
|
|
||||||
import PivotIcon from '@/components/svg/pivot'
|
|
||||||
import PngIcon from '@/components/svg/png'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'DataView',
|
|
||||||
props: ['dataSource', 'initOptions', 'initMode'],
|
|
||||||
components: {
|
|
||||||
Chart,
|
|
||||||
Pivot,
|
|
||||||
SideToolBar,
|
|
||||||
IconButton,
|
|
||||||
ChartIcon,
|
|
||||||
PivotIcon,
|
|
||||||
PngIcon
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
mode: this.initMode || 'chart',
|
|
||||||
importToPngEnabled: true,
|
|
||||||
loadingImage: false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
mode () {
|
|
||||||
this.$emit('update')
|
|
||||||
this.importToPngEnabled = true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
async saveAsPng () {
|
|
||||||
this.loadingImage = true
|
|
||||||
/*
|
|
||||||
setTimeout does its thing by putting its callback on the callback queue. The callback queue is only called by the browser after both the call stack and the render queue are done. So our animation (which is on the call stack) gets done, the render queue renders it, and then the browser is ready for the callback queue and calls the long-calculation.
|
|
||||||
|
|
||||||
nextTick allows you to do something after you have changed the data and VueJS has updated the DOM based on your data change, but before the browser has rendered those changed on the page.
|
|
||||||
|
|
||||||
Lees meer van Katinka Hesselink: http://www.hesselinkwebdesign.nl/2019/nexttick-vs-settimeout-in-vue/
|
|
||||||
|
|
||||||
*/
|
|
||||||
setTimeout(() => {
|
|
||||||
this.$refs.viewComponent.saveAsPng()
|
|
||||||
}, 0)
|
|
||||||
},
|
|
||||||
getOptionsForSave () {
|
|
||||||
return this.$refs.viewComponent.getOptionsForSave()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.data-view-panel {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.data-view-panel-content {
|
|
||||||
position: relative;
|
|
||||||
flex-grow: 1;
|
|
||||||
width: calc(100% - 39px);
|
|
||||||
height: 100%;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,130 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="run-result-panel" ref="runResultPanel">
|
|
||||||
<div class="run-result-panel-content">
|
|
||||||
<div
|
|
||||||
v-show="result === null && !isGettingResults && !error"
|
|
||||||
class="table-preview result-before"
|
|
||||||
>
|
|
||||||
Run your query and get results here
|
|
||||||
</div>
|
|
||||||
<div v-if="isGettingResults" class="table-preview result-in-progress">
|
|
||||||
<loading-indicator :size="30"/>
|
|
||||||
Fetching results...
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
v-show="result === undefined && !isGettingResults && !error"
|
|
||||||
class="table-preview result-empty"
|
|
||||||
>
|
|
||||||
No rows retrieved according to your query
|
|
||||||
</div>
|
|
||||||
<logs v-if="error" :messages="[error]"/>
|
|
||||||
<sql-table
|
|
||||||
v-if="result"
|
|
||||||
:data-set="result"
|
|
||||||
:time="time"
|
|
||||||
:pageSize="pageSize"
|
|
||||||
class="straight"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<side-tool-bar @switchTo="$emit('switchTo', $event)" panel="table"/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Logs from '@/components/Logs'
|
|
||||||
import SqlTable from '@/components/SqlTable'
|
|
||||||
import LoadingIndicator from '@/components/LoadingIndicator'
|
|
||||||
import SideToolBar from './SideToolBar'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'RunResult',
|
|
||||||
props: ['result', 'isGettingResults', 'error', 'time'],
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
resizeObserver: null,
|
|
||||||
pageSize: 20
|
|
||||||
}
|
|
||||||
},
|
|
||||||
components: {
|
|
||||||
SqlTable,
|
|
||||||
LoadingIndicator,
|
|
||||||
Logs,
|
|
||||||
SideToolBar
|
|
||||||
},
|
|
||||||
mounted () {
|
|
||||||
this.resizeObserver = new ResizeObserver(this.handleResize)
|
|
||||||
this.resizeObserver.observe(this.$refs.runResultPanel)
|
|
||||||
this.calculatePageSize()
|
|
||||||
},
|
|
||||||
beforeDestroy () {
|
|
||||||
this.resizeObserver.unobserve(this.$refs.runResultPanel)
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
handleResize () {
|
|
||||||
this.calculatePageSize()
|
|
||||||
},
|
|
||||||
calculatePageSize () {
|
|
||||||
const runResultPanel = this.$refs.runResultPanel
|
|
||||||
// 27 - table footer hight
|
|
||||||
// 5 - padding-bottom of rounded table container
|
|
||||||
// 35 - height of table header
|
|
||||||
const freeSpace = runResultPanel.offsetHeight - 27 - 5 - 35
|
|
||||||
this.pageSize = Math.max(Math.floor(freeSpace / 35), 20)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.run-result-panel {
|
|
||||||
display: flex;
|
|
||||||
height: 100%;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
|
|
||||||
.run-result-panel-content {
|
|
||||||
position: relative;
|
|
||||||
flex-grow: 1;
|
|
||||||
height: 100%;
|
|
||||||
width: 0;
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.table-preview {
|
|
||||||
position: absolute;
|
|
||||||
top: 40%;
|
|
||||||
left: 50%;
|
|
||||||
transform: translate(-50%, -50%);
|
|
||||||
color: var(--color-text-base);
|
|
||||||
font-size: 13px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.result-in-progress {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
will-change: opacity;
|
|
||||||
/*
|
|
||||||
We need to show loader in 1 sec after starting query execution. We can't do that with
|
|
||||||
setTimeout because the main thread can be busy by getting a result set from the web worker.
|
|
||||||
But we can use CSS animation for opacity. Opacity triggers changes only in the Composite Layer
|
|
||||||
stage in rendering waterfall. Hence it can be processed only with Compositor Thread while
|
|
||||||
the Main Thread processes a result set.
|
|
||||||
https://www.viget.com/articles/animation-performance-101-browser-under-the-hood/
|
|
||||||
*/
|
|
||||||
animation: show-loader 1s linear 0s 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
@keyframes show-loader {
|
|
||||||
0% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
99% {
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
100% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,67 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="side-tool-bar">
|
|
||||||
<icon-button
|
|
||||||
:active="panel === 'sqlEditor'"
|
|
||||||
tooltip="Switch panel to SQL editor"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
@click.native="$emit('switchTo', 'sqlEditor')"
|
|
||||||
>
|
|
||||||
<sql-editor-icon />
|
|
||||||
</icon-button>
|
|
||||||
|
|
||||||
<icon-button
|
|
||||||
:active="panel === 'table'"
|
|
||||||
tooltip="Switch panel to result set"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
@click.native="$emit('switchTo', 'table')"
|
|
||||||
>
|
|
||||||
<table-icon/>
|
|
||||||
</icon-button>
|
|
||||||
|
|
||||||
<icon-button
|
|
||||||
:active="panel === 'dataView'"
|
|
||||||
tooltip="Switch panel to data view"
|
|
||||||
tooltip-position="top-left"
|
|
||||||
@click.native="$emit('switchTo', 'dataView')"
|
|
||||||
>
|
|
||||||
<data-view-icon />
|
|
||||||
</icon-button>
|
|
||||||
|
|
||||||
<div class="side-tool-bar-divider" v-if="$slots.default"/>
|
|
||||||
|
|
||||||
<slot/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import IconButton from '@/components/IconButton'
|
|
||||||
import TableIcon from '@/components/svg/table'
|
|
||||||
import SqlEditorIcon from '@/components/svg/sqlEditor'
|
|
||||||
import DataViewIcon from '@/components/svg/dataView'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'SideToolBar',
|
|
||||||
props: ['panel'],
|
|
||||||
components: {
|
|
||||||
IconButton,
|
|
||||||
SqlEditorIcon,
|
|
||||||
DataViewIcon,
|
|
||||||
TableIcon
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.side-tool-bar {
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
border-left: 1px solid var(--color-border-light);
|
|
||||||
padding: 6px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.side-tool-bar-divider {
|
|
||||||
width: 26px;
|
|
||||||
height: 1px;
|
|
||||||
background: var(--color-border-light);
|
|
||||||
margin: 6px 0;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,160 +0,0 @@
|
|||||||
<template>
|
|
||||||
<div class="tab-content-container" v-show="isActive">
|
|
||||||
<splitpanes
|
|
||||||
class="query-results-splitter"
|
|
||||||
horizontal
|
|
||||||
:before="{ size: 50, max: 100 }"
|
|
||||||
:after="{ size: 50, max: 100 }"
|
|
||||||
>
|
|
||||||
<template #left-pane>
|
|
||||||
<div :id="'above-' + tabIndex" class="above" />
|
|
||||||
</template>
|
|
||||||
<template #right-pane>
|
|
||||||
<div :id="'bottom-'+ tabIndex" ref="bottomPane" class="bottomPane" />
|
|
||||||
</template>
|
|
||||||
</splitpanes>
|
|
||||||
|
|
||||||
<div :id="'hidden-'+ tabIndex" class="hidden-part" />
|
|
||||||
|
|
||||||
<teleport :to="`#${layout.sqlEditor}-${tabIndex}`">
|
|
||||||
<sql-editor
|
|
||||||
ref="sqlEditor"
|
|
||||||
v-model="query"
|
|
||||||
:is-getting-results="isGettingResults"
|
|
||||||
@switchTo="onSwitchView('sqlEditor', $event)"
|
|
||||||
@run="execute"
|
|
||||||
/>
|
|
||||||
</teleport>
|
|
||||||
|
|
||||||
<teleport :to="`#${layout.table}-${tabIndex}`">
|
|
||||||
<run-result
|
|
||||||
:result="result"
|
|
||||||
:is-getting-results="isGettingResults"
|
|
||||||
:error="error"
|
|
||||||
:time="time"
|
|
||||||
@switchTo="onSwitchView('table', $event)"
|
|
||||||
/>
|
|
||||||
</teleport>
|
|
||||||
|
|
||||||
<teleport :to="`#${layout.dataView}-${tabIndex}`">
|
|
||||||
<data-view
|
|
||||||
:data-source="(result && result.values) || null"
|
|
||||||
:init-options="initViewOptions"
|
|
||||||
:init-mode="initViewType"
|
|
||||||
ref="dataView"
|
|
||||||
@switchTo="onSwitchView('dataView', $event)"
|
|
||||||
@update="onDataViewUpdate"
|
|
||||||
/>
|
|
||||||
</teleport>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
import Splitpanes from '@/components/Splitpanes'
|
|
||||||
import SqlEditor from './SqlEditor'
|
|
||||||
import DataView from './DataView'
|
|
||||||
import RunResult from './RunResult'
|
|
||||||
import time from '@/lib/utils/time'
|
|
||||||
import Teleport from 'vue2-teleport'
|
|
||||||
|
|
||||||
export default {
|
|
||||||
name: 'Tab',
|
|
||||||
props: ['id', 'initName', 'initQuery', 'initViewOptions', 'tabIndex', 'isPredefined', 'initViewType'],
|
|
||||||
components: {
|
|
||||||
SqlEditor,
|
|
||||||
DataView,
|
|
||||||
RunResult,
|
|
||||||
Splitpanes,
|
|
||||||
Teleport
|
|
||||||
},
|
|
||||||
data () {
|
|
||||||
return {
|
|
||||||
query: this.initQuery,
|
|
||||||
result: null,
|
|
||||||
isGettingResults: false,
|
|
||||||
error: null,
|
|
||||||
time: 0,
|
|
||||||
layout: {
|
|
||||||
sqlEditor: 'above',
|
|
||||||
table: 'bottom',
|
|
||||||
dataView: 'hidden'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
computed: {
|
|
||||||
isActive () {
|
|
||||||
return this.id === this.$store.state.currentTabId
|
|
||||||
}
|
|
||||||
},
|
|
||||||
watch: {
|
|
||||||
isActive: {
|
|
||||||
immediate: true,
|
|
||||||
async handler () {
|
|
||||||
if (this.isActive) {
|
|
||||||
this.$store.commit('setCurrentTab', this)
|
|
||||||
await this.$nextTick()
|
|
||||||
this.$refs.sqlEditor.focus()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
query () {
|
|
||||||
this.$store.commit('updateTab', { index: this.tabIndex, isSaved: false })
|
|
||||||
}
|
|
||||||
},
|
|
||||||
methods: {
|
|
||||||
onSwitchView (from, to) {
|
|
||||||
const fromPosition = this.layout[from]
|
|
||||||
this.layout[from] = this.layout[to]
|
|
||||||
this.layout[to] = fromPosition
|
|
||||||
},
|
|
||||||
onDataViewUpdate () {
|
|
||||||
this.$store.commit('updateTab', { index: this.tabIndex, isSaved: false })
|
|
||||||
},
|
|
||||||
async execute () {
|
|
||||||
this.isGettingResults = true
|
|
||||||
this.result = null
|
|
||||||
this.error = null
|
|
||||||
const state = this.$store.state
|
|
||||||
try {
|
|
||||||
const start = new Date()
|
|
||||||
this.result = await state.db.execute(this.query + ';')
|
|
||||||
this.time = time.getPeriod(start, new Date())
|
|
||||||
} catch (err) {
|
|
||||||
this.error = {
|
|
||||||
type: 'error',
|
|
||||||
message: err
|
|
||||||
}
|
|
||||||
}
|
|
||||||
state.db.refreshSchema()
|
|
||||||
this.isGettingResults = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<style scoped>
|
|
||||||
.above {
|
|
||||||
height: 100%;
|
|
||||||
max-height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.hidden-part {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.tab-content-container {
|
|
||||||
background-color: var(--color-white);
|
|
||||||
border-top: 1px solid var(--color-border-light);
|
|
||||||
margin-top: -1px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottomPane {
|
|
||||||
height: 100%;
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.query-results-splitter {
|
|
||||||
height: calc(100vh - 104px);
|
|
||||||
background-color: var(--color-bg-light);
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<main-menu />
|
<main-menu />
|
||||||
<keep-alive include="Workspace">
|
<keep-alive include="Editor">
|
||||||
<router-view id="main-view" />
|
<router-view id="main-view" />
|
||||||
</keep-alive>
|
</keep-alive>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div id="note">
|
<div id="note">
|
||||||
Sqliteviz is fully client-side. Your database never leaves your computer.
|
Sqliteviz is fully client-side. Your database never leaves your computer.
|
||||||
</div>
|
</div>
|
||||||
<button id="skip" class="secondary" @click="$router.push('/workspace')">
|
<button id="skip" class="secondary" @click="$router.push('/editor')">
|
||||||
Create empty database
|
Create empty database
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -58,13 +58,12 @@ describe('CsvImport.vue', () => {
|
|||||||
sinon.stub(csv, 'parse').resolves({
|
sinon.stub(csv, 'parse').resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [1, 2],
|
[1, 'foo'],
|
||||||
col2: ['foo', 'bar']
|
[2, 'bar']
|
||||||
}
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
messages: [{
|
messages: [{
|
||||||
code: 'UndetectableDelimiter',
|
code: 'UndetectableDelimiter',
|
||||||
message: 'Comma was used as a standart delimiter',
|
message: 'Comma was used as a standart delimiter',
|
||||||
@@ -85,10 +84,10 @@ describe('CsvImport.vue', () => {
|
|||||||
expect(wrapper.findComponent({ name: 'check-box' }).vm.checked).to.equal(true)
|
expect(wrapper.findComponent({ name: 'check-box' }).vm.checked).to.equal(true)
|
||||||
const rows = wrapper.findAll('tbody tr')
|
const rows = wrapper.findAll('tbody tr')
|
||||||
expect(rows).to.have.lengthOf(2)
|
expect(rows).to.have.lengthOf(2)
|
||||||
expect(rows.at(0).findAll('td').at(0).text()).to.equal('foo')
|
expect(rows.at(0).findAll('td').at(0).text()).to.equal('1')
|
||||||
expect(rows.at(0).findAll('td').at(1).text()).to.equal('1')
|
expect(rows.at(0).findAll('td').at(1).text()).to.equal('foo')
|
||||||
expect(rows.at(1).findAll('td').at(0).text()).to.equal('bar')
|
expect(rows.at(1).findAll('td').at(0).text()).to.equal('2')
|
||||||
expect(rows.at(1).findAll('td').at(1).text()).to.equal('2')
|
expect(rows.at(1).findAll('td').at(1).text()).to.equal('bar')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
.to.include('Information about row 0. Comma was used as a standart delimiter.')
|
.to.include('Information about row 0. Comma was used as a standart delimiter.')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
@@ -102,13 +101,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [1],
|
[1, 'foo']
|
||||||
col2: ['foo']
|
]
|
||||||
}
|
}
|
||||||
},
|
|
||||||
rowCount: 1
|
|
||||||
})
|
})
|
||||||
|
|
||||||
wrapper.vm.previewCsv()
|
wrapper.vm.previewCsv()
|
||||||
@@ -119,13 +116,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: ',',
|
delimiter: ',',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [2],
|
[2, 'bar']
|
||||||
col2: ['bar']
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false
|
hasErrors: false
|
||||||
})
|
})
|
||||||
await wrapper.find('.delimiter-selector-container input').setValue(',')
|
await wrapper.find('.delimiter-selector-container input').setValue(',')
|
||||||
@@ -134,21 +129,19 @@ describe('CsvImport.vue', () => {
|
|||||||
|
|
||||||
let rows = wrapper.findAll('tbody tr')
|
let rows = wrapper.findAll('tbody tr')
|
||||||
expect(rows).to.have.lengthOf(1)
|
expect(rows).to.have.lengthOf(1)
|
||||||
expect(rows.at(0).findAll('td').at(0).text()).to.equal('bar')
|
expect(rows.at(0).findAll('td').at(0).text()).to.equal('2')
|
||||||
expect(rows.at(0).findAll('td').at(1).text()).to.equal('2')
|
expect(rows.at(0).findAll('td').at(1).text()).to.equal('bar')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
.to.include('Preview parsing is completed in')
|
.to.include('Preview parsing is completed in')
|
||||||
|
|
||||||
parse.onCall(2).resolves({
|
parse.onCall(2).resolves({
|
||||||
delimiter: ',',
|
delimiter: ',',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [3],
|
[3, 'baz']
|
||||||
col2: ['baz']
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: true,
|
hasErrors: true,
|
||||||
messages: [{
|
messages: [{
|
||||||
code: 'MissingQuotes',
|
code: 'MissingQuotes',
|
||||||
@@ -164,8 +157,8 @@ describe('CsvImport.vue', () => {
|
|||||||
await csv.parse.returnValues[2]
|
await csv.parse.returnValues[2]
|
||||||
rows = wrapper.findAll('tbody tr')
|
rows = wrapper.findAll('tbody tr')
|
||||||
expect(rows).to.have.lengthOf(1)
|
expect(rows).to.have.lengthOf(1)
|
||||||
expect(rows.at(0).findAll('td').at(0).text()).to.equal('baz')
|
expect(rows.at(0).findAll('td').at(0).text()).to.equal('3')
|
||||||
expect(rows.at(0).findAll('td').at(1).text()).to.equal('3')
|
expect(rows.at(0).findAll('td').at(1).text()).to.equal('baz')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
.to.contain('Error in row 0. Quote is missed. Edit your CSV so that the field has a closing quote char.')
|
.to.contain('Error in row 0. Quote is missed. Edit your CSV so that the field has a closing quote char.')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
@@ -174,13 +167,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(3).resolves({
|
parse.onCall(3).resolves({
|
||||||
delimiter: ',',
|
delimiter: ',',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [4],
|
[4, 'qux']
|
||||||
col2: ['qux']
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false
|
hasErrors: false
|
||||||
})
|
})
|
||||||
await wrapper.find('#escape-char input').setValue("'")
|
await wrapper.find('#escape-char input').setValue("'")
|
||||||
@@ -188,21 +179,19 @@ describe('CsvImport.vue', () => {
|
|||||||
await csv.parse.returnValues[3]
|
await csv.parse.returnValues[3]
|
||||||
rows = wrapper.findAll('tbody tr')
|
rows = wrapper.findAll('tbody tr')
|
||||||
expect(rows).to.have.lengthOf(1)
|
expect(rows).to.have.lengthOf(1)
|
||||||
expect(rows.at(0).findAll('td').at(0).text()).to.equal('qux')
|
expect(rows.at(0).findAll('td').at(0).text()).to.equal('4')
|
||||||
expect(rows.at(0).findAll('td').at(1).text()).to.equal('4')
|
expect(rows.at(0).findAll('td').at(1).text()).to.equal('qux')
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
.to.contain('Preview parsing is completed in')
|
.to.contain('Preview parsing is completed in')
|
||||||
|
|
||||||
parse.onCall(4).resolves({
|
parse.onCall(4).resolves({
|
||||||
delimiter: ',',
|
delimiter: ',',
|
||||||
data: {
|
data: {
|
||||||
columns: ['col2', 'col1'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [5],
|
[5, 'corge']
|
||||||
col2: ['corge']
|
]
|
||||||
}
|
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false
|
hasErrors: false
|
||||||
})
|
})
|
||||||
await wrapper.findComponent({ name: 'check-box' }).trigger('click')
|
await wrapper.findComponent({ name: 'check-box' }).trigger('click')
|
||||||
@@ -210,9 +199,8 @@ describe('CsvImport.vue', () => {
|
|||||||
await csv.parse.returnValues[4]
|
await csv.parse.returnValues[4]
|
||||||
rows = wrapper.findAll('tbody tr')
|
rows = wrapper.findAll('tbody tr')
|
||||||
expect(rows).to.have.lengthOf(1)
|
expect(rows).to.have.lengthOf(1)
|
||||||
expect(rows.at(0).findAll('td').at(0).text()).to.equal('corge')
|
expect(rows.at(0).findAll('td').at(0).text()).to.equal('5')
|
||||||
expect(rows.at(0).findAll('td').at(1).text()).to.equal('5')
|
expect(rows.at(0).findAll('td').at(1).text()).to.equal('corge')
|
||||||
|
|
||||||
expect(wrapper.findComponent({ name: 'logs' }).text())
|
expect(wrapper.findComponent({ name: 'logs' }).text())
|
||||||
.to.include('Preview parsing is completed in')
|
.to.include('Preview parsing is completed in')
|
||||||
})
|
})
|
||||||
@@ -222,10 +210,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
},
|
[1, 'foo']
|
||||||
rowCount: 1
|
]
|
||||||
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
wrapper.vm.previewCsv()
|
wrapper.vm.previewCsv()
|
||||||
@@ -275,10 +264,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -286,10 +276,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -330,10 +322,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -341,10 +334,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: [{
|
messages: [{
|
||||||
code: 'UndetectableDelimiter',
|
code: 'UndetectableDelimiter',
|
||||||
@@ -392,10 +387,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -403,10 +399,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: true,
|
hasErrors: true,
|
||||||
messages: [{
|
messages: [{
|
||||||
code: 'Error',
|
code: 'Error',
|
||||||
@@ -448,10 +446,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -459,10 +458,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -515,10 +516,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -526,10 +528,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -564,10 +568,11 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(0).resolves({
|
parse.onCall(0).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -575,10 +580,12 @@ describe('CsvImport.vue', () => {
|
|||||||
parse.onCall(1).resolves({
|
parse.onCall(1).resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1, 2],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo', 'bar']
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -615,10 +622,11 @@ describe('CsvImport.vue', () => {
|
|||||||
sinon.stub(csv, 'parse').resolves({
|
sinon.stub(csv, 'parse').resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
@@ -643,10 +651,11 @@ describe('CsvImport.vue', () => {
|
|||||||
sinon.stub(csv, 'parse').resolves({
|
sinon.stub(csv, 'parse').resolves({
|
||||||
delimiter: '|',
|
delimiter: '|',
|
||||||
data: {
|
data: {
|
||||||
col1: [1],
|
columns: ['col1', 'col2'],
|
||||||
col2: ['foo']
|
values: [
|
||||||
|
[1, 'foo']
|
||||||
|
]
|
||||||
},
|
},
|
||||||
rowCount: 1,
|
|
||||||
hasErrors: false,
|
hasErrors: false,
|
||||||
messages: []
|
messages: []
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -11,44 +11,42 @@ describe('csv.js', () => {
|
|||||||
it('getResult with fields', () => {
|
it('getResult with fields', () => {
|
||||||
const source = {
|
const source = {
|
||||||
data: [
|
data: [
|
||||||
{ id: 1, 'name ': 'foo', date: new Date('2021-06-30T14:10:24.717Z') },
|
{ id: 1, name: 'foo' },
|
||||||
{ id: 2, 'name ': 'bar', date: new Date('2021-07-30T14:10:15.717Z') }
|
{ id: 2, name: 'bar' }
|
||||||
],
|
],
|
||||||
meta: {
|
meta: {
|
||||||
fields: ['id', 'name ', 'date']
|
fields: ['id', 'name ']
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
expect(csv.getResult(source)).to.eql({
|
expect(csv.getResult(source)).to.eql({
|
||||||
columns: ['id', 'name', 'date'],
|
columns: ['id', 'name'],
|
||||||
values: {
|
values: [
|
||||||
id: [1, 2],
|
[1, 'foo'],
|
||||||
name: ['foo', 'bar'],
|
[2, 'bar']
|
||||||
date: ['2021-06-30T14:10:24.717Z', '2021-07-30T14:10:15.717Z']
|
]
|
||||||
}
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it('getResult without fields', () => {
|
it('getResult without fields', () => {
|
||||||
const source = {
|
const source = {
|
||||||
data: [
|
data: [
|
||||||
[1, 'foo', new Date('2021-06-30T14:10:24.717Z')],
|
[1, 'foo'],
|
||||||
[2, 'bar', new Date('2021-07-30T14:10:15.717Z')]
|
[2, 'bar']
|
||||||
],
|
],
|
||||||
meta: {}
|
meta: {}
|
||||||
}
|
}
|
||||||
expect(csv.getResult(source)).to.eql({
|
expect(csv.getResult(source)).to.eql({
|
||||||
columns: ['col1', 'col2', 'col3'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [1, 2],
|
[1, 'foo'],
|
||||||
col2: ['foo', 'bar'],
|
[2, 'bar']
|
||||||
col3: ['2021-06-30T14:10:24.717Z', '2021-07-30T14:10:15.717Z']
|
]
|
||||||
}
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
it('parse resolves', async () => {
|
it('parse resolves', async () => {
|
||||||
sinon.stub(Papa, 'parse').callsFake((file, config) => {
|
sinon.stub(Papa, 'parse').callsFake((file, config) => {
|
||||||
config.complete({
|
config.chunk({
|
||||||
data: [
|
data: [
|
||||||
[1, 'foo'],
|
[1, 'foo'],
|
||||||
[2, 'bar']
|
[2, 'bar']
|
||||||
@@ -74,19 +72,19 @@ describe('csv.js', () => {
|
|||||||
truncated: true
|
truncated: true
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
config.complete()
|
||||||
})
|
})
|
||||||
const file = {}
|
const file = {}
|
||||||
const result = await csv.parse(file)
|
const result = await csv.parse(file)
|
||||||
expect(result).to.eql({
|
expect(result).to.eql({
|
||||||
data: {
|
data: {
|
||||||
columns: ['col1', 'col2'],
|
columns: ['col1', 'col2'],
|
||||||
values: {
|
values: [
|
||||||
col1: [1, 2],
|
[1, 'foo'],
|
||||||
col2: ['foo', 'bar']
|
[2, 'bar']
|
||||||
}
|
]
|
||||||
},
|
},
|
||||||
delimiter: ',',
|
delimiter: ',',
|
||||||
rowCount: 2,
|
|
||||||
hasErrors: true,
|
hasErrors: true,
|
||||||
messages: [
|
messages: [
|
||||||
{
|
{
|
||||||
@@ -115,4 +113,96 @@ describe('csv.js', () => {
|
|||||||
const file = {}
|
const file = {}
|
||||||
await expect(csv.parse(file)).to.be.rejectedWith(err)
|
await expect(csv.parse(file)).to.be.rejectedWith(err)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
it('concat chunks', async () => {
|
||||||
|
sinon.stub(Papa, 'parse').callsFake((file, config) => {
|
||||||
|
config.chunk({
|
||||||
|
data: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar']
|
||||||
|
],
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
type: 'Quotes',
|
||||||
|
code: 'MissingQuotes',
|
||||||
|
message: 'Quote is missed',
|
||||||
|
row: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'Delimiter',
|
||||||
|
code: 'UndetectableDelimiter',
|
||||||
|
message: 'Comma was used as a standart delimiter',
|
||||||
|
row: 0
|
||||||
|
}
|
||||||
|
],
|
||||||
|
meta: {
|
||||||
|
delimiter: ',',
|
||||||
|
linebreak: '\n',
|
||||||
|
aborted: false,
|
||||||
|
truncated: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
config.chunk({
|
||||||
|
data: [
|
||||||
|
[3, 'baz'],
|
||||||
|
[4, 'boo']
|
||||||
|
],
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
type: 'Delimiter',
|
||||||
|
code: 'UndetectableDelimiter',
|
||||||
|
message: 'Comma was used as a standart delimiter',
|
||||||
|
row: 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
meta: {
|
||||||
|
delimiter: ',',
|
||||||
|
linebreak: '\n',
|
||||||
|
aborted: false,
|
||||||
|
truncated: true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
config.complete()
|
||||||
|
})
|
||||||
|
const file = {}
|
||||||
|
const result = await csv.parse(file)
|
||||||
|
|
||||||
|
expect(result).to.eql({
|
||||||
|
data: {
|
||||||
|
columns: ['col1', 'col2'],
|
||||||
|
values: [
|
||||||
|
[1, 'foo'],
|
||||||
|
[2, 'bar'],
|
||||||
|
[3, 'baz'],
|
||||||
|
[4, 'boo']
|
||||||
|
]
|
||||||
|
},
|
||||||
|
delimiter: ',',
|
||||||
|
hasErrors: true,
|
||||||
|
messages: [
|
||||||
|
{
|
||||||
|
code: 'MissingQuotes',
|
||||||
|
message: 'Quote is missed',
|
||||||
|
row: 0,
|
||||||
|
type: 'error',
|
||||||
|
hint: 'Edit your CSV so that the field has a closing quote char.'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'UndetectableDelimiter',
|
||||||
|
message: 'Comma was used as a standart delimiter',
|
||||||
|
row: 0,
|
||||||
|
type: 'info',
|
||||||
|
hint: undefined
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'UndetectableDelimiter',
|
||||||
|
message: 'Comma was used as a standart delimiter',
|
||||||
|
row: 2,
|
||||||
|
type: 'info',
|
||||||
|
hint: undefined
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ describe('DbUploader.vue', () => {
|
|||||||
place.remove()
|
place.remove()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('loads db on click and redirects to /workspace', async () => {
|
it('loads db on click and redirects to /editor', async () => {
|
||||||
// mock getting a file from user
|
// mock getting a file from user
|
||||||
const file = { name: 'test.db' }
|
const file = { name: 'test.db' }
|
||||||
sinon.stub(fu, 'getFileFromUser').resolves(file)
|
sinon.stub(fu, 'getFileFromUser').resolves(file)
|
||||||
@@ -59,11 +59,11 @@ describe('DbUploader.vue', () => {
|
|||||||
await db.loadDb.returnValues[0]
|
await db.loadDb.returnValues[0]
|
||||||
await wrapper.vm.animationPromise
|
await wrapper.vm.animationPromise
|
||||||
await wrapper.vm.$nextTick()
|
await wrapper.vm.$nextTick()
|
||||||
expect($router.push.calledOnceWith('/workspace')).to.equal(true)
|
expect($router.push.calledOnceWith('/editor')).to.equal(true)
|
||||||
wrapper.destroy()
|
wrapper.destroy()
|
||||||
})
|
})
|
||||||
|
|
||||||
it('loads db on drop and redirects to /workspace', async () => {
|
it('loads db on drop and redirects to /editor', async () => {
|
||||||
// mock db loading
|
// mock db loading
|
||||||
const db = {
|
const db = {
|
||||||
loadDb: sinon.stub().resolves()
|
loadDb: sinon.stub().resolves()
|
||||||
@@ -97,11 +97,11 @@ describe('DbUploader.vue', () => {
|
|||||||
await db.loadDb.returnValues[0]
|
await db.loadDb.returnValues[0]
|
||||||
await wrapper.vm.animationPromise
|
await wrapper.vm.animationPromise
|
||||||
await wrapper.vm.$nextTick()
|
await wrapper.vm.$nextTick()
|
||||||
expect($router.push.calledOnceWith('/workspace')).to.equal(true)
|
expect($router.push.calledOnceWith('/editor')).to.equal(true)
|
||||||
wrapper.destroy()
|
wrapper.destroy()
|
||||||
})
|
})
|
||||||
|
|
||||||
it("doesn't redirect if already on /workspace", async () => {
|
it("doesn't redirect if already on /editor", async () => {
|
||||||
// mock getting a file from user
|
// mock getting a file from user
|
||||||
const file = { name: 'test.db' }
|
const file = { name: 'test.db' }
|
||||||
sinon.stub(fu, 'getFileFromUser').resolves(file)
|
sinon.stub(fu, 'getFileFromUser').resolves(file)
|
||||||
@@ -114,7 +114,7 @@ describe('DbUploader.vue', () => {
|
|||||||
|
|
||||||
// mock router
|
// mock router
|
||||||
const $router = { push: sinon.stub() }
|
const $router = { push: sinon.stub() }
|
||||||
const $route = { path: '/workspace' }
|
const $route = { path: '/editor' }
|
||||||
|
|
||||||
// mount the component
|
// mount the component
|
||||||
const wrapper = shallowMount(DbUploader, {
|
const wrapper = shallowMount(DbUploader, {
|
||||||
@@ -141,7 +141,7 @@ describe('DbUploader.vue', () => {
|
|||||||
|
|
||||||
// mock router
|
// mock router
|
||||||
const $router = { push: sinon.stub() }
|
const $router = { push: sinon.stub() }
|
||||||
const $route = { path: '/workspace' }
|
const $route = { path: '/editor' }
|
||||||
|
|
||||||
// mount the component
|
// mount the component
|
||||||
const wrapper = mount(DbUploader, {
|
const wrapper = mount(DbUploader, {
|
||||||
@@ -175,7 +175,7 @@ describe('DbUploader.vue', () => {
|
|||||||
|
|
||||||
// mock router
|
// mock router
|
||||||
const $router = { push: sinon.stub() }
|
const $router = { push: sinon.stub() }
|
||||||
const $route = { path: '/workspace' }
|
const $route = { path: '/editor' }
|
||||||
|
|
||||||
// mount the component
|
// mount the component
|
||||||
const wrapper = mount(DbUploader, {
|
const wrapper = mount(DbUploader, {
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ describe('Logs.vue', () => {
|
|||||||
place = document.createElement('div')
|
place = document.createElement('div')
|
||||||
document.body.appendChild(place)
|
document.body.appendChild(place)
|
||||||
})
|
})
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
place.remove()
|
place.remove()
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -34,14 +34,10 @@ describe('_sql.js', () => {
|
|||||||
sql.open(data)
|
sql.open(data)
|
||||||
const result = sql.exec('SELECT * from test')
|
const result = sql.exec('SELECT * from test')
|
||||||
expect(result).to.have.lengthOf(1)
|
expect(result).to.have.lengthOf(1)
|
||||||
expect(result[0]).to.eql({
|
expect(result[0].columns).to.eql(['id', 'name', 'faculty'])
|
||||||
columns: ['id', 'name', 'faculty'],
|
expect(result[0].values).to.have.lengthOf(2)
|
||||||
values: {
|
expect(result[0].values[0]).to.eql([1, 'Harry Potter', 'Griffindor'])
|
||||||
id: [1, 2],
|
expect(result[0].values[1]).to.eql([2, 'Draco Malfoy', 'Slytherin'])
|
||||||
name: ['Harry Potter', 'Draco Malfoy'],
|
|
||||||
faculty: ['Griffindor', 'Slytherin']
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('throws an error if query is empty', async () => {
|
it('throws an error if query is empty', async () => {
|
||||||
@@ -68,23 +64,25 @@ describe('_sql.js', () => {
|
|||||||
it('imports', async () => {
|
it('imports', async () => {
|
||||||
const data = {
|
const data = {
|
||||||
columns: ['id', 'name'],
|
columns: ['id', 'name'],
|
||||||
values: {
|
values: [
|
||||||
id: [1, 2, 3, 4],
|
[1, 'Harry Potter'],
|
||||||
name: [
|
[2, 'Draco Malfoy'],
|
||||||
'Harry Potter',
|
[3, 'Hermione Granger'],
|
||||||
'Draco Malfoy',
|
[4, 'Ron Weasley']
|
||||||
'Hermione Granger',
|
]
|
||||||
'Ron Weasley'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
const progressCallback = sinon.stub()
|
const progressCallback = sinon.stub()
|
||||||
const progressCounterId = 1
|
const progressCounterId = 1
|
||||||
const sql = await Sql.build()
|
const sql = await Sql.build()
|
||||||
sql.import('foo', data, progressCounterId, progressCallback, 2)
|
sql.import('foo', data.columns, data.values, progressCounterId, progressCallback, 2)
|
||||||
const result = sql.exec('SELECT * from foo')
|
const result = sql.exec('SELECT * from foo')
|
||||||
expect(result).to.have.lengthOf(1)
|
expect(result).to.have.lengthOf(1)
|
||||||
expect(result[0]).to.eql(data)
|
expect(result[0].columns).to.eql(['id', 'name'])
|
||||||
|
expect(result[0].values).to.have.lengthOf(4)
|
||||||
|
expect(result[0].values[0]).to.eql([1, 'Harry Potter'])
|
||||||
|
expect(result[0].values[1]).to.eql([2, 'Draco Malfoy'])
|
||||||
|
expect(result[0].values[2]).to.eql([3, 'Hermione Granger'])
|
||||||
|
expect(result[0].values[3]).to.eql([4, 'Ron Weasley'])
|
||||||
|
|
||||||
expect(progressCallback.calledThrice).to.equal(true)
|
expect(progressCallback.calledThrice).to.equal(true)
|
||||||
expect(progressCallback.getCall(0).args[0]).to.eql({ progress: 0, id: 1 })
|
expect(progressCallback.getCall(0).args[0]).to.eql({ progress: 0, id: 1 })
|
||||||
@@ -110,11 +108,10 @@ describe('_sql.js', () => {
|
|||||||
anotherSql.open(data)
|
anotherSql.open(data)
|
||||||
const result = anotherSql.exec('SELECT * from test')
|
const result = anotherSql.exec('SELECT * from test')
|
||||||
expect(result).to.have.lengthOf(1)
|
expect(result).to.have.lengthOf(1)
|
||||||
expect(result[0].values).to.eql({
|
expect(result[0].columns).to.eql(['id', 'name', 'faculty'])
|
||||||
id: [1, 2],
|
expect(result[0].values).to.have.lengthOf(2)
|
||||||
name: ['Harry Potter', 'Draco Malfoy'],
|
expect(result[0].values[0]).to.eql([1, 'Harry Potter', 'Griffindor'])
|
||||||
faculty: ['Griffindor', 'Slytherin']
|
expect(result[0].values[1]).to.eql([2, 'Draco Malfoy', 'Slytherin'])
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('closes', async () => {
|
it('closes', async () => {
|
||||||
@@ -152,31 +149,22 @@ describe('_sql.js', () => {
|
|||||||
`)
|
`)
|
||||||
|
|
||||||
let result = sql.exec('SELECT * from test')
|
let result = sql.exec('SELECT * from test')
|
||||||
expect(result[0].values).to.eql({
|
expect(result[0].values).to.have.lengthOf(2)
|
||||||
id: [1, 2],
|
|
||||||
name: ['foo', 'bar']
|
|
||||||
})
|
|
||||||
|
|
||||||
const data = {
|
const data = {
|
||||||
columns: ['id', 'name'],
|
columns: ['id', 'name'],
|
||||||
values: {
|
values: [
|
||||||
id: [1, 2, 3, 4],
|
[1, 'Harry Potter'],
|
||||||
name: [
|
[2, 'Draco Malfoy'],
|
||||||
'Harry Potter',
|
[3, 'Hermione Granger'],
|
||||||
'Draco Malfoy',
|
[4, 'Ron Weasley']
|
||||||
'Hermione Granger',
|
]
|
||||||
'Ron Weasley'
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
// import adds table
|
// import adds table
|
||||||
sql.import('foo', data, 1, sinon.stub(), 2)
|
sql.import('foo', data.columns, data.values, 1, sinon.stub(), 2)
|
||||||
result = sql.exec('SELECT * from foo')
|
result = sql.exec('SELECT * from foo')
|
||||||
expect(result[0]).to.eql(data)
|
expect(result[0].values).to.have.lengthOf(4)
|
||||||
result = sql.exec('SELECT * from test')
|
result = sql.exec('SELECT * from test')
|
||||||
expect(result[0].values).to.eql({
|
expect(result[0].values).to.have.lengthOf(2)
|
||||||
id: [1, 2],
|
|
||||||
name: ['foo', 'bar']
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -3,18 +3,16 @@ import stmts from '@/lib/database/_statements'
|
|||||||
|
|
||||||
describe('_statements.js', () => {
|
describe('_statements.js', () => {
|
||||||
it('generateChunks', () => {
|
it('generateChunks', () => {
|
||||||
const source = {
|
const arr = ['1', '2', '3', '4', '5']
|
||||||
id: ['1', '2', '3', '4', '5']
|
|
||||||
}
|
|
||||||
const size = 2
|
const size = 2
|
||||||
const chunks = stmts.generateChunks(source, size)
|
const chunks = stmts.generateChunks(arr, size)
|
||||||
const output = []
|
const output = []
|
||||||
for (const chunk of chunks) {
|
for (const chunk of chunks) {
|
||||||
output.push(chunk)
|
output.push(chunk)
|
||||||
}
|
}
|
||||||
expect(output[0]).to.eql([['1'], ['2']])
|
expect(output[0]).to.eql(['1', '2'])
|
||||||
expect(output[1]).to.eql([['3'], ['4']])
|
expect(output[1]).to.eql(['3', '4'])
|
||||||
expect(output[2]).to.eql([['5']])
|
expect(output[2]).to.eql(['5'])
|
||||||
})
|
})
|
||||||
|
|
||||||
it('getInsertStmt', () => {
|
it('getInsertStmt', () => {
|
||||||
@@ -24,14 +22,12 @@ describe('_statements.js', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it('getCreateStatement', () => {
|
it('getCreateStatement', () => {
|
||||||
const data = {
|
const columns = ['id', 'name', 'isAdmin', 'startDate']
|
||||||
id: [1, 2],
|
const values = [
|
||||||
name: ['foo', 'bar'],
|
[1, 'foo', true, new Date()],
|
||||||
isAdmin: [true, false],
|
[2, 'bar', false, new Date()]
|
||||||
startDate: [new Date(), new Date()]
|
]
|
||||||
}
|
expect(stmts.getCreateStatement('foo', columns, values)).to.equal(
|
||||||
|
|
||||||
expect(stmts.getCreateStatement('foo', data)).to.equal(
|
|
||||||
'CREATE table "foo"("id" REAL, "name" TEXT, "isAdmin" INTEGER, "startDate" TEXT);'
|
'CREATE table "foo"("id" REAL, "name" TEXT, "isAdmin" INTEGER, "startDate" TEXT);'
|
||||||
)
|
)
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -25,7 +25,10 @@ describe('database.js', () => {
|
|||||||
it('creates schema', async () => {
|
it('creates schema', async () => {
|
||||||
const SQL = await getSQL
|
const SQL = await getSQL
|
||||||
const tempDb = new SQL.Database()
|
const tempDb = new SQL.Database()
|
||||||
tempDb.run('CREATE TABLE test (col1, col2 integer)')
|
tempDb.run(`CREATE TABLE test (
|
||||||
|
col1,
|
||||||
|
col2 integer
|
||||||
|
)`)
|
||||||
|
|
||||||
const data = tempDb.export()
|
const data = tempDb.export()
|
||||||
const buffer = new Blob([data])
|
const buffer = new Blob([data])
|
||||||
@@ -85,11 +88,11 @@ describe('database.js', () => {
|
|||||||
|
|
||||||
await db.loadDb(buffer)
|
await db.loadDb(buffer)
|
||||||
const result = await db.execute('SELECT * from test limit 1; SELECT * from test;')
|
const result = await db.execute('SELECT * from test limit 1; SELECT * from test;')
|
||||||
expect(result.values).to.eql({
|
expect(result.columns).to.have.lengthOf(3)
|
||||||
id: [1, 2],
|
expect(result.columns).to.eql(['id', 'name', 'faculty'])
|
||||||
name: ['Harry Potter', 'Draco Malfoy'],
|
expect(result.values).to.have.lengthOf(2)
|
||||||
faculty: ['Griffindor', 'Slytherin']
|
expect(result.values[0]).to.eql([1, 'Harry Potter', 'Griffindor'])
|
||||||
})
|
expect(result.values[1]).to.eql([2, 'Draco Malfoy', 'Slytherin'])
|
||||||
})
|
})
|
||||||
|
|
||||||
it('returns an error', async () => {
|
it('returns an error', async () => {
|
||||||
@@ -117,11 +120,10 @@ describe('database.js', () => {
|
|||||||
it('adds table from csv', async () => {
|
it('adds table from csv', async () => {
|
||||||
const data = {
|
const data = {
|
||||||
columns: ['id', 'name', 'faculty'],
|
columns: ['id', 'name', 'faculty'],
|
||||||
values: {
|
values: [
|
||||||
id: [1, 2],
|
[1, 'Harry Potter', 'Griffindor'],
|
||||||
name: ['Harry Potter', 'Draco Malfoy'],
|
[2, 'Draco Malfoy', 'Slytherin']
|
||||||
faculty: ['Griffindor', 'Slytherin']
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
const progressHandler = sinon.spy()
|
const progressHandler = sinon.spy()
|
||||||
const progressCounterId = db.createProgressCounter(progressHandler)
|
const progressCounterId = db.createProgressCounter(progressHandler)
|
||||||
@@ -138,7 +140,8 @@ describe('database.js', () => {
|
|||||||
expect(db.schema[0].columns[2]).to.eql({ name: 'faculty', type: 'text' })
|
expect(db.schema[0].columns[2]).to.eql({ name: 'faculty', type: 'text' })
|
||||||
|
|
||||||
const result = await db.execute('SELECT * from foo')
|
const result = await db.execute('SELECT * from foo')
|
||||||
expect(result).to.eql(data)
|
expect(result.columns).to.eql(data.columns)
|
||||||
|
expect(result.values).to.eql(data.values)
|
||||||
|
|
||||||
expect(progressHandler.calledTwice).to.equal(true)
|
expect(progressHandler.calledTwice).to.equal(true)
|
||||||
expect(progressHandler.firstCall.calledWith(0)).to.equal(true)
|
expect(progressHandler.firstCall.calledWith(0)).to.equal(true)
|
||||||
@@ -147,16 +150,16 @@ describe('database.js', () => {
|
|||||||
|
|
||||||
it('addTableFromCsv throws errors', async () => {
|
it('addTableFromCsv throws errors', async () => {
|
||||||
const data = {
|
const data = {
|
||||||
columns: [],
|
columns: ['id', 'name'],
|
||||||
values: {
|
values: [
|
||||||
id: [1, 2],
|
[1, 'Harry Potter', 'Griffindor'],
|
||||||
name: ['Harry Potter', 'Draco Malfoy'],
|
[2, 'Draco Malfoy', 'Slytherin']
|
||||||
faculty: null
|
]
|
||||||
}
|
|
||||||
}
|
}
|
||||||
const progressHandler = sinon.stub()
|
const progressHandler = sinon.stub()
|
||||||
const progressCounterId = db.createProgressCounter(progressHandler)
|
const progressCounterId = db.createProgressCounter(progressHandler)
|
||||||
await expect(db.addTableFromCsv('foo', data, progressCounterId)).to.be.rejected
|
await expect(db.addTableFromCsv('foo', data, progressCounterId))
|
||||||
|
.to.be.rejectedWith('column index out of range')
|
||||||
})
|
})
|
||||||
|
|
||||||
it('progressCounters', () => {
|
it('progressCounters', () => {
|
||||||
@@ -219,13 +222,9 @@ describe('database.js', () => {
|
|||||||
|
|
||||||
// check that new db works and has the same table and data
|
// check that new db works and has the same table and data
|
||||||
result = await anotherDb.execute('SELECT * from foo')
|
result = await anotherDb.execute('SELECT * from foo')
|
||||||
expect(result).to.eql({
|
expect(result.columns).to.eql(['id', 'name'])
|
||||||
columns: ['id', 'name'],
|
expect(result.values).to.have.lengthOf(1)
|
||||||
values: {
|
expect(result.values[0]).to.eql([1, 'Harry Potter'])
|
||||||
id: [1],
|
|
||||||
name: ['Harry Potter']
|
|
||||||
}
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
|
||||||
it('sanitizeTableName', () => {
|
it('sanitizeTableName', () => {
|
||||||
|
|||||||
@@ -1,299 +0,0 @@
|
|||||||
import chai from 'chai'
|
|
||||||
import database from '@/lib/database'
|
|
||||||
|
|
||||||
const expect = chai.expect
|
|
||||||
|
|
||||||
describe('SQLite extensions', function () {
|
|
||||||
let db
|
|
||||||
|
|
||||||
beforeEach(() => {
|
|
||||||
db = database.getNewDatabase()
|
|
||||||
})
|
|
||||||
|
|
||||||
afterEach(() => {
|
|
||||||
db.shutDown()
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports contrib trigonometric functions', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT
|
|
||||||
abs(3.1415926 - pi()) < 0.000001,
|
|
||||||
abs(1 - cos(2 * pi())) < 0.000001,
|
|
||||||
abs(0 - sin(pi())) < 0.000001,
|
|
||||||
abs(0 - tan(0)) < 0.000001,
|
|
||||||
abs(0 - cot(pi() / 2)) < 0.000001,
|
|
||||||
abs(1 - acos(cos(1))) < 0.000001,
|
|
||||||
abs(1 - asin(sin(1))) < 0.000001,
|
|
||||||
abs(1 - atan(tan(1))) < 0.000001,
|
|
||||||
abs(1 - cosh(0)) < 0.000001,
|
|
||||||
abs(0 - sinh(0)) < 0.000001,
|
|
||||||
abs(tanh(1) + tanh(-1)) < 0.000001,
|
|
||||||
abs(coth(1) + coth(-1)) < 0.000001,
|
|
||||||
abs(1 - acosh(cosh(1))) < 0.000001,
|
|
||||||
abs(1 - asinh(sinh(1))) < 0.000001,
|
|
||||||
abs(1 - atanh(tanh(1))) < 0.000001,
|
|
||||||
abs(180 - degrees(pi())) < 0.000001,
|
|
||||||
abs(pi() - radians(180)) < 0.000001,
|
|
||||||
abs(pi() / 2 - atan2(1, 0)) < 0.000001
|
|
||||||
`)
|
|
||||||
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
'abs(3.1415926 - pi()) < 0.000001': [1],
|
|
||||||
'abs(1 - cos(2 * pi())) < 0.000001': [1],
|
|
||||||
'abs(0 - sin(pi())) < 0.000001': [1],
|
|
||||||
'abs(0 - tan(0)) < 0.000001': [1],
|
|
||||||
'abs(0 - cot(pi() / 2)) < 0.000001': [1],
|
|
||||||
'abs(1 - acos(cos(1))) < 0.000001': [1],
|
|
||||||
'abs(1 - asin(sin(1))) < 0.000001': [1],
|
|
||||||
'abs(1 - atan(tan(1))) < 0.000001': [1],
|
|
||||||
'abs(1 - cosh(0)) < 0.000001': [1],
|
|
||||||
'abs(0 - sinh(0)) < 0.000001': [1],
|
|
||||||
'abs(tanh(1) + tanh(-1)) < 0.000001': [1],
|
|
||||||
'abs(coth(1) + coth(-1)) < 0.000001': [1],
|
|
||||||
'abs(1 - acosh(cosh(1))) < 0.000001': [1],
|
|
||||||
'abs(1 - asinh(sinh(1))) < 0.000001': [1],
|
|
||||||
'abs(1 - atanh(tanh(1))) < 0.000001': [1],
|
|
||||||
'abs(180 - degrees(pi())) < 0.000001': [1],
|
|
||||||
'abs(pi() - radians(180)) < 0.000001': [1],
|
|
||||||
'abs(pi() / 2 - atan2(1, 0)) < 0.000001': [1]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports contrib math functions', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT
|
|
||||||
exp(0),
|
|
||||||
log(exp(1)),
|
|
||||||
log10(10000),
|
|
||||||
power(2, 3),
|
|
||||||
sign(-10) + sign(20),
|
|
||||||
sqrt(square(16)),
|
|
||||||
ceil(-1.95) + ceil(1.95),
|
|
||||||
floor(-1.95) + floor(1.95)
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
'exp(0)': [1],
|
|
||||||
'log(exp(1))': [1],
|
|
||||||
'log10(10000)': [4],
|
|
||||||
'power(2, 3)': [8],
|
|
||||||
'sign(-10) + sign(20)': [0],
|
|
||||||
'sqrt(square(16))': [16],
|
|
||||||
'ceil(-1.95) + ceil(1.95)': [1],
|
|
||||||
'floor(-1.95) + floor(1.95)': [-1]
|
|
||||||
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports contrib string functions', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT
|
|
||||||
replicate('ab', 4),
|
|
||||||
charindex('ab', 'foobarabbarfoo'),
|
|
||||||
charindex('ab', 'foobarabbarfoo', 8),
|
|
||||||
leftstr('foobar', 2),
|
|
||||||
rightstr('foobar', 2),
|
|
||||||
reverse('foobar'),
|
|
||||||
proper('fooBar'),
|
|
||||||
padl('foo', 5),
|
|
||||||
padr('foo', 5),
|
|
||||||
padc('foo', 5),
|
|
||||||
strfilter('abcba', 'bc')
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
"replicate('ab', 4)": ['abababab'],
|
|
||||||
"charindex('ab', 'foobarabbarfoo')": [7],
|
|
||||||
"charindex('ab', 'foobarabbarfoo', 8)": [0],
|
|
||||||
"leftstr('foobar', 2)": ['fo'],
|
|
||||||
"rightstr('foobar', 2)": ['ar'],
|
|
||||||
"reverse('foobar')": ['raboof'],
|
|
||||||
"proper('fooBar')": ['Foobar'],
|
|
||||||
"padl('foo', 5)": [' foo'],
|
|
||||||
"padr('foo', 5)": ['foo '],
|
|
||||||
"padc('foo', 5)": [' foo '],
|
|
||||||
"strfilter('abcba', 'bc')": ['bcb']
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports contrib aggregate functions', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
WITH RECURSIVE series(x) AS (
|
|
||||||
SELECT 1
|
|
||||||
UNION ALL
|
|
||||||
SELECT x + 1
|
|
||||||
FROM series
|
|
||||||
WHERE x + 1 <= 12
|
|
||||||
)
|
|
||||||
SELECT
|
|
||||||
abs( 3.77406806 - stdev(x)) < 0.000001,
|
|
||||||
abs(14.24358974 - variance(x)) < 0.000001,
|
|
||||||
mode(x),
|
|
||||||
median(x),
|
|
||||||
lower_quartile(x),
|
|
||||||
upper_quartile(x)
|
|
||||||
FROM (
|
|
||||||
SELECT x
|
|
||||||
FROM series
|
|
||||||
UNION ALL
|
|
||||||
VALUES (1)
|
|
||||||
)
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
'abs( 3.77406806 - stdev(x)) < 0.000001': [1],
|
|
||||||
'abs(14.24358974 - variance(x)) < 0.000001': [1],
|
|
||||||
'mode(x)': [1],
|
|
||||||
'median(x)': [6],
|
|
||||||
'lower_quartile(x)': [3],
|
|
||||||
'upper_quartile(x)': [9]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports generate_series', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT value
|
|
||||||
FROM generate_series(5, 20, 5)
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
value: [5, 10, 15, 20]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports transitive_closure', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
CREATE TABLE node(
|
|
||||||
node_id INTEGER NOT NULL PRIMARY KEY,
|
|
||||||
parent_id INTEGER,
|
|
||||||
name VARCHAR(127),
|
|
||||||
FOREIGN KEY (parent_id) REFERENCES node(node_id)
|
|
||||||
);
|
|
||||||
CREATE INDEX node_parent_id_idx ON node(parent_id);
|
|
||||||
|
|
||||||
CREATE VIRTUAL TABLE node_closure USING transitive_closure(
|
|
||||||
tablename = "node",
|
|
||||||
idcolumn = "node_id",
|
|
||||||
parentcolumn = "parent_id"
|
|
||||||
);
|
|
||||||
|
|
||||||
INSERT INTO node VALUES
|
|
||||||
(1, NULL, 'tests'),
|
|
||||||
(2, 1, 'lib'),
|
|
||||||
(3, 2, 'database'),
|
|
||||||
(4, 2, 'utils'),
|
|
||||||
(5, 2, 'storedQueries.spec.js'),
|
|
||||||
(6, 3, '_sql.spec.js'),
|
|
||||||
(7, 3, '_statements.spec.js'),
|
|
||||||
(8, 3, 'database.spec.js'),
|
|
||||||
(9, 3, 'sqliteExtensions.spec.js'),
|
|
||||||
(10, 4, 'fileIo.spec.js'),
|
|
||||||
(11, 4, 'time.spec.js');
|
|
||||||
|
|
||||||
SELECT name
|
|
||||||
FROM node
|
|
||||||
WHERE node_id IN (
|
|
||||||
SELECT nc.id
|
|
||||||
FROM node_closure AS nc
|
|
||||||
WHERE nc.root = 2 AND nc.depth = 2
|
|
||||||
);
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
name: [
|
|
||||||
'_sql.spec.js',
|
|
||||||
'_statements.spec.js',
|
|
||||||
'database.spec.js',
|
|
||||||
'sqliteExtensions.spec.js',
|
|
||||||
'fileIo.spec.js',
|
|
||||||
'time.spec.js'
|
|
||||||
]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports UUID functions', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT
|
|
||||||
length(uuid()) as length,
|
|
||||||
uuid_str(uuid_blob('26a8349c8a7f4cbeb519bf792c3d7ac6')) as uid
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
length: [36],
|
|
||||||
uid: ['26a8349c-8a7f-4cbe-b519-bf792c3d7ac6']
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports regexp', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
SELECT
|
|
||||||
regexp('=\\s?\\d+', 'const foo = 123; const bar = "bar"') as one,
|
|
||||||
regexpi('=\\s?\\d+', 'const foo = 123; const bar = "bar"') as two,
|
|
||||||
'const foo = 123; const bar = "bar"' REGEXP '=\\s?\\d+' as three
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
one: [1],
|
|
||||||
two: [1],
|
|
||||||
three: [1]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports pivot virtual table', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
CREATE TABLE point(x REAL, y REAL, z REAL);
|
|
||||||
INSERT INTO point VALUES
|
|
||||||
(5,3,3.2), (5,6,4.3), (5,9,5.4),
|
|
||||||
(10,3,4), (10,6,3.8), (10,9,3.6),
|
|
||||||
(15,3,4.8), (15,6,4), (15,9,3.5);
|
|
||||||
|
|
||||||
CREATE VIRTUAL TABLE pivot USING pivot_vtab(
|
|
||||||
(SELECT y FROM point GROUP BY y),
|
|
||||||
(SELECT x, x FROM point GROUP BY x),
|
|
||||||
(SELECT z FROM point WHERE y = :y AND x = :x)
|
|
||||||
);
|
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE surface AS
|
|
||||||
SELECT xt.x, p.*
|
|
||||||
FROM (
|
|
||||||
SELECT row_number() OVER () rownum, *
|
|
||||||
FROM pivot
|
|
||||||
) p
|
|
||||||
JOIN (
|
|
||||||
SELECT row_number() OVER () rownum, x
|
|
||||||
FROM point
|
|
||||||
GROUP BY x
|
|
||||||
) xt USING(rownum);
|
|
||||||
ALTER TABLE surface DROP COLUMN rownum;
|
|
||||||
SELECT * FROM surface;
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
x: [5, 10, 15],
|
|
||||||
y: [3, 6, 9],
|
|
||||||
'5.0': [3.2, 4.3, 5.4],
|
|
||||||
'10.0': [4, 3.8, 3.6],
|
|
||||||
'15.0': [4.8, 4, 3.5]
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
it('supports FTS5', async function () {
|
|
||||||
const actual = await db.execute(`
|
|
||||||
CREATE VIRTUAL TABLE email USING fts5(sender, title, body, tokenize = 'porter ascii');
|
|
||||||
|
|
||||||
INSERT INTO email VALUES
|
|
||||||
(
|
|
||||||
'foo@localhost',
|
|
||||||
'fts3/4',
|
|
||||||
'FTS3 and FTS4 are SQLite virtual table modules that allows users to perform '
|
|
||||||
|| 'full-text searches on a set of documents.'
|
|
||||||
),
|
|
||||||
(
|
|
||||||
'bar@localhost',
|
|
||||||
'fts4',
|
|
||||||
'FTS5 is an SQLite virtual table module that provides full-text search '
|
|
||||||
|| 'functionality to database applications.'
|
|
||||||
);
|
|
||||||
|
|
||||||
SELECT sender
|
|
||||||
FROM email
|
|
||||||
WHERE body MATCH '"full-text" NOT document'
|
|
||||||
ORDER BY rank;
|
|
||||||
`)
|
|
||||||
expect(actual.values).to.eql({
|
|
||||||
sender: ['bar@localhost']
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user