1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

Compare commits

..

32 Commits

Author SHA1 Message Date
6b3b22a01a chore(release): 0.7.8 2023-04-12 08:57:17 +02:00
ebf7780c3c refactor: fix ts error 2023-04-08 13:12:29 +02:00
0f24c80e5a feat(MySQL): option to export from results SQL INSERTS in chunks, closes #501 2023-04-08 13:03:46 +02:00
afa61a9bc2 fix: unable to export BLOB values from table content o query result 2023-04-08 09:39:28 +02:00
8be9f932e7 feat: filter schemas in sidebar, closes #555 2023-04-07 18:06:41 +02:00
d802b32597 fix: triggers not exported if related table not included 2023-04-04 11:55:39 +02:00
28f0419af4 refactor: remove viewMenu on macOS 2023-03-30 18:07:24 +02:00
52108d7613 fix(MySQL): missing scale for FLOAT type 2023-03-28 17:27:47 +02:00
df6625af49 chore(release): 0.7.7 2023-03-10 18:12:26 +01:00
59846e6ff4 fix(MySQL): missing table information in table setting tab 2023-03-09 09:07:57 +01:00
63fece2a1b fix(Linux): remove app menu shown pressing ALT key 2023-03-06 18:29:53 +01:00
9ef475ec3f chore: package.json changes 2023-03-06 09:38:51 +01:00
3546c57e39 fix: unable to set string fields default values starting with 0 2023-03-02 18:09:16 +01:00
8730be02af ci: minor change 2023-03-02 09:49:59 +01:00
b925ff9c01 fix(Linux): remove app menu shown pressing ALT key 2023-03-02 09:07:10 +01:00
2c46269cf2 fix: hide table size tooltip if disabled 2023-03-02 09:06:28 +01:00
23d8467154 chore(release): 0.7.6 2023-02-27 10:44:53 +01:00
d1297a0085 fix: error with import/export tools, fixes #541 2023-02-27 10:43:51 +01:00
6bd8667f43 Merge pull request #540 from jimcat8/cn_main
Supplement the key-value pair and translate its value.
2023-02-27 10:07:46 +01:00
tianci li
c9093a36b3 Word error 2023-02-27 12:14:20 +08:00
tianci li
b6dbfe1564 Supplement the key-value pair and translate its value. 2023-02-27 11:59:29 +08:00
06b0090480 chore(release): 0.7.5 2023-02-26 17:29:31 +01:00
629ce63329 fix: single quotes not properly escaped for random generated content 2023-02-26 17:02:41 +01:00
313e7407eb feat(MySQL): option, disabled by default, to enable table size indicators on sidebar 2023-02-23 08:51:33 +01:00
4458177688 fix(MariaDB): exception with event_scheduler DISABLED with MariaDB 10, fixes #535 2023-02-21 18:07:29 +01:00
ea7865a086 Merge pull request #533 from antares-sql/all-contributors/add-jimcat8
docs: add jimcat8 as a contributor for translation
2023-02-19 10:43:34 +01:00
allcontributors[bot]
ca900f3dcf docs: update .all-contributorsrc [skip ci] 2023-02-19 09:43:23 +00:00
allcontributors[bot]
4f6f28c6e6 docs: update README.md [skip ci] 2023-02-19 09:43:22 +00:00
8caac0f21d Merge pull request #532 from jimcat8/cn_main
Updated zh-CN translation text
2023-02-19 10:43:15 +01:00
tianci li
cacfc1c2eb review 2023-02-19 14:21:42 +08:00
tianci li
2f30c0d42f Updated zh-CN translation text 2023-02-19 14:07:49 +08:00
b1fbc43ab2 fix: unable to import after a failed import, fixes #515 2023-02-13 18:06:55 +01:00
28 changed files with 664 additions and 309 deletions

View File

@@ -193,6 +193,15 @@
"translation", "translation",
"code" "code"
] ]
},
{
"login": "jimcat8",
"name": "tianci li",
"avatar_url": "https://avatars.githubusercontent.com/u/86754294?v=4",
"profile": "https://github.com/jimcat8",
"contributions": [
"translation"
]
} }
], ],
"contributorsPerLine": 7, "contributorsPerLine": 7,

View File

@@ -15,10 +15,11 @@ jobs:
with: with:
node-version: 16 node-version: 16
- name: npm install & build - name: Install dependencies
run: | run: npm i
npm install
npm run build - name: "Build"
run: npm run build
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View File

@@ -2,6 +2,53 @@
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
### [0.7.8](https://github.com/antares-sql/antares/compare/v0.7.7...v0.7.8) (2023-04-12)
### Features
* filter schemas in sidebar, closes [#555](https://github.com/antares-sql/antares/issues/555) ([8be9f93](https://github.com/antares-sql/antares/commit/8be9f932e7a44b2067d8b57950d8faafc577123f))
* **MySQL:** option to export from results SQL INSERTS in chunks, closes [#501](https://github.com/antares-sql/antares/issues/501) ([0f24c80](https://github.com/antares-sql/antares/commit/0f24c80e5a2dc45875df6b67d3c097cf1cca458e))
### Bug Fixes
* **MySQL:** missing scale for FLOAT type ([52108d7](https://github.com/antares-sql/antares/commit/52108d76133d5fdffb56faa995d7ab7ee3e7c4bc))
* triggers not exported if related table not included ([d802b32](https://github.com/antares-sql/antares/commit/d802b32597e42ee90a2d691fe74245b3bc2517ee))
* unable to export BLOB values from table content o query result ([afa61a9](https://github.com/antares-sql/antares/commit/afa61a9bc2d698894096a6b5413c49f05b2fd5aa))
### [0.7.7](https://github.com/antares-sql/antares/compare/v0.7.6...v0.7.7) (2023-03-10)
### Bug Fixes
* hide table size tooltip if disabled ([2c46269](https://github.com/antares-sql/antares/commit/2c46269cf262248d3f5644b7c5b89d5d317a89a4))
* **Linux:** remove app menu shown pressing ALT key ([63fece2](https://github.com/antares-sql/antares/commit/63fece2a1b6b09f61ae416f7c3a7b51ee0a53d0e))
* **Linux:** remove app menu shown pressing ALT key ([b925ff9](https://github.com/antares-sql/antares/commit/b925ff9c01afcc727e5d70bafb079d468ed1eede))
* **MySQL:** missing table information in table setting tab ([59846e6](https://github.com/antares-sql/antares/commit/59846e6ff47591ec8dc22403c3be0e70e0f3ccfd))
* unable to set string fields default values starting with 0 ([3546c57](https://github.com/antares-sql/antares/commit/3546c57e398be7b2e226bb8e93e8fc0fb8bab40a))
### [0.7.6](https://github.com/antares-sql/antares/compare/v0.7.5...v0.7.6) (2023-02-27)
### Bug Fixes
* error with import/export tools, fixes [#541](https://github.com/antares-sql/antares/issues/541) ([d1297a0](https://github.com/antares-sql/antares/commit/d1297a0085fd54967817816efaeed5770a887bbf))
### [0.7.5](https://github.com/antares-sql/antares/compare/v0.7.4...v0.7.5) (2023-02-26)
### Features
* **MySQL:** option, disabled by default, to enable table size indicators on sidebar ([313e740](https://github.com/antares-sql/antares/commit/313e7407eb1afe5d19ac49ee4b308950b48cafa8))
### Bug Fixes
* **MariaDB:** exception with event_scheduler DISABLED with MariaDB 10, fixes [#535](https://github.com/antares-sql/antares/issues/535) ([4458177](https://github.com/antares-sql/antares/commit/445817768863616ea7340c8bf62472197b73bd6e))
* single quotes not properly escaped for random generated content ([629ce63](https://github.com/antares-sql/antares/commit/629ce633294c862266db9e27ffa5c154e8fc416c))
* unable to import after a failed import, fixes [#515](https://github.com/antares-sql/antares/issues/515) ([b1fbc43](https://github.com/antares-sql/antares/commit/b1fbc43ab2f39827cb85ac7d21ac889ffc2f4c64))
### [0.7.4](https://github.com/antares-sql/antares/compare/v0.7.3...v0.7.4) (2023-02-10) ### [0.7.4](https://github.com/antares-sql/antares/compare/v0.7.3...v0.7.4) (2023-02-10)

View File

@@ -118,30 +118,31 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<table> <table>
<tbody> <tbody>
<tr> <tr>
<td align="center"><a href="https://fabiodistasio.it/"><img src="https://avatars.githubusercontent.com/u/31471771?v=4?s=100" width="100px;" alt="Fabio Di Stasio"/><br /><sub><b>Fabio Di Stasio</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=Fabio286" title="Code">💻</a> <a href="#translation-Fabio286" title="Translation">🌍</a> <a href="https://github.com/antares-sql/antares/commits?author=Fabio286" title="Documentation">📖</a></td> <td align="center" valign="top" width="14.28%"><a href="https://fabiodistasio.it/"><img src="https://avatars.githubusercontent.com/u/31471771?v=4?s=100" width="100px;" alt="Fabio Di Stasio"/><br /><sub><b>Fabio Di Stasio</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=Fabio286" title="Code">💻</a> <a href="#translation-Fabio286" title="Translation">🌍</a> <a href="https://github.com/antares-sql/antares/commits?author=Fabio286" title="Documentation">📖</a></td>
<td align="center"><a href="https://www.linkedin.com/in/giulioganci/"><img src="https://avatars.githubusercontent.com/u/4192159?v=4?s=100" width="100px;" alt="Giulio Ganci"/><br /><sub><b>Giulio Ganci</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=toriphes" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://www.linkedin.com/in/giulioganci/"><img src="https://avatars.githubusercontent.com/u/4192159?v=4?s=100" width="100px;" alt="Giulio Ganci"/><br /><sub><b>Giulio Ganci</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=toriphes" title="Code">💻</a></td>
<td align="center"><a href="https://christianratz.de/"><img src="https://avatars.githubusercontent.com/u/2630316?v=4?s=100" width="100px;" alt="Christian Ratz"/><br /><sub><b>Christian Ratz</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=digitalgopnik" title="Code">💻</a> <a href="#translation-digitalgopnik" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://christianratz.de/"><img src="https://avatars.githubusercontent.com/u/2630316?v=4?s=100" width="100px;" alt="Christian Ratz"/><br /><sub><b>Christian Ratz</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=digitalgopnik" title="Code">💻</a> <a href="#translation-digitalgopnik" title="Translation">🌍</a></td>
<td align="center"><a href="https://reverb6821.github.io/"><img src="https://avatars.githubusercontent.com/u/55198803?v=4?s=100" width="100px;" alt="Giuseppe Gigliotti"/><br /><sub><b>Giuseppe Gigliotti</b></sub></a><br /><a href="#translation-reverb6821" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://reverb6821.github.io/"><img src="https://avatars.githubusercontent.com/u/55198803?v=4?s=100" width="100px;" alt="Giuseppe Gigliotti"/><br /><sub><b>Giuseppe Gigliotti</b></sub></a><br /><a href="#translation-reverb6821" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/Mohd-PH"><img src="https://avatars.githubusercontent.com/u/9362157?v=4?s=100" width="100px;" alt="Mohd-PH"/><br /><sub><b>Mohd-PH</b></sub></a><br /><a href="#translation-Mohd-PH" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/Mohd-PH"><img src="https://avatars.githubusercontent.com/u/9362157?v=4?s=100" width="100px;" alt="Mohd-PH"/><br /><sub><b>Mohd-PH</b></sub></a><br /><a href="#translation-Mohd-PH" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/hongkfui"><img src="https://avatars.githubusercontent.com/u/37477191?v=4?s=100" width="100px;" alt="hongkfui"/><br /><sub><b>hongkfui</b></sub></a><br /><a href="#translation-hongkfui" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/hongkfui"><img src="https://avatars.githubusercontent.com/u/37477191?v=4?s=100" width="100px;" alt="hongkfui"/><br /><sub><b>hongkfui</b></sub></a><br /><a href="#translation-hongkfui" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/MrAnyx"><img src="https://avatars.githubusercontent.com/u/44176707?v=4?s=100" width="100px;" alt="Robin"/><br /><sub><b>Robin</b></sub></a><br /><a href="#translation-MrAnyx" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/MrAnyx"><img src="https://avatars.githubusercontent.com/u/44176707?v=4?s=100" width="100px;" alt="Robin"/><br /><sub><b>Robin</b></sub></a><br /><a href="#translation-MrAnyx" title="Translation">🌍</a></td>
</tr> </tr>
<tr> <tr>
<td align="center"><a href="https://github.com/daeleduardo"><img src="https://avatars.githubusercontent.com/u/8599078?v=4?s=100" width="100px;" alt="Daniel Eduardo"/><br /><sub><b>Daniel Eduardo</b></sub></a><br /><a href="#translation-daeleduardo" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/daeleduardo"><img src="https://avatars.githubusercontent.com/u/8599078?v=4?s=100" width="100px;" alt="Daniel Eduardo"/><br /><sub><b>Daniel Eduardo</b></sub></a><br /><a href="#translation-daeleduardo" title="Translation">🌍</a></td>
<td align="center"><a href="https://ngoquocdat.com/"><img src="https://avatars.githubusercontent.com/u/56961917?v=4?s=100" width="100px;" alt="Ngô Quốc Đạt"/><br /><sub><b>Ngô Quốc Đạt</b></sub></a><br /><a href="#translation-datlechin" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://ngoquocdat.com/"><img src="https://avatars.githubusercontent.com/u/56961917?v=4?s=100" width="100px;" alt="Ngô Quốc Đạt"/><br /><sub><b>Ngô Quốc Đạt</b></sub></a><br /><a href="#translation-datlechin" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/IsamuSugi"><img src="https://avatars.githubusercontent.com/u/7746658?v=4?s=100" width="100px;" alt="Isamu Sugiura"/><br /><sub><b>Isamu Sugiura</b></sub></a><br /><a href="#translation-IsamuSugi" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/IsamuSugi"><img src="https://avatars.githubusercontent.com/u/7746658?v=4?s=100" width="100px;" alt="Isamu Sugiura"/><br /><sub><b>Isamu Sugiura</b></sub></a><br /><a href="#translation-IsamuSugi" title="Translation">🌍</a></td>
<td align="center"><a href="http://rsacchetto.nexxontech.it/"><img src="https://avatars.githubusercontent.com/u/18429412?v=4?s=100" width="100px;" alt="Riccardo Sacchetto"/><br /><sub><b>Riccardo Sacchetto</b></sub></a><br /><a href="#platform-Occhioverde" title="Packaging/porting to new platform">📦</a></td> <td align="center" valign="top" width="14.28%"><a href="http://rsacchetto.nexxontech.it/"><img src="https://avatars.githubusercontent.com/u/18429412?v=4?s=100" width="100px;" alt="Riccardo Sacchetto"/><br /><sub><b>Riccardo Sacchetto</b></sub></a><br /><a href="#platform-Occhioverde" title="Packaging/porting to new platform">📦</a></td>
<td align="center"><a href="https://kilianstallinger.com"><img src="https://avatars.githubusercontent.com/u/5290318?v=4?s=100" width="100px;" alt="Kilian Stallinger"/><br /><sub><b>Kilian Stallinger</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=kilianstallz" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://kilianstallinger.com"><img src="https://avatars.githubusercontent.com/u/5290318?v=4?s=100" width="100px;" alt="Kilian Stallinger"/><br /><sub><b>Kilian Stallinger</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=kilianstallz" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/wenj91"><img src="https://avatars.githubusercontent.com/u/12549338?v=4?s=100" width="100px;" alt="文杰"/><br /><sub><b>文杰</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=wenj91" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/wenj91"><img src="https://avatars.githubusercontent.com/u/12549338?v=4?s=100" width="100px;" alt="文杰"/><br /><sub><b>文杰</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=wenj91" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/goYou"><img src="https://avatars.githubusercontent.com/u/62732795?v=4?s=100" width="100px;" alt="goYou"/><br /><sub><b>goYou</b></sub></a><br /><a href="#translation-goYou" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/goYou"><img src="https://avatars.githubusercontent.com/u/62732795?v=4?s=100" width="100px;" alt="goYou"/><br /><sub><b>goYou</b></sub></a><br /><a href="#translation-goYou" title="Translation">🌍</a></td>
</tr> </tr>
<tr> <tr>
<td align="center"><a href="https://github.com/raliqala"><img src="https://avatars.githubusercontent.com/u/30502407?v=4?s=100" width="100px;" alt="Topollo"/><br /><sub><b>Topollo</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=raliqala" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/raliqala"><img src="https://avatars.githubusercontent.com/u/30502407?v=4?s=100" width="100px;" alt="Topollo"/><br /><sub><b>Topollo</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=raliqala" title="Code">💻</a></td>
<td align="center"><a href="https://github.com/SmileYzn"><img src="https://avatars.githubusercontent.com/u/5851851?v=4?s=100" width="100px;" alt="Cleverson"/><br /><sub><b>Cleverson</b></sub></a><br /><a href="#translation-SmileYzn" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/SmileYzn"><img src="https://avatars.githubusercontent.com/u/5851851?v=4?s=100" width="100px;" alt="Cleverson"/><br /><sub><b>Cleverson</b></sub></a><br /><a href="#translation-SmileYzn" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/fredatgithub"><img src="https://avatars.githubusercontent.com/u/6720055?v=4?s=100" width="100px;" alt="fred"/><br /><sub><b>fred</b></sub></a><br /><a href="#translation-fredatgithub" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/fredatgithub"><img src="https://avatars.githubusercontent.com/u/6720055?v=4?s=100" width="100px;" alt="fred"/><br /><sub><b>fred</b></sub></a><br /><a href="#translation-fredatgithub" title="Translation">🌍</a></td>
<td align="center"><a href="https://github.com/xak666"><img src="https://avatars.githubusercontent.com/u/38811437?v=4?s=100" width="100px;" alt="xaka_xak"/><br /><sub><b>xaka_xak</b></sub></a><br /><a href="#translation-xak666" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://github.com/xak666"><img src="https://avatars.githubusercontent.com/u/38811437?v=4?s=100" width="100px;" alt="xaka_xak"/><br /><sub><b>xaka_xak</b></sub></a><br /><a href="#translation-xak666" title="Translation">🌍</a></td>
<td align="center"><a href="https://codepen.io/theo-billardey"><img src="https://avatars.githubusercontent.com/u/48206778?v=4?s=100" width="100px;" alt="Théo Billardey"/><br /><sub><b>Théo Billardey</b></sub></a><br /><a href="#translation-brdtheo" title="Translation">🌍</a></td> <td align="center" valign="top" width="14.28%"><a href="https://codepen.io/theo-billardey"><img src="https://avatars.githubusercontent.com/u/48206778?v=4?s=100" width="100px;" alt="Théo Billardey"/><br /><sub><b>Théo Billardey</b></sub></a><br /><a href="#translation-brdtheo" title="Translation">🌍</a></td>
<td align="center"><a href="http://yaskur.net"><img src="https://avatars.githubusercontent.com/u/9539970?v=4?s=100" width="100px;" alt="Muhammad Dyas Yaskur"/><br /><sub><b>Muhammad Dyas Yaskur</b></sub></a><br /><a href="#translation-dyaskur" title="Translation">🌍</a> <a href="https://github.com/antares-sql/antares/commits?author=dyaskur" title="Code">💻</a></td> <td align="center" valign="top" width="14.28%"><a href="http://yaskur.net"><img src="https://avatars.githubusercontent.com/u/9539970?v=4?s=100" width="100px;" alt="Muhammad Dyas Yaskur"/><br /><sub><b>Muhammad Dyas Yaskur</b></sub></a><br /><a href="#translation-dyaskur" title="Translation">🌍</a> <a href="https://github.com/antares-sql/antares/commits?author=dyaskur" title="Code">💻</a></td>
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jimcat8"><img src="https://avatars.githubusercontent.com/u/86754294?v=4?s=100" width="100px;" alt="tianci li"/><br /><sub><b>tianci li</b></sub></a><br /><a href="#translation-jimcat8" title="Translation">🌍</a></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "antares", "name": "antares",
"version": "0.7.4", "version": "0.7.8",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "antares", "name": "antares",
"version": "0.7.4", "version": "0.7.8",
"hasInstallScript": true, "hasInstallScript": true,
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@@ -1,7 +1,7 @@
{ {
"name": "antares", "name": "antares",
"productName": "Antares", "productName": "Antares",
"version": "0.7.4", "version": "0.7.8",
"description": "A modern, fast and productivity driven SQL client with a focus in UX.", "description": "A modern, fast and productivity driven SQL client with a focus in UX.",
"license": "MIT", "license": "MIT",
"repository": "https://github.com/antares-sql/antares.git", "repository": "https://github.com/antares-sql/antares.git",

View File

@@ -54,6 +54,7 @@ export default [
{ {
name: 'FLOAT', name: 'FLOAT',
length: true, length: true,
scale: true,
collation: false, collation: false,
unsigned: false, unsigned: false,
zerofill: false zerofill: false

View File

@@ -72,7 +72,7 @@ export const escapeAndQuote = (val: string, client: ClientCode) => {
export const valueToSqlString = (args: { export const valueToSqlString = (args: {
val: any; val: any;
client: ClientCode; client: ClientCode;
field: {type: string; datePrecision: number}; field: {type: string; datePrecision: number; isArray?: boolean};
}): string => { }): string => {
let parsedValue; let parsedValue;
const { val, client, field } = args; const { val, client, field } = args;
@@ -94,7 +94,7 @@ export const valueToSqlString = (args: {
? escapeAndQuote(moment(val).format(`YYYY-MM-DD HH:mm:ss${datePrecision}`), client) ? escapeAndQuote(moment(val).format(`YYYY-MM-DD HH:mm:ss${datePrecision}`), client)
: escapeAndQuote(val, client); : escapeAndQuote(val, client);
} }
else if ('isArray' in field) { else if ('isArray' in field && field.isArray) {
let localVal; let localVal;
if (Array.isArray(val)) if (Array.isArray(val))
localVal = JSON.stringify(val).replaceAll('[', '{').replaceAll(']', '}'); localVal = JSON.stringify(val).replaceAll('[', '{').replaceAll(']', '}');
@@ -107,10 +107,16 @@ export const valueToSqlString = (args: {
else if (BIT.includes(field.type)) else if (BIT.includes(field.type))
parsedValue = `b'${hexToBinary(Buffer.from(val).toString('hex') as undefined as HexChar[])}'`; parsedValue = `b'${hexToBinary(Buffer.from(val).toString('hex') as undefined as HexChar[])}'`;
else if (BLOB.includes(field.type)) { else if (BLOB.includes(field.type)) {
let buffer: Buffer;
if (val instanceof Uint8Array)
buffer = Buffer.from(val);
else
buffer = val;
if (['mysql', 'maria'].includes(client)) if (['mysql', 'maria'].includes(client))
parsedValue = `X'${val.toString('hex').toUpperCase()}'`; parsedValue = `X'${buffer.toString('hex').toUpperCase()}'`;
else if (client === 'pg') else if (client === 'pg')
parsedValue = `decode('${val.toString('hex').toUpperCase()}', 'hex')`; parsedValue = `decode('${buffer.toString('hex').toUpperCase()}', 'hex')`;
} }
else if (NUMBER.includes(field.type)) else if (NUMBER.includes(field.type))
parsedValue = val; parsedValue = val;
@@ -146,17 +152,47 @@ export const valueToSqlString = (args: {
}; };
export const jsonToSqlInsert = (args: { export const jsonToSqlInsert = (args: {
json: { [key: string]: any}; json: { [key: string]: any}[];
client: ClientCode; client: ClientCode;
fields: { [key: string]: {type: string; datePrecision: number}}; fields: { [key: string]: {type: string; datePrecision: number}};
table: string; table: string;
options?: {sqlInsertAfter: number; sqlInsertDivider: 'bytes' | 'rows'};
}) => { }) => {
const { client, json, fields, table } = args; const { client, json, fields, table, options } = args;
const sqlInsertAfter = options && options.sqlInsertAfter ? options.sqlInsertAfter : 1;
const sqlInsertDivider = options && options.sqlInsertDivider ? options.sqlInsertDivider : 'rows';
const { elementsWrapper: ew } = customizations[client]; const { elementsWrapper: ew } = customizations[client];
const fieldNames = Object.keys(json).map(key => `${ew}${key}${ew}`); const fieldNames = Object.keys(json[0]).map(key => `${ew}${key}${ew}`);
const values = Object.keys(json).map(key => ( let insertStmt = `INSERT INTO ${ew}${table}${ew} (${fieldNames.join(', ')}) VALUES `;
valueToSqlString({ val: json[key], client, field: fields[key] }) let insertsString = '';
)); let queryLength = 0;
let rowsWritten = 0;
return `INSERT INTO ${ew}${table}${ew} (${fieldNames.join(', ')}) VALUES (${values.join(', ')});`; for (const row of json) {
const values = [];
values.push(Object.keys(row).map(key => (
valueToSqlString({ val: row[key], client, field: fields[key] })
)));
if (
(sqlInsertDivider === 'bytes' && queryLength >= sqlInsertAfter * 1024) ||
(sqlInsertDivider === 'rows' && rowsWritten === sqlInsertAfter)
) {
insertsString += insertStmt+';';
insertStmt = `\nINSERT INTO ${ew}${table}${ew} (${fieldNames.join(', ')}) VALUES `;
rowsWritten = 0;
}
rowsWritten++;
if (rowsWritten > 1) insertStmt += ',\n';
insertStmt += `(${values.join(',')})`;
queryLength = insertStmt.length;
}
if (rowsWritten > 0)
insertsString += insertStmt+';';
return insertsString;
}; };

View File

@@ -352,7 +352,18 @@ export default (connections: {[key: string]: antares.Client}) => {
if (typeof fakeValue === 'string') { if (typeof fakeValue === 'string') {
if (params.row[key].length) if (params.row[key].length)
fakeValue = fakeValue.substring(0, params.row[key].length); fakeValue = fakeValue.substring(0, params.row[key].length);
switch (connections[params.uid]._client) {
case 'mysql':
case 'maria':
fakeValue = `'${sqlEscaper(fakeValue)}'`; fakeValue = `'${sqlEscaper(fakeValue)}'`;
break;
case 'pg':
case 'sqlite':
case 'firebird':
fakeValue = `'${fakeValue.replaceAll('\'', '\'\'')}'`;
break;
}
} }
else if ([...DATE, ...DATETIME].includes(type)) else if ([...DATE, ...DATETIME].includes(type))
fakeValue = `'${moment(fakeValue).format('YYYY-MM-DD HH:mm:ss.SSSSSS')}'`; fakeValue = `'${moment(fakeValue).format('YYYY-MM-DD HH:mm:ss.SSSSSS')}'`;

View File

@@ -75,7 +75,7 @@ export class ShortcutRegister {
for (const key of shortcut.keys) { for (const key of shortcut.keys) {
try { try {
this._menu.append(new MenuItem({ this._menu.append(new MenuItem({
label: 'Shortcuts', label: '.',
visible: false, visible: false,
submenu: [{ submenu: [{
label: String(key), label: String(key),

View File

@@ -290,15 +290,32 @@ export class MySQLClient extends AntaresCore {
const { rows: functions } = await this.raw('SHOW FUNCTION STATUS'); const { rows: functions } = await this.raw('SHOW FUNCTION STATUS');
const { rows: procedures } = await this.raw('SHOW PROCEDURE STATUS'); const { rows: procedures } = await this.raw('SHOW PROCEDURE STATUS');
const { rows: schedulers } = await this.raw('SELECT *, EVENT_SCHEMA AS `Db`, EVENT_NAME AS `Name` FROM information_schema.`EVENTS`'); // eslint-disable-next-line @typescript-eslint/no-explicit-any
let schedulers: any[] = [];
try { // Avoid exception with event_scheduler DISABLED with MariaDB 10
const { rows } = await this.raw('SELECT *, EVENT_SCHEMA AS `Db`, EVENT_NAME AS `Name` FROM information_schema.`EVENTS`');
schedulers = rows;
}
catch (err) {
console.log(err);
}
const tablesArr: ShowTableResult[] = []; const tablesArr: ShowTableResult[] = [];
const triggersArr: ShowTriggersResult[] = []; const triggersArr: ShowTriggersResult[] = [];
let schemaSize = 0; let schemaSize = 0;
const Store = require('electron-store');
Store.initRenderer();
const settingsStore = new Store({ name: 'settings' });
for (const db of filteredDatabases) { for (const db of filteredDatabases) {
if (!schemas.has(db.Database)) continue; if (!schemas.has(db.Database)) continue;
const showTableSize = settingsStore.get('show_table_size', false);
if (showTableSize) {
let { rows: tables } = await this.raw<antares.QueryResult<ShowTableResult>>(` let { rows: tables } = await this.raw<antares.QueryResult<ShowTableResult>>(`
SELECT SELECT
TABLE_NAME, TABLE_NAME,
@@ -322,6 +339,21 @@ export class MySQLClient extends AntaresCore {
}); });
tablesArr.push(...tables); tablesArr.push(...tables);
} }
}
else {
let { rows: tables } = await this.raw<antares.QueryResult<ShowTableResult>>(`SHOW FULL TABLES FROM \`${db.Database}\``);
if (tables.length) {
tables = tables.map(table => {
const [name, type] = Object.values(table);
table.TABLE_SCHEMA = db.Database;
table.TABLE_NAME = name;
table.TABLE_TYPE = type;
return table;
});
tablesArr.push(...tables);
}
}
let { rows: triggers } = await this.raw<antares.QueryResult<ShowTriggersResult>>(`SHOW TRIGGERS FROM \`${db.Database}\``); let { rows: triggers } = await this.raw<antares.QueryResult<ShowTriggersResult>>(`SHOW TRIGGERS FROM \`${db.Database}\``);
if (triggers.length) { if (triggers.length) {

View File

@@ -184,9 +184,9 @@ CREATE TABLE \`${view.Name}\`(
const { rows: triggers } = await this._client.raw( const { rows: triggers } = await this._client.raw(
`SHOW TRIGGERS FROM \`${this.schemaName}\`` `SHOW TRIGGERS FROM \`${this.schemaName}\``
); );
const generatedTables = this._tables // const generatedTables = this._tables
.filter(t => t.includeStructure) // .filter(t => t.includeStructure)
.map(t => t.table); // .map(t => t.table);
let sqlString = ''; let sqlString = '';
@@ -200,7 +200,7 @@ CREATE TABLE \`${view.Name}\`(
sql_mode: sqlMode sql_mode: sqlMode
} = trigger; } = trigger;
if (!generatedTables.includes(table)) continue; // if (!generatedTables.includes(table)) continue;// Commented to avoid issues if export contains triggers without tables
const definer = this.getEscapedDefiner(trigger.Definer); const definer = this.getEscapedDefiner(trigger.Definer);
sqlString += '/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;;\n'; sqlString += '/*!50003 SET @OLD_SQL_MODE=@@SQL_MODE*/;;\n';

View File

@@ -172,9 +172,6 @@ function createAppMenu () {
{ {
role: 'editMenu' role: 'editMenu'
}, },
{
role: 'viewMenu'
},
{ {
role: 'windowMenu' role: 'windowMenu'
} }

View File

@@ -6,10 +6,20 @@ import { PostgreSQLClient } from '../libs/clients/PostgreSQLClient';
import { ClientsFactory } from '../libs/ClientsFactory'; import { ClientsFactory } from '../libs/ClientsFactory';
import MySQLImporter from '../libs/importers/sql/MySQLlImporter'; import MySQLImporter from '../libs/importers/sql/MySQLlImporter';
import PostgreSQLImporter from '../libs/importers/sql/PostgreSQLImporter'; import PostgreSQLImporter from '../libs/importers/sql/PostgreSQLImporter';
import SSHConfig from 'ssh2-promise/lib/sshConfig';
import { ImportOptions } from 'common/interfaces/importer';
let importer: antares.Importer; let importer: antares.Importer;
process.on('message', async ({ type, dbConfig, options }) => { // eslint-disable-next-line @typescript-eslint/no-explicit-any
process.on('message', async ({ type, dbConfig, options }: {
type: string;
dbConfig: mysql.ConnectionOptions & { schema: string; ssl?: mysql.SslOptions; ssh?: SSHConfig; readonly: boolean }
| pg.ClientConfig & { schema: string; ssl?: mysql.SslOptions; ssh?: SSHConfig; readonly: boolean }
| { databasePath: string; readonly: boolean };
options: ImportOptions;
}) => {
if (type === 'init') { if (type === 'init') {
try {
const connection = await ClientsFactory.getClient({ const connection = await ClientsFactory.getClient({
client: options.type, client: options.type,
params: { params: {
@@ -72,6 +82,30 @@ process.on('message', async ({ type, dbConfig, options }) => {
importer.run(); importer.run();
} }
catch (err) {
console.error(err);
process.send({
type: 'error',
payload: err.toString()
});
}
}
else if (type === 'cancel') else if (type === 'cancel')
importer.cancel(); importer.cancel();
}); });
process.on('uncaughtException', (err) => {
console.error(err);
process.send({
type: 'error',
payload: err.toString()
});
});
process.on('unhandledRejection', (err) => {
console.error(err);
process.send({
type: 'error',
payload: err.toString()
});
});

View File

@@ -130,6 +130,12 @@ onMounted(() => {
node = node.parentNode; node = node.parentNode;
} }
}); });
document.addEventListener('keydown', e => {
if (e.altKey && e.key === 'Alt') { // Prevent Alt key to trigger hidden shortcut menu
e.preventDefault();
}
});
}); });
</script> </script>

View File

@@ -6,7 +6,7 @@
<div class="modal-header pl-2"> <div class="modal-header pl-2">
<div class="modal-title h6"> <div class="modal-title h6">
<div class="d-flex"> <div class="d-flex">
<i class="mdi mdi-24px mdi-database-arrow-down mr-1" /> <i class="mdi mdi-24px mdi-database-export mr-1" />
<span class="cut-text">{{ t('message.exportSchema') }}</span> <span class="cut-text">{{ t('message.exportSchema') }}</span>
</div> </div>
</div> </div>
@@ -78,7 +78,7 @@
<div ref="table" class="table table-hover"> <div ref="table" class="table table-hover">
<div class="thead"> <div class="thead">
<div class="tr text-center"> <div class="tr text-center">
<div class="th no-border" style="width: 50%;" /> <div class="th no-border" :style="'width: 50%;'" />
<div class="th no-border"> <div class="th no-border">
<label <label
class="form-checkbox m-0 px-2 form-inline" class="form-checkbox m-0 px-2 form-inline"
@@ -120,7 +120,7 @@
</div> </div>
</div> </div>
<div class="tr"> <div class="tr">
<div class="th" style="width: 50%;"> <div class="th" :style="'width: 50%;'">
<div class="table-column-title"> <div class="table-column-title">
<span>{{ t('word.table') }}</span> <span>{{ t('word.table') }}</span>
</div> </div>

View File

@@ -6,7 +6,7 @@
<div class="modal-header pl-2"> <div class="modal-header pl-2">
<div class="modal-title h6"> <div class="modal-title h6">
<div class="d-flex"> <div class="d-flex">
<i class="mdi mdi-24px mdi-database-arrow-up mr-1" /> <i class="mdi mdi-24px mdi-database-import mr-1" />
<span class="cut-text">{{ t('message.importSchema') }}</span> <span class="cut-text">{{ t('message.importSchema') }}</span>
</div> </div>
</div> </div>

View File

@@ -120,6 +120,24 @@
</label> </label>
</div> </div>
</div> </div>
<div class="form-group column col-12 mb-0">
<div class="col-5 col-sm-12">
<label class="form-label">
{{ t('message.showTableSize') }}
</label>
</div>
<div class="col-1 col-sm-12">
<label class="form-switch d-inline-block" @click.prevent="toggleShowTableSize">
<input type="checkbox" :checked="showTableSize">
<i class="form-icon" />
</label>
</div>
<div class="col-6 col-sm-12 px-2 p-vcentered">
<small class="d-block" :style="'line-height: 1.1; font-size: 70%;'">
{{ t('message.showTableSizeDescription') }}
</small>
</div>
</div>
<div class="form-group column col-12 mb-0"> <div class="form-group column col-12 mb-0">
<div class="col-5 col-sm-12"> <div class="col-5 col-sm-12">
<label class="form-label"> <label class="form-label">
@@ -418,6 +436,7 @@ const {
defaultCopyType: selectedCopyType, defaultCopyType: selectedCopyType,
notificationsTimeout, notificationsTimeout,
restoreTabs, restoreTabs,
showTableSize,
disableBlur, disableBlur,
disableScratchpad, disableScratchpad,
applicationTheme, applicationTheme,
@@ -440,7 +459,8 @@ const {
changeEditorTheme, changeEditorTheme,
changeEditorFontSize, changeEditorFontSize,
updateNotificationsTimeout, updateNotificationsTimeout,
changeDefaultCopyType changeDefaultCopyType,
changeShowTableSize
} = settingsStore; } = settingsStore;
const { const {
hideSettingModal: closeModal, hideSettingModal: closeModal,
@@ -582,6 +602,10 @@ const toggleRestoreSession = () => {
changeRestoreTabs(!restoreTabs.value); changeRestoreTabs(!restoreTabs.value);
}; };
const toggleShowTableSize = () => {
changeShowTableSize(!showTableSize.value);
};
const toggleDisableBlur = () => { const toggleDisableBlur = () => {
changeDisableBlur(!disableBlur.value); changeDisableBlur(!disableBlur.value);
}; };

View File

@@ -32,13 +32,20 @@
</span> </span>
</div> </div>
<div class="workspace-explorebar-search"> <div class="workspace-explorebar-search">
<div v-if="workspace.connectionStatus === 'connected'" class="has-icon-right"> <div v-if="workspace.connectionStatus === 'connected'" class="input-group has-icon-right">
<div
class="input-group-addon px-1 py-0 p-vcentered c-hand"
:title="t('message.switchSearchMethod')"
@click="toggleSearchMethod"
>
<i class="mdi mdi-18px" :class="[searchMethod === 'elements' ? 'mdi-shape' : 'mdi-database']" />
</div>
<input <input
ref="searchInput" ref="searchInput"
v-model="searchTerm" v-model="searchTerm"
class="form-input input-sm" class="form-input input-sm"
type="text" type="text"
:placeholder="t('message.searchForElements')" :placeholder="searchMethod === 'elements' ? t('message.searchForElements') : t('message.searchForSchemas')"
> >
<i v-if="!searchTerm" class="form-icon mdi mdi-magnify mdi-18px" /> <i v-if="!searchTerm" class="form-icon mdi mdi-magnify mdi-18px" />
<i <i
@@ -50,11 +57,12 @@
</div> </div>
<div class="workspace-explorebar-body" @click="explorebar.focus()"> <div class="workspace-explorebar-body" @click="explorebar.focus()">
<WorkspaceExploreBarSchema <WorkspaceExploreBarSchema
v-for="db of workspace.structure" v-for="db of filteredSchemas"
:key="db.name" :key="db.name"
ref="schema" ref="schema"
:database="db" :database="db"
:connection="connection" :connection="connection"
:search-method="searchMethod"
@show-schema-context="openSchemaContext" @show-schema-context="openSchemaContext"
@show-table-context="openTableContext" @show-table-context="openTableContext"
@show-misc-context="openMiscContext" @show-misc-context="openMiscContext"
@@ -181,6 +189,7 @@ const selectedSchema = ref('');
const selectedTable = ref(null); const selectedTable = ref(null);
const selectedMisc = ref(null); const selectedMisc = ref(null);
const searchTerm = ref(''); const searchTerm = ref('');
const searchMethod: Ref<'elements' | 'schemas'> = ref('elements');
const workspace = computed(() => { const workspace = computed(() => {
return getWorkspace(props.connection.uid); return getWorkspace(props.connection.uid);
@@ -194,6 +203,13 @@ const customizations = computed(() => {
return workspace.value.customizations; return workspace.value.customizations;
}); });
const filteredSchemas = computed(() => {
if (searchMethod.value === 'schemas')
return workspace.value.structure.filter(schema => schema.name.search(searchTerm.value) >= 0);
else
return workspace.value.structure;
});
watch(localWidth, (val: number) => { watch(localWidth, (val: number) => {
clearTimeout(explorebarWidthInterval.value); clearTimeout(explorebarWidthInterval.value);
@@ -403,6 +419,15 @@ const duplicateTable = async (payload: { schema: string; table: { name: string }
}); });
}; };
const toggleSearchMethod = () => {
searchTerm.value = '';
setSearchTerm(searchTerm.value);
if (searchMethod.value === 'elements')
searchMethod.value = 'schemas';
else
searchMethod.value = 'elements';
};
</script> </script>
<style lang="scss"> <style lang="scss">
@@ -478,6 +503,8 @@ const duplicateTable = async (payload: { schema: string; table: { name: string }
justify-content: space-between; justify-content: space-between;
font-size: 0.6rem; font-size: 0.6rem;
height: 28px; height: 28px;
margin: 5px 0;
z-index: 10;
.has-icon-right { .has-icon-right {
width: 100%; width: 100%;
@@ -491,6 +518,7 @@ const duplicateTable = async (payload: { schema: string; table: { name: string }
.form-input { .form-input {
height: 1.2rem; height: 1.2rem;
padding-left: 0.2rem; padding-left: 0.2rem;
border-radius:0 $border-radius $border-radius 0;
&:focus + .form-icon { &:focus + .form-icon {
opacity: 0.9; opacity: 0.9;

View File

@@ -10,7 +10,7 @@
<i v-else class="icon mdi mdi-18px mdi-chevron-right" /> <i v-else class="icon mdi mdi-18px mdi-chevron-right" />
<i class="database-icon mdi mdi-18px mdi-database mr-1" /> <i class="database-icon mdi mdi-18px mdi-database mr-1" />
<div class=""> <div class="">
<span>{{ database.name }}</span> <span v-html="highlightWord(database.name, 'schemas')" />
<div <div
v-if="database.size" v-if="database.size"
class="schema-size tooltip tooltip-left mr-1" class="schema-size tooltip tooltip-left mr-1"
@@ -42,7 +42,7 @@
<span v-html="highlightWord(table.name)" /> <span v-html="highlightWord(table.name)" />
</a> </a>
<div <div
v-if="table.type === 'table' && table.size !== false" v-if="table.type === 'table' && table.size !== false && !isNaN(table.size)"
class="table-size tooltip tooltip-left mr-1" class="table-size tooltip tooltip-left mr-1"
:data-tooltip="formatBytes(table.size)" :data-tooltip="formatBytes(table.size)"
> >
@@ -249,7 +249,8 @@ const { t } = useI18n();
const props = defineProps({ const props = defineProps({
database: Object as Prop<WorkspaceStructure>, database: Object as Prop<WorkspaceStructure>,
connection: Object connection: Object,
searchMethod: String as Prop<'elements' | 'schemas'>
}); });
const emit = defineEmits([ const emit = defineEmits([
@@ -282,29 +283,51 @@ const searchTerm = computed(() => {
}); });
const filteredTables = computed(() => { const filteredTables = computed(() => {
if (props.searchMethod === 'elements')
return props.database.tables.filter(table => table.name.search(searchTerm.value) >= 0); return props.database.tables.filter(table => table.name.search(searchTerm.value) >= 0);
else
return props.database.tables;
}); });
const filteredTriggers = computed(() => { const filteredTriggers = computed(() => {
if (props.searchMethod === 'elements')
return props.database.triggers.filter(trigger => trigger.name.search(searchTerm.value) >= 0); return props.database.triggers.filter(trigger => trigger.name.search(searchTerm.value) >= 0);
else
return props.database.triggers;
}); });
const filteredProcedures = computed(() => { const filteredProcedures = computed(() => {
if (props.searchMethod === 'elements')
return props.database.procedures.filter(procedure => procedure.name.search(searchTerm.value) >= 0); return props.database.procedures.filter(procedure => procedure.name.search(searchTerm.value) >= 0);
else
return props.database.procedures;
}); });
const filteredFunctions = computed(() => { const filteredFunctions = computed(() => {
if (props.searchMethod === 'elements')
return props.database.functions.filter(func => func.name.search(searchTerm.value) >= 0); return props.database.functions.filter(func => func.name.search(searchTerm.value) >= 0);
else
return props.database.functions;
}); });
const filteredTriggerFunctions = computed(() => { const filteredTriggerFunctions = computed(() => {
if (props.searchMethod === 'elements') {
return props.database.triggerFunctions return props.database.triggerFunctions
? props.database.triggerFunctions.filter(func => func.name.search(searchTerm.value) >= 0) ? props.database.triggerFunctions.filter(func => func.name.search(searchTerm.value) >= 0)
: []; : [];
}
else {
return props.database.triggerFunctions
? props.database.triggerFunctions
: [];
}
}); });
const filteredSchedulers = computed(() => { const filteredSchedulers = computed(() => {
if (props.searchMethod === 'elements')
return props.database.schedulers.filter(scheduler => scheduler.name.search(searchTerm.value) >= 0); return props.database.schedulers.filter(scheduler => scheduler.name.search(searchTerm.value) >= 0);
else
return props.database.schedulers;
}); });
const workspace = computed(() => { const workspace = computed(() => {
@@ -446,10 +469,10 @@ const setBreadcrumbs = (payload: Breadcrumb) => {
changeBreadcrumbs(payload); changeBreadcrumbs(payload);
}; };
const highlightWord = (string: string) => { const highlightWord = (string: string, type = 'elements') => {
string = string.replaceAll('<', '&lt;').replaceAll('>', '&gt;'); string = string.replaceAll('<', '&lt;').replaceAll('>', '&gt;');
if (searchTerm.value) { if (searchTerm.value && props.searchMethod === type) {
const regexp = new RegExp(`(${searchTerm.value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')})`, 'gi'); const regexp = new RegExp(`(${searchTerm.value.replace(/[.*+?^${}()|[\]\\]/g, '\\$&')})`, 'gi');
return string.replace(regexp, '<span class="text-primary">$1</span>'); return string.replace(regexp, '<span class="text-primary">$1</span>');
} }

View File

@@ -63,14 +63,14 @@
class="context-element" class="context-element"
@click="showExportSchemaModal" @click="showExportSchemaModal"
> >
<span class="d-flex"><i class="mdi mdi-18px mdi-database-arrow-down text-light pr-1" /> {{ t('word.export') }}</span> <span class="d-flex"><i class="mdi mdi-18px mdi-database-export text-light pr-1" /> {{ t('word.export') }}</span>
</div> </div>
<div <div
v-if="workspace.customizations.schemaImport" v-if="workspace.customizations.schemaImport"
class="context-element" class="context-element"
@click="initImport" @click="initImport"
> >
<span class="d-flex"><i class="mdi mdi-18px mdi-database-arrow-up text-light pr-1" /> {{ t('word.import') }}</span> <span class="d-flex"><i class="mdi mdi-18px mdi-database-import text-light pr-1" /> {{ t('word.import') }}</span>
</div> </div>
<div <div
v-if="workspace.customizations.schemaEdit" v-if="workspace.customizations.schemaEdit"

View File

@@ -187,6 +187,7 @@ import WorkspaceTabPropsTableFields from '@/components/WorkspaceTabPropsTableFie
import WorkspaceTabPropsTableIndexesModal from '@/components/WorkspaceTabPropsTableIndexesModal.vue'; import WorkspaceTabPropsTableIndexesModal from '@/components/WorkspaceTabPropsTableIndexesModal.vue';
import WorkspaceTabPropsTableForeignModal from '@/components/WorkspaceTabPropsTableForeignModal.vue'; import WorkspaceTabPropsTableForeignModal from '@/components/WorkspaceTabPropsTableForeignModal.vue';
import { ipcRenderer } from 'electron'; import { ipcRenderer } from 'electron';
import { useSettingsStore } from '@/stores/settings';
const { t } = useI18n(); const { t } = useI18n();
@@ -200,8 +201,10 @@ const props = defineProps({
const { addNotification } = useNotificationsStore(); const { addNotification } = useNotificationsStore();
const workspacesStore = useWorkspacesStore(); const workspacesStore = useWorkspacesStore();
const settingsStore = useSettingsStore();
const { getSelected: selectedWorkspace } = storeToRefs(workspacesStore); const { getSelected: selectedWorkspace } = storeToRefs(workspacesStore);
const { showTableSize } = settingsStore;
const { const {
getWorkspace, getWorkspace,
@@ -257,7 +260,7 @@ const isChanged = computed(() => {
const getTableOptions = async (params: {uid: string; schema: string; table: string}) => { const getTableOptions = async (params: {uid: string; schema: string; table: string}) => {
const db = workspace.value.structure.find(db => db.name === props.schema); const db = workspace.value.structure.find(db => db.name === props.schema);
if (db && db.tables.length && props.table) if (db && db.tables.length && props.table && showTableSize)
tableOptions.value = db.tables.find(table => table.name === props.table); tableOptions.value = db.tables.find(table => table.name === props.table);
else { else {
const { status, response } = await Tables.getTableOptions(params); const { status, response } = await Tables.getTableOptions(params);

View File

@@ -532,7 +532,10 @@ const editOFF = () => {
break; break;
case 'custom': case 'custom':
localRow.value.autoIncrement = false; localRow.value.autoIncrement = false;
localRow.value.default = Number.isNaN(+defaultValue.value.custom) ? `'${defaultValue.value.custom}'` : defaultValue.value.custom; if (fieldType.value.group === 'string')
localRow.value.default = `'${defaultValue.value.custom}'`;
else
localRow.value.default = defaultValue.value.custom;
break; break;
case 'expression': case 'expression':
localRow.value.autoIncrement = false; localRow.value.autoIncrement = false;

View File

@@ -31,7 +31,7 @@
:class="{'active': resultsetIndex === index}" :class="{'active': resultsetIndex === index}"
@click="selectResultset(index)" @click="selectResultset(index)"
> >
<a>{{ result.fields ? result.fields[0].table : '' }} ({{ result.rows.length }})</a> <a>{{ result.fields ? result.fields[0]?.table : '' }} ({{ result.rows.length }})</a>
</li> </li>
</ul> </ul>
<div ref="table" class="table table-hover"> <div ref="table" class="table table-hover">
@@ -111,6 +111,37 @@
</div> </div>
</template> </template>
</ConfirmModal> </ConfirmModal>
<ConfirmModal
v-if="chunkModalRequest"
@confirm="downloadTable('sql', chunkModalRequest as string, true)"
@hide="chunkModalRequest = false"
>
<template #header>
<div class="d-flex">
<i class="mdi mdi-24px mdi-file-export mr-1" />
<span class="cut-text">{{ t('message.newInserStmtEvery') }}:</span>
</div>
</template>
<template #body>
<div class="columns">
<div class="column col-6">
<input
v-model.number="sqlExportOptions.sqlInsertAfter"
type="number"
class="form-input"
>
</div>
<div class="column col-6">
<BaseSelect
v-model="sqlExportOptions.sqlInsertDivider"
class="form-select"
:options="[{value: 'bytes', label: 'KiB'}, {value: 'rows', label: t('word.row', 2)}]"
/>
</div>
</div>
</template>
</ConfirmModal>
</div> </div>
</template> </template>
@@ -128,6 +159,7 @@ import BaseVirtualScroll from '@/components/BaseVirtualScroll.vue';
import WorkspaceTabQueryTableRow from '@/components/WorkspaceTabQueryTableRow.vue'; import WorkspaceTabQueryTableRow from '@/components/WorkspaceTabQueryTableRow.vue';
import TableContext from '@/components/WorkspaceTabQueryTableContext.vue'; import TableContext from '@/components/WorkspaceTabQueryTableContext.vue';
import ConfirmModal from '@/components/BaseConfirmModal.vue'; import ConfirmModal from '@/components/BaseConfirmModal.vue';
import BaseSelect from '@/components/BaseSelect.vue';
import * as moment from 'moment'; import * as moment from 'moment';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { TableField, QueryResult } from 'common/interfaces/antares'; import { TableField, QueryResult } from 'common/interfaces/antares';
@@ -179,9 +211,15 @@ const scrollElement = ref(null);
const rowHeight = ref(23); const rowHeight = ref(23);
const selectedField = ref(null); const selectedField = ref(null);
const isEditingRow = ref(false); const isEditingRow = ref(false);
const chunkModalRequest: Ref<false | string> = ref(false);
const sqlExportOptions = ref({
sqlInsertAfter: 250,
sqlInsertDivider: 'bytes' as 'bytes' | 'rows'
});
const workspaceSchema = computed(() => getWorkspace(props.connUid).breadcrumbs.schema); const workspaceSchema = computed(() => getWorkspace(props.connUid).breadcrumbs.schema);
const workspaceClient = computed(() => getWorkspace(props.connUid).client); const workspaceClient = computed(() => getWorkspace(props.connUid).client);
const customizations = computed(() => getWorkspace(props.connUid).customizations);
const primaryField = computed(() => { const primaryField = computed(() => {
const primaryFields = fields.value.filter(field => field.key === 'pri'); const primaryFields = fields.value.filter(field => field.key === 'pri');
@@ -219,7 +257,7 @@ const sortedResults = computed(() => {
return localResults.value; return localResults.value;
}); });
const resultsWithRows = computed(() => props.results.filter(result => result.rows)); const resultsWithRows = computed(() => props.results.filter(result => result.rows.length));
const fields = computed(() => resultsWithRows.value.length ? resultsWithRows.value[resultsetIndex.value].fields : []); const fields = computed(() => resultsWithRows.value.length ? resultsWithRows.value[resultsetIndex.value].fields : []);
const keyUsage = computed(() => resultsWithRows.value.length ? resultsWithRows.value[resultsetIndex.value].keys : []); const keyUsage = computed(() => resultsWithRows.value.length ? resultsWithRows.value[resultsetIndex.value].keys : []);
@@ -438,20 +476,17 @@ const copyRow = (format: string) => {
if (format === 'json') if (format === 'json')
navigator.clipboard.writeText(JSON.stringify(contentToCopy)); navigator.clipboard.writeText(JSON.stringify(contentToCopy));
else if (format === 'sql') { else if (format === 'sql') {
const sqlInserts = [];
if (!Array.isArray(contentToCopy)) contentToCopy = [contentToCopy]; if (!Array.isArray(contentToCopy)) contentToCopy = [contentToCopy];
for (const row of contentToCopy) { const sqlInserts = jsonToSqlInsert({
sqlInserts.push(jsonToSqlInsert({ json: contentToCopy,
json: row,
client: workspaceClient.value, client: workspaceClient.value,
fields: fieldsObj.value as { fields: fieldsObj.value as {
[key: string]: {type: string; datePrecision: number}; [key: string]: {type: string; datePrecision: number};
}, },
table: getTable(resultsetIndex.value) table: getTable(resultsetIndex.value)
})); });
} navigator.clipboard.writeText(sqlInserts);
navigator.clipboard.writeText(sqlInserts.join('\n'));
} }
else if (format === 'csv') { else if (format === 'csv') {
const csv = []; const csv = [];
@@ -665,22 +700,31 @@ const selectResultset = (index: number) => {
resultsetIndex.value = index; resultsetIndex.value = index;
}; };
const downloadTable = (format: 'csv' | 'json' | 'sql', table: string) => { const downloadTable = (format: 'csv' | 'json' | 'sql', table: string, chunks = false) => {
if (!sortedResults.value) return; if (!sortedResults.value) return;
const rows = JSON.parse(JSON.stringify(sortedResults.value)).map((row: any) => { if (format === 'sql' && !chunks && customizations.value.exportByChunks) {
delete row._antares_id; chunkModalRequest.value = table;
return row; return;
}
else
chunkModalRequest.value = false;
const rows = sortedResults.value.map((row: any) => {
const clonedRow = { ...row };
delete clonedRow._antares_id;
return clonedRow;
}); });
exportRows({ exportRows({
type: format, type: format,
content: rows, content: rows,
fields: fieldsObj.value as { fields: JSON.parse(JSON.stringify(fieldsObj.value)) as {
[key: string]: {type: string; datePrecision: number}; [key: string]: {type: string; datePrecision: number};
}, },
client: workspaceClient.value, client: workspaceClient.value,
table table,
sqlOptions: chunks ? { ...sqlExportOptions.value }: null
}); });
}; };

View File

@@ -292,7 +292,7 @@ export const enUS = {
autoCommit: 'Auto commit', autoCommit: 'Auto commit',
manualCommit: 'Manual commit', manualCommit: 'Manual commit',
actionSuccessful: '{action} successful', actionSuccessful: '{action} successful',
importQueryErrors: 'Warning: {n} error has accurrend | Warning: {n} errors occurred', importQueryErrors: 'Warning: {n} error has occurrend | Warning: {n} errors occurred',
executedQueries: '{n} query executed | {n} queries executed', executedQueries: '{n} query executed | {n} queries executed',
ourputFormat: 'Output format', ourputFormat: 'Output format',
singleFile: 'Single {ext} file', singleFile: 'Single {ext} file',
@@ -335,7 +335,11 @@ export const enUS = {
deleteFolder: 'Delete folder', deleteFolder: 'Delete folder',
editConnectionAppearence: 'Edit connection appearence', editConnectionAppearence: 'Edit connection appearence',
executeSelectedQuery: 'Execute selected query', executeSelectedQuery: 'Execute selected query',
defaultCopyType: 'Default copy type' defaultCopyType: 'Default copy type',
showTableSize: 'Show table size in sidebar',
showTableSizeDescription: 'MySQL/MariaDB only. Enable this option may affects performance on schema with many tables.',
searchForSchemas: 'Search for schemas',
switchSearchMethod: 'Switch search method'
}, },
faker: { faker: {
address: 'Address', address: 'Address',

View File

@@ -8,7 +8,7 @@ export const zhCN = {
cancel: '取消', cancel: '取消',
send: '发送', send: '发送',
connectionName: '连接名称', connectionName: '连接名称',
client: 'Client', client: '数据库类型',
hostName: '主机名', hostName: '主机名',
port: '端口', port: '端口',
user: '用户', user: '用户',
@@ -17,10 +17,10 @@ export const zhCN = {
connect: '连接', connect: '连接',
connected: '已连接', connected: '已连接',
disconnect: '断开连接', disconnect: '断开连接',
disconnected: '断开', disconnected: '断开连接',
refresh: '刷新', refresh: '刷新',
settings: '设置', settings: '设置',
general: '一般', general: '常规',
themes: '主题', themes: '主题',
update: '更新', update: '更新',
about: '关于', about: '关于',
@@ -28,7 +28,7 @@ export const zhCN = {
version: '版本', version: '版本',
donate: '捐赠', donate: '捐赠',
run: '运行', run: '运行',
schema: 'schema', schema: '模式(schema)',
results: '结果', results: '结果',
size: '尺寸', size: '尺寸',
seconds: '秒', seconds: '秒',
@@ -51,38 +51,38 @@ export const zhCN = {
unsigned: '无符号', unsigned: '无符号',
default: '默认', default: '默认',
comment: '注释', comment: '注释',
key: 'Key | Keys', key: '键位 | 键位',
order: 'Order', order: '排序',
expression: '表达式', expression: '表达式',
autoIncrement: '自动增量', autoIncrement: '自动增量',
engine: 'Engine', engine: '引擎',
field: 'Field | 字段', field: '字段 | 字段',
approximately: '大约', approximately: '大约',
total: '总计', total: '总计',
table: '表', table: '表',
discard: '弃', discard: '弃',
stay: '等待', stay: '等待',
author: '作者', author: '作者',
light: 'Light', light: '明亮',
dark: 'Dark', dark: '暗黑',
autoCompletion: '自动完成', autoCompletion: '自动完成',
application: '应用程序', application: '应用程序',
editor: '编辑器', editor: '编辑器',
view: '视图', view: '视图',
definer: '定义者', definer: '定义者',
algorithm: 'Algorithm', algorithm: '算法',
trigger: 'Trigger | 触发器', trigger: '触发器 | 触发器',
storedRoutine: 'Stored routine | 存储例程', storedRoutine: '存储例程 | 存储例程',
scheduler: 'Scheduler | 调度器', scheduler: '调度器 | 调度器',
event: '事件', event: '事件',
parameters: '参数', parameters: '参数',
function: 'Function | 函数', function: '函数 | 函数',
deterministic: 'Deterministic', deterministic: '确定的',
context: '上下文', context: '上下文',
export: '导出', export: '导出',
import: '导入', import: '导入',
returns: '返回', returns: '返回',
timing: '定时', timing: '定时',
state: '状态', state: '状态',
execution: '执行', execution: '执行',
starts: '开始', starts: '开始',
@@ -91,10 +91,10 @@ export const zhCN = {
privateKey: '私钥', privateKey: '私钥',
certificate: '证书', certificate: '证书',
caCertificate: 'CA 证书', caCertificate: 'CA 证书',
ciphers: 'Ciphers', ciphers: '密码',
upload: '上传', upload: '上传',
browse: '浏览', browse: '浏览',
faker: 'Faker', faker: '伪造者',
content: '内容', content: '内容',
cut: '剪切', cut: '剪切',
copy: '复制', copy: '复制',
@@ -103,25 +103,25 @@ export const zhCN = {
variables: '变量', variables: '变量',
processes: '进程', processes: '进程',
database: '数据库', database: '数据库',
scratchpad: 'Scratchpad', scratchpad: '草稿栏',
array: '数组', array: '数组',
changelog: '更日志', changelog: '更日志',
format: '格式', format: '格式',
sshTunnel: 'SSH 隧道', sshTunnel: 'SSH 隧道',
structure: '结构', structure: '结构',
small: '小', small: '小',
medium: '中', medium: '中',
large: '大', large: '大',
row: 'Row | 行', row: ' | 行',
cell: 'Cell | 单元格', cell: '单元格 | 单元格',
triggerFunction: 'Trigger function | 触发函数', triggerFunction: '触发函数 | 触发函数',
all: '全部', all: '全部',
duplicate: '重复', duplicate: '重复',
routine: '例程', routine: '例程',
new: 'New', new: '',
history: '历史记录', history: '历史',
select: '选择', select: '选择',
passphrase: '密码', passphrase: '密码短语',
filter: '过滤器', filter: '过滤器',
change: '变更', change: '变更',
views: '视图', views: '视图',
@@ -129,84 +129,92 @@ export const zhCN = {
routines: '例程', routines: '例程',
functions: '函数', functions: '函数',
schedulers: '调度器', schedulers: '调度器',
includes: '包', includes: '包',
drop: '按下([使]掉下)', drop: '下降',
completed: '完成', completed: '完成',
aborted: '中止', aborted: '中止',
disabled: '禁用', disabled: '禁用',
enable: '启用', enable: '启用',
disable: '是否禁用', disable: '禁用',
commit: '提交', commit: '提交',
rollback: '回滚', rollback: '回滚',
connectionString: '连接字符串', connectionString: '连接字符串',
contributors: '贡献者', contributors: '贡献者',
pin: 'Pin', pin: '固定',
unpin: 'Unpin' unpin: '取消固定',
console: '控制台',
shortcuts: '快捷键',
folder: '文件夹 | 文件夹',
appearence: '外观',
color: '颜色',
label: '标签',
icon: '图标',
resultsTable: '结果表'
}, },
message: { message: {
appWelcome: '欢迎来到Antares SQL Client!', appWelcome: '欢迎来到Antares SQL Client!',
appFirstStep: '你的第一步: 创建一个新的数据库连接.', appFirstStep: '你的第一步: 创建一个新的数据库连接.',
addConnection: '添加连接', addConnection: '添加连接',
createConnection: '创建连接', createConnection: '创建连接',
createNewConnection: '创建新连接', createNewConnection: '创建新连接',
askCredentials: '询问凭', askCredentials: '询问凭',
testConnection: '测试连接', testConnection: '测试连接',
editConnection: '编辑连接', editConnection: '编辑连接',
deleteConnection: '删除连接', deleteConnection: '删除连接',
deleteCorfirm: '您是否确认取消', deleteCorfirm: '您是否确认取消',
connectionSuccessfullyMade: '连接成功建立!', connectionSuccessfullyMade: '连接成功!',
madeWithJS: '用💛和JavaScript制造!', madeWithJS: '使用 💛 和 JavaScript 制作!',
checkForUpdates: '检查更新', checkForUpdates: '检查更新',
noUpdatesAvailable: '没有可用更新', noUpdatesAvailable: '可用更新',
checkingForUpdate: '正在检查更新', checkingForUpdate: '正在检查更新',
checkFailure: '检查失败,请稍后再试', checkFailure: '检查失败,请稍后再试',
updateAvailable: '可用更新', updateAvailable: '可用更新',
downloadingUpdate: '正在下载更新', downloadingUpdate: '正在下载更新',
updateDownloaded: '更新已下载', updateDownloaded: '已下载更新',
restartToInstall: '重启Antares完成更新', restartToInstall: '重启 Antares 以进行安装',
unableEditFieldWithoutPrimary: '无法编辑一个在结果集中没有主键的字段', unableEditFieldWithoutPrimary: '无法编辑结果集中一个没有主键的字段',
editCell: '编辑单元格', editCell: '编辑单元格',
deleteRows: '删除行 | 删除 {count} 行', deleteRows: '删除行 | 删除 {count} 行',
confirmToDeleteRows: '是否确认要删除一行? | 您是否确认要删除{count}行?', confirmToDeleteRows: '是否确认要删除一行? | 您是否确认要删除 {count} 行?',
notificationsTimeout: '通知超时', notificationsTimeout: '通知超时',
uploadFile: '上传文件', uploadFile: '上传文件',
addNewRow: '添加新行', addNewRow: '添加新行',
numberOfInserts: '插入的数量', numberOfInserts: '插入的数量',
openNewTab: '打开一个新标签', openNewTab: '打开一个新标签',
affectedRows: '受影响的行', affectedRows: '受影响的行',
createNewDatabase: '创建新数据库', createNewDatabase: '创建新数据库',
databaseName: '数据库名称', databaseName: '数据库名称',
serverDefault: '默认服务器', serverDefault: '默认服务器',
deleteDatabase: '删除数据库', deleteDatabase: '删除数据库',
editDatabase: '编辑数据库', editDatabase: '编辑数据库',
clearChanges: '清除变化', clearChanges: '清除更改',
addNewField: '添加新字段', addNewField: '添加新字段',
manageIndexes: '管理索引', manageIndexes: '管理索引',
manageForeignKeys: '管理外键', manageForeignKeys: '管理外键',
allowNull: '允许 NULL', allowNull: '允许 NULL',
zeroFill: '填充', zeroFill: '填充',
customValue: '自定义值', customValue: '自定义值',
onUpdate: '在更新', onUpdate: '在更新',
deleteField: '删除字段', deleteField: '删除字段',
createNewIndex: '创建新索引', createNewIndex: '创建新索引',
addToIndex: '添加到索引', addToIndex: '添加到索引',
createNewTable: '创建新表', createNewTable: '创建新表',
emptyTable: '清空表', emptyTable: '清空表',
deleteTable: '删除表', deleteTable: '删除表',
emptyCorfirm: '是否确认清空', emptyCorfirm: '是否确认清空',
unsavedChanges: '未保存的更改', unsavedChanges: '未保存的更改',
discardUnsavedChanges: '有一些未保存的修改。关闭这个标签,这些变化将被丢弃.', discardUnsavedChanges: '有一些未保存的更改, 关闭此标签将放弃这些更改.',
thereAreNoIndexes: '没有索引', thereAreNoIndexes: '没有索引',
thereAreNoForeign: '没有外键', thereAreNoForeign: '没有外键',
createNewForeign: '创建新外键', createNewForeign: '创建新外键',
referenceTable: '参考表', referenceTable: '参考表',
referenceField: '参考字段', referenceField: '参考字段',
foreignFields: '外键字段', foreignFields: '外键字段',
invalidDefault: '无效的默认值', invalidDefault: '无效的默认值',
onDelete: '在删除', onDelete: '在删除',
applicationTheme: '应用主题', applicationTheme: '应用程序主题',
editorTheme: '编辑器主题', editorTheme: '编辑器主题',
wrapLongLines: '超出换行显示', wrapLongLines: '将长行换行显示',
selectStatement: '选择语句', selectStatement: '选择语句',
triggerStatement: '触发器语句', triggerStatement: '触发器语句',
sqlSecurity: 'SQL 安全', sqlSecurity: 'SQL 安全',
@@ -214,19 +222,19 @@ export const zhCN = {
deleteView: '删除视图', deleteView: '删除视图',
createNewView: '创建新视图', createNewView: '创建新视图',
deleteTrigger: '删除触发器', deleteTrigger: '删除触发器',
createNewTrigger: '创建新触发器', createNewTrigger: '创建新触发器',
currentUser: '当前用户', currentUser: '当前用户',
routineBody: '例程主体', routineBody: '例程主体',
dataAccess: '数据访问', dataAccess: '数据访问',
thereAreNoParameters: '没有参数', thereAreNoParameters: '没有参数',
createNewParameter: '创建新参数', createNewParameter: '创建新参数',
createNewRoutine: '创建新例程', createNewRoutine: '创建新存储例程',
deleteRoutine: '删除例程', deleteRoutine: '删除存储例程',
functionBody: '函数体', functionBody: '函数体',
createNewFunction: '创建新函数', createNewFunction: '创建新函数',
deleteFunction: '删除函数', deleteFunction: '删除函数',
schedulerBody: '调度器主体', schedulerBody: '调度器主体',
createNewScheduler: '创建新调度器', createNewScheduler: '创建新调度器',
deleteScheduler: '删除调度器', deleteScheduler: '删除调度器',
preserveOnCompletion: '完成时保存', preserveOnCompletion: '完成时保存',
enableSsl: '启用 SSL', enableSsl: '启用 SSL',
@@ -234,14 +242,14 @@ export const zhCN = {
tableFiller: '表填充器', tableFiller: '表填充器',
fakeDataLanguage: '伪造的数据语言', fakeDataLanguage: '伪造的数据语言',
searchForElements: '搜索元素', searchForElements: '搜索元素',
selectAll: '选择所有', selectAll: '选择全部',
queryDuration: '查询时间', queryDuration: '查询时间',
includeBetaUpdates: '包测试版更新', includeBetaUpdates: '包测试版更新',
setNull: '设置 NULL', setNull: '设置 NULL',
processesList: '进程列表', processesList: '进程列表',
processInfo: '进程信息', processInfo: '进程信息',
manageUsers: '管理用户', manageUsers: '管理用户',
createNewSchema: '创建新模式', createNewSchema: '创建新模式(schema)',
schemaName: '模式名称', schemaName: '模式名称',
editSchema: '编辑模式', editSchema: '编辑模式',
deleteSchema: '删除模式', deleteSchema: '删除模式',
@@ -250,10 +258,10 @@ export const zhCN = {
dataTabPageSize: '数据标签的页面大小', dataTabPageSize: '数据标签的页面大小',
enableSsh: '启用 SSH', enableSsh: '启用 SSH',
pageNumber: '页数', pageNumber: '页数',
duplicateTable: '重复的表', duplicateTable: '重复的表',
noOpenTabs: '没有打开的标签,在左栏导航或:', noOpenTabs: '没有打开的标签, 请在左侧栏上导航或:',
noSchema: '没有模式', noSchema: '没有模式',
restorePreviourSession: '恢复以前的会话', restorePreviourSession: '恢复上一个会话',
runQuery: '运行查询', runQuery: '运行查询',
thereAreNoTableFields: '没有表的字段', thereAreNoTableFields: '没有表的字段',
newTable: '新表', newTable: '新表',
@@ -263,40 +271,73 @@ export const zhCN = {
newFunction: '新函数', newFunction: '新函数',
newScheduler: '新调度器', newScheduler: '新调度器',
newTriggerFunction: '新触发函数', newTriggerFunction: '新触发函数',
thereIsNoQueriesYet: '还没有查询', thereIsNoQueriesYet: '目前还没有任何查询',
searchForQueries: '搜索查询', searchForQueries: '搜索查询',
killProcess: '杀死进程', killProcess: '终止进程',
closeTab: '关闭标签', closeTab: '关闭标签',
exportSchema: '导出 schema', exportSchema: '导出模式(schema)',
importSchema: '导入 schema', importSchema: '导入模式(schema)',
directoryPath: '目录路径', directoryPath: '目录路径',
newInserStmtEvery: '新的 INSERT 语句每个', newInserStmtEvery: '每条新的 INSERT 语句',
processingTableExport: '处理 {table}', processingTableExport: '处理 {table}',
fechingTableExport: '正在 {table} 获取数据', fechingTableExport: '正在获取 {table} 数据',
writingTableExport: '正在 {table} 数据写入中', writingTableExport: '正在写入 {table} 数据',
checkAllTables: '检查所有表', checkAllTables: '勾选所有表',
uncheckAllTables: '取消选中所有表', uncheckAllTables: '不勾选所有表',
goToDownloadPage: '转到下载页面', goToDownloadPage: '转到下载页面',
readOnlyMode: '只读模式', readOnlyMode: '只读模式',
killQuery: '停止查询', killQuery: '取消查询',
insertRow: '插入行 | 插入多行', insertRow: '插入行 | 插入多行',
commitMode: '提交模式', commitMode: '提交模式',
autoCommit: '自动提交', autoCommit: '自动提交',
manualCommit: '手动提交', manualCommit: '手动提交',
actionSuccessful: '{action} 成功', actionSuccessful: '{action} 成功',
importQueryErrors: '警告: {n} 错误已发生 | 警告: 发生 {n} 个错误', importQueryErrors: '警告: 发生了 {n} 错误 | 警告: 发生 {n} 个错误',
executedQueries: '{n} 个查询已执行 | {n} 个查询已执行', executedQueries: '{n} 个查询已执行 | {n} 个查询已执行',
ourputFormat: '输出格式', ourputFormat: '输出格式',
singleFile: '单个 {ext} 文件', singleFile: '单个 {ext} 文件',
zipCompressedFile: 'ZIP 压缩 {ext} 文件', zipCompressedFile: 'ZIP 压缩 {ext} 文件',
disableBlur: '禁用模糊', disableBlur: '禁用模糊',
untrustedConnection: '不受信任的连接', untrustedConnection: '不受信任的连接',
missingOrIncompleteTranslation: '翻译缺失或不完整?', missingOrIncompleteTranslation: '缺失或不完整的翻译?',
findOutHowToContribute: '找出如何贡献', findOutHowToContribute: '了解如何做出贡献',
disableFKChecks: '禁用外键检查', disableFKChecks: '禁用外键检查',
allConnections: '所有连接', allConnections: '所有连接',
searchForConnections: '搜索连接', searchForConnections: '搜索连接',
disableScratchpad: '禁用暂存器' disableScratchpad: '禁用草稿栏',
reportABug: '报告错误',
nextTab: '下一个标签',
previousTab: '上一个标签',
selectTabNumber: '选择标签编号 {param}',
toggleConsole: '切换控制台',
addShortcut: '添加快捷键',
editShortcut: '编辑快捷键',
deleteShortcut: '删除快捷键',
restoreDefaults: '恢复默认值',
restoreDefaultsQuestion: '是否确认恢复默认值?',
registerAShortcut: '注册快捷键',
invalidShortcutMessage: '无效组合,请继续输入',
shortcutAlreadyExists: '快捷键已经存在',
saveContent: '保存内容',
openAllConnections: '打开全部连接',
openSettings: '打开设置',
openScratchpad: '打开草稿栏',
runOrReload: '运行或重新加载',
formatQuery: '格式查询',
queryHistory: '查询历史',
clearQuery: '清除查询',
openFilter: '打开过滤器',
nextResultsPage: '下一个结果页',
previousResultsPage: '上一个结果页',
fillCell: '填充单元格',
editFolder: '编辑文件夹',
folderName: '文件夹名称',
deleteFolder: '删除文件夹',
editConnectionAppearence: '编辑连接的外观',
executeSelectedQuery: '执行所选查询',
defaultCopyType: '默认复制类型',
showTableSize: '在侧边栏显示表大小',
showTableSizeDescription: '仅限 MySQL/MariaDB. 启用此选项可能会影响许多表的模式(schema)的性能.'
}, },
faker: { faker: {
address: '地址', address: '地址',
@@ -306,8 +347,8 @@ export const zhCN = {
date: '日期', date: '日期',
finance: '财务', finance: '财务',
git: 'Git', git: 'Git',
hacker: 'Hacker', hacker: '黑客',
internet: 'Internet', internet: '互联网',
lorem: 'Lorem', lorem: 'Lorem',
name: '姓名', name: '姓名',
music: '音乐', music: '音乐',
@@ -317,25 +358,25 @@ export const zhCN = {
time: '时间', time: '时间',
vehicle: '车辆', vehicle: '车辆',
zipCode: '邮政编码', zipCode: '邮政编码',
zipCodeByState: '州的邮', zipCodeByState: '州的邮政编码',
city: '城市', city: '城市',
cityPrefix: '城市前缀', cityPrefix: '城市前缀',
citySuffix: '城市后缀', citySuffix: '城市后缀',
streetName: '街道名称', streetName: '街道名称',
streetAddress: '街道地址', streetAddress: '街道地址',
streetSuffix: '街道缀', streetSuffix: '街道缀',
streetPrefix: '街道缀', streetPrefix: '街道缀',
secondaryAddress: '次要地址', secondaryAddress: '次要地址',
county: '县', county: '县',
country: '国家', country: '国家',
countryCode: '国家代码', countryCode: '国家代码',
state: '州', state: '州',
stateAbbr: '州的缩写', stateAbbr: '州简称',
latitude: '纬度', latitude: '纬度',
longitude: '经度', longitude: '经度',
direction: '方向', direction: '方向',
cardinalDirection: 'Cardinal direction', cardinalDirection: '方位',
ordinalDirection: 'Ordinal direction', ordinalDirection: '顺序方向',
nearbyGPSCoordinate: '附近的 GPS 坐标', nearbyGPSCoordinate: '附近的 GPS 坐标',
timeZone: '时区', timeZone: '时区',
color: '颜色', color: '颜色',
@@ -345,23 +386,24 @@ export const zhCN = {
productAdjective: '产品形容词', productAdjective: '产品形容词',
productMaterial: '产品材料', productMaterial: '产品材料',
product: '产品', product: '产品',
productDescription: '产品描述', productDescription: '产品说明',
suffixes: '后缀', suffixes: '后缀',
companyName: '公司名称', companyName: '公司名称',
companySuffix: '公司后缀', companySuffix: '公司后缀',
catchPhrase: 'Catch phrase', catchPhrase: '流行语',
bs: 'BS', bs: 'BS',
catchPhraseAdjective: 'Catch phrase adjective', catchPhraseAdjective: '流行语形容词',
catchPhraseDescriptor: 'Catch phrase descriptor', catchPhraseDescriptor: '流行语说明',
catchPhraseNoun: 'Catch phrase noun', catchPhraseNoun: '流行语名词',
bsAdjective: 'BS adjective', bsAdjective: 'BS 形容词',
bsBuzz: 'BS buzz', bsBuzz: 'BS 嗡嗡声',
bsNoun: 'BS noun', bsNoun: 'BS 名称',
column: '列', column: '列',
type: '类型', type: '类型',
collation: '校对', collation: '排序规则',
engine: 'Engine', engine: '引擎',
past: '过去', past: '过去',
now: '现在',
future: '未来', future: '未来',
between: '之间', between: '之间',
recent: '最近', recent: '最近',
@@ -370,7 +412,7 @@ export const zhCN = {
weekday: '工作日', weekday: '工作日',
account: '账户', account: '账户',
accountName: '账户名称', accountName: '账户名称',
routingNumber: '路由号', routingNumber: '路由号',
mask: '掩码', mask: '掩码',
amount: '金额', amount: '金额',
transactionType: '交易类型', transactionType: '交易类型',
@@ -389,29 +431,29 @@ export const zhCN = {
commitEntry: '提交条目', commitEntry: '提交条目',
commitMessage: '提交信息', commitMessage: '提交信息',
commitSha: '提交 SHA', commitSha: '提交 SHA',
shortSha: 'Short SHA', shortSha: '短的 SHA',
abbreviation: '缩写', abbreviation: '缩写',
adjective: '形容词', adjective: '形容词',
noun: '名词', noun: '名词',
verb: '动词', verb: '动词',
ingverb: 'Ingverb', ingverb: '英式动词',
phrase: '短语', phrase: '短语',
avatar: '头像', avatar: '头像',
email: '电子邮箱', email: '电子邮箱',
exampleEmail: '电子邮件例子', exampleEmail: '示例电子邮件',
userName: '用户名', userName: '用户名',
protocol: '协议', protocol: '协议',
url: 'Url', url: '统一资源定位地址',
domainName: 'Domin name', domainName: '域名',
domainSuffix: '域名后缀', domainSuffix: '域名后缀',
domainWord: 'Domain word', domainWord: '域词',
ip: 'Ip', ip: 'Ip',
ipv6: 'Ipv6', ipv6: 'Ipv6',
userAgent: 'User agent', userAgent: '用户代理',
mac: 'Mac', mac: 'Mac',
password: '密码', password: '密码',
word: 'Word', word: '单词',
words: 'Words', words: '单词',
sentence: '句子', sentence: '句子',
slug: 'Slug', slug: 'Slug',
sentences: '句子', sentences: '句子',
@@ -419,7 +461,7 @@ export const zhCN = {
paragraphs: '段落', paragraphs: '段落',
text: '文本', text: '文本',
lines: '行', lines: '行',
genre: 'Genre', genre: '类型',
firstName: '名', firstName: '名',
lastName: '姓氏', lastName: '姓氏',
middleName: '中间名', middleName: '中间名',
@@ -428,30 +470,30 @@ export const zhCN = {
gender: '性别', gender: '性别',
prefix: '前缀', prefix: '前缀',
suffix: '后缀', suffix: '后缀',
title: '标题', title: '头衔',
jobDescriptor: '工作描述', jobDescriptor: '工作描述',
jobArea: '工作领域', jobArea: '工作领域',
jobType: '工作类型', jobType: '工作类型',
phoneNumber: '电话号码', phoneNumber: '电话号码',
phoneNumberFormat: '电话号码格式', phoneNumberFormat: '电话号码格式',
phoneFormats: '电话格式', phoneFormats: '电话格式',
number: 'Number', number: '号码',
float: 'Float', float: 'Float',
arrayElement: '数组元素', arrayElement: '数组元素',
arrayElements: '数组元素', arrayElements: '数组元素',
objectElement: '对象元素', objectElement: '对象元素',
uuid: 'Uuid', uuid: 'Uuid',
boolean: 'Boolean', boolean: '布尔型',
image: 'Image', image: '镜像',
locale: 'Locale', locale: '区域',
alpha: 'Alpha', alpha: '阿尔法',
alphaNumeric: 'Alphanumeric', alphaNumeric: 'α 数字',
hexaDecimal: 'Hexadecimal', hexaDecimal: '十六进制',
fileName: '文件名', fileName: '文件名',
commonFileName: '普通文件名', commonFileName: '普通文件名',
mimeType: 'MIME类型', mimeType: 'MIME类型',
commonFileType: '常见文件类型', commonFileType: '常见文件类型',
commonFileExt: '常见文件扩展名', commonFileExt: '常见文件扩展名',
fileType: '文件类型', fileType: '文件类型',
fileExt: '文件扩展名', fileExt: '文件扩展名',
directoryPath: '目录路径', directoryPath: '目录路径',

View File

@@ -9,6 +9,7 @@ export const exportRows = (args: {
fields?: { fields?: {
[key: string]: {type: string; datePrecision: number}; [key: string]: {type: string; datePrecision: number};
}; };
sqlOptions?: {sqlInsertAfter: number; sqlInsertDivider: 'bytes' | 'rows'};
}) => { }) => {
let mime; let mime;
let content; let content;
@@ -21,27 +22,30 @@ export const exportRows = (args: {
if (args.content.length) if (args.content.length)
csv.push(Object.keys(args.content[0]).join(';')); csv.push(Object.keys(args.content[0]).join(';'));
for (const row of args.content) for (const row of args.content) {
csv.push(Object.values(row).map(col => typeof col === 'string' ? `"${col}"` : col).join(';')); csv.push(Object.values(row).map(col => {
if (typeof col === 'string') return `"${col}"`;
if (col instanceof Buffer) return col.toString('base64');
if (col instanceof Uint8Array) return Buffer.from(col).toString('base64');
return col;
}).join(';'));
}
content = csv.join('\n'); content = csv.join('\n');
break; break;
} }
case 'sql': { case 'sql': {
mime = 'text/sql'; mime = 'text/sql';
const sql = []; const sql = jsonToSqlInsert({
json: args.content,
for (const row of args.content) {
sql.push(jsonToSqlInsert({
json: row,
client: client:
args.client, args.client,
fields: args.fields, fields: args.fields,
table: args.table table: args.table,
})); options: args.sqlOptions
} });
content = sql.join('\n'); content = sql;
break; break;
} }
case 'json': case 'json':

View File

@@ -19,6 +19,7 @@ export const useSettingsStore = defineStore('settings', {
allowPrerelease: settingsStore.get('allow_prerelease', true) as boolean, allowPrerelease: settingsStore.get('allow_prerelease', true) as boolean,
explorebarSize: settingsStore.get('explorebar_size', null) as number, explorebarSize: settingsStore.get('explorebar_size', null) as number,
notificationsTimeout: settingsStore.get('notifications_timeout', 5) as number, notificationsTimeout: settingsStore.get('notifications_timeout', 5) as number,
showTableSize: settingsStore.get('show_table_size', false) as boolean,
dataTabLimit: settingsStore.get('data_tab_limit', 1000) as number, dataTabLimit: settingsStore.get('data_tab_limit', 1000) as number,
autoComplete: settingsStore.get('auto_complete', true) as boolean, autoComplete: settingsStore.get('auto_complete', true) as boolean,
lineWrap: settingsStore.get('line_wrap', true) as boolean, lineWrap: settingsStore.get('line_wrap', true) as boolean,
@@ -50,6 +51,10 @@ export const useSettingsStore = defineStore('settings', {
this.notificationsTimeout = timeout; this.notificationsTimeout = timeout;
settingsStore.set('notifications_timeout', this.notificationsTimeout); settingsStore.set('notifications_timeout', this.notificationsTimeout);
}, },
changeShowTableSize (show: boolean) {
this.showTableSize = show;
settingsStore.set('show_table_size', this.showTableSize);
},
changeExplorebarSize (size: number) { changeExplorebarSize (size: number) {
this.explorebarSize = size; this.explorebarSize = size;
settingsStore.set('explorebar_size', this.explorebarSize); settingsStore.set('explorebar_size', this.explorebarSize);