mirror of
https://github.com/Fabio286/antares.git
synced 2025-06-05 21:59:22 +02:00
Compare commits
62 Commits
Author | SHA1 | Date | |
---|---|---|---|
9d90dc362e | |||
e808b86c52 | |||
6e01f0f2e7 | |||
38bfea279c | |||
0044522390 | |||
|
462ede8dc7 | ||
60dd4df5ec | |||
fa006798cf | |||
c5abc3d6b2 | |||
|
a8dc30c9dd | ||
|
2cfed3e79b | ||
|
001983c5a2 | ||
470f7455c0 | |||
|
70e00a7ee6 | ||
|
b76247e304 | ||
f58c30ff17 | |||
5bdbebfbc3 | |||
|
03c4a1c797 | ||
|
e18604b3ce | ||
|
3ff8d2571b | ||
|
f22f8d2317 | ||
|
8a4a099e37 | ||
|
702ffb81ef | ||
|
93e16fdda2 | ||
|
575c8ea8ca | ||
|
4ff1d107b8 | ||
3ad1e51f42 | |||
e07e7b736e | |||
89815bf5e7 | |||
9d00f58998 | |||
f5d001846a | |||
0a6907b549 | |||
322f92b734 | |||
|
038e4494f5 | ||
56b71ec0d1 | |||
787014c38d | |||
e60726c741 | |||
904670781d | |||
22bdaac18b | |||
446199827b | |||
53a71d55c5 | |||
03638c0553 | |||
8968179c11 | |||
2c0b4ffe1f | |||
f454b4bb1c | |||
56698725cb | |||
|
1896013267 | ||
17eeb6d38e | |||
5e83b4466d | |||
|
45d1934f96 | ||
|
7821e25bdb | ||
ae8d558989 | |||
|
b348c83501 | ||
|
f58a12ebd5 | ||
|
b806deeed0 | ||
|
4e1be838bd | ||
|
bb7ec76ced | ||
|
e2b843cd18 | ||
8c9713e805 | |||
786de6a7ba | |||
1bf54a69fd | |||
|
12f3e03b45 |
@@ -211,8 +211,28 @@
|
||||
"contributions": [
|
||||
"translation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "m1khal3v",
|
||||
"name": "Anton Mikhalev",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/41085561?v=4",
|
||||
"profile": "https://github.com/m1khal3v",
|
||||
"contributions": [
|
||||
"translation"
|
||||
]
|
||||
},
|
||||
{
|
||||
"login": "64knl",
|
||||
"name": "René",
|
||||
"avatar_url": "https://avatars.githubusercontent.com/u/3864423?v=4",
|
||||
"profile": "https://64k.nl/",
|
||||
"contributions": [
|
||||
"code",
|
||||
"translation"
|
||||
]
|
||||
}
|
||||
],
|
||||
"contributorsPerLine": 7,
|
||||
"skipCi": true
|
||||
"skipCi": true,
|
||||
"commitType": "docs"
|
||||
}
|
||||
|
32
.github/workflows/create-artifact-linux-arm64.yml
vendored
Normal file
32
.github/workflows/create-artifact-linux-arm64.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: Create artifact [LINUX ARM64]
|
||||
|
||||
on:
|
||||
workflow_dispatch: {}
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out Git repository
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Node.js
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 16
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm i
|
||||
|
||||
- name: "Build"
|
||||
run: npm run build -- --arm64 --linux deb AppImage
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: linux-build
|
||||
retention-days: 3
|
||||
path: |
|
||||
build
|
||||
!build/*-unpacked
|
||||
!build/.icon-ico
|
63
CHANGELOG.md
63
CHANGELOG.md
@@ -2,6 +2,69 @@
|
||||
|
||||
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.13](https://github.com/antares-sql/antares/compare/v0.7.12...v0.7.13) (2023-07-06)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* button to open table settings tab, closes [#608](https://github.com/antares-sql/antares/issues/608) ([38bfea2](https://github.com/antares-sql/antares/commit/38bfea279ce93366dfd2021d0e91622a5a88878e))
|
||||
* update connection ([462ede8](https://github.com/antares-sql/antares/commit/462ede8dc701aaf9c6089b3ec41eea0f31babdf9))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **PostgreSQL:** unable to connect to database, fixes [#614](https://github.com/antares-sql/antares/issues/614) ([e808b86](https://github.com/antares-sql/antares/commit/e808b86c52b8488e0c079a9f0ddce225338af4c0))
|
||||
* unable to copy as sql inserts with BIT fileds, fixes [#613](https://github.com/antares-sql/antares/issues/613) ([6e01f0f](https://github.com/antares-sql/antares/commit/6e01f0f2e7194284341f89a44839d16398358f9b))
|
||||
|
||||
### [0.7.12](https://github.com/antares-sql/antares/compare/v0.7.11...v0.7.12) (2023-07-03)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* add Dutch language support ([4ff1d10](https://github.com/antares-sql/antares/commit/4ff1d107b8837887ceb3ffecaed46b9bdb908127))
|
||||
* format options of csv export, closes [#196](https://github.com/antares-sql/antares/issues/196) ([3ad1e51](https://github.com/antares-sql/antares/commit/3ad1e51f42f3cc37ad66bdab64e9a8a0eadea74b))
|
||||
* more translations ([575c8ea](https://github.com/antares-sql/antares/commit/575c8ea8cabc1fb315bad1693df6cd4ccd869838))
|
||||
* **PostgreSQL:** ability to switch the database, closes [#432](https://github.com/antares-sql/antares/issues/432) ([89815bf](https://github.com/antares-sql/antares/commit/89815bf5e7c4062950b7418b31b45552ae0e1276))
|
||||
* Sort available languages alphabetically ([3ff8d25](https://github.com/antares-sql/antares/commit/3ff8d2571be306a8a72e5ad2b9f963b285e8db26))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **PostgreSQL:** unable to export as sql inserts ([e07e7b7](https://github.com/antares-sql/antares/commit/e07e7b736ef29368262ec4b17d9e1f54ef3ec390))
|
||||
* rename components and variables in SettingBarContext ([8a4a099](https://github.com/antares-sql/antares/commit/8a4a099e37c9bbc1365f322f6276f32153e24379))
|
||||
* spelling corrections ([93e16fd](https://github.com/antares-sql/antares/commit/93e16fdda29601f3e898b1a9470bd8546ea95df6))
|
||||
* update source string to fix spelling ([001983c](https://github.com/antares-sql/antares/commit/001983c5a2ebe17c943a9be3a58cc587f5cd09e3))
|
||||
|
||||
### [0.7.11](https://github.com/antares-sql/antares/compare/v0.7.10...v0.7.11) (2023-06-04)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* context menu to close tabs, closes [#392](https://github.com/antares-sql/antares/issues/392) ([787014c](https://github.com/antares-sql/antares/commit/787014c38df743315c04962871a3801805a93c55))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* disable filter during table content loading, fixes [#588](https://github.com/antares-sql/antares/issues/588) ([e60726c](https://github.com/antares-sql/antares/commit/e60726c741276b7da0d54c0986d2a45ed9979bc9))
|
||||
* **MySQL:** unable to get users list with some db settings ([9046707](https://github.com/antares-sql/antares/commit/904670781d47b1ac0dcfd982215ba1786f8c8145))
|
||||
* unique keys not recognized in table settings on some MariaDB versions ([4461998](https://github.com/antares-sql/antares/commit/446199827be4b07382453739f42d46fa0201d04c))
|
||||
* weird behavior in some text editors ([22bdaac](https://github.com/antares-sql/antares/commit/22bdaac18b1c46a57802cbbd3ad339ee075ec70b))
|
||||
|
||||
### [0.7.10](https://github.com/antares-sql/antares/compare/v0.7.9...v0.7.10) (2023-05-28)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* copy rows as PHP array ([03638c0](https://github.com/antares-sql/antares/commit/03638c05534e9ce2e594ce5945485587ed99e609))
|
||||
* DDL query in table settings for MySQL and PostgreSQL, closes [#581](https://github.com/antares-sql/antares/issues/581) ([f454b4b](https://github.com/antares-sql/antares/commit/f454b4bb1ca79eec285b3b4039a2ef66802ff82a))
|
||||
* export table content or query results as PHP array, closes [#575](https://github.com/antares-sql/antares/issues/575) ([8968179](https://github.com/antares-sql/antares/commit/8968179c11f4fe3e624873aac4685a5a33521024))
|
||||
* keepalive on mysql/postgre connections, should fix [#577](https://github.com/antares-sql/antares/issues/577) ([17eeb6d](https://github.com/antares-sql/antares/commit/17eeb6d38e45b553e35e004b748569971743ca18))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* disable shorctut to show Ace editor settings, fixes [#585](https://github.com/antares-sql/antares/issues/585) ([2c0b4ff](https://github.com/antares-sql/antares/commit/2c0b4ffe1f2e418f5e9120a40787788d8e7fd27e))
|
||||
|
||||
### [0.7.9](https://github.com/antares-sql/antares/compare/v0.7.8...v0.7.9) (2023-05-01)
|
||||
|
||||
|
||||
|
@@ -19,7 +19,10 @@ We are actively working on it, hoping to provide new cool features, improvements
|
||||
🔗 If you are curious to try Antares you can download and install the [latest release](https://github.com/Fabio286/antares/releases/latest).
|
||||
👁 To stay tuned for new releases [follow Antares SQL](https://twitter.com/AntaresSQL) on Twitter.
|
||||
🌟 Don't forget to **leave a star** if you appreciate this project.
|
||||
🗳️ Poll: **[Which is the main OS you use Antares on?](https://github.com/antares-sql/antares/discussions/379)**
|
||||
|
||||
🗳️ Polls:
|
||||
- **[Which is the main OS you use Antares on?](https://github.com/antares-sql/antares/discussions/379)**
|
||||
- **[Which database do you use the most?](https://github.com/antares-sql/antares/discussions/594)**
|
||||
|
||||
## Current key features
|
||||
|
||||
@@ -146,6 +149,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/555cider"><img src="https://avatars.githubusercontent.com/u/73565447?v=4?s=100" width="100px;" alt="555cider"/><br /><sub><b>555cider</b></sub></a><br /><a href="#translation-555cider" title="Translation">🌍</a></td>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://github.com/m1khal3v"><img src="https://avatars.githubusercontent.com/u/41085561?v=4?s=100" width="100px;" alt="Anton Mikhalev"/><br /><sub><b>Anton Mikhalev</b></sub></a><br /><a href="#translation-m1khal3v" title="Translation">🌍</a></td>
|
||||
<td align="center" valign="top" width="14.28%"><a href="https://64k.nl/"><img src="https://avatars.githubusercontent.com/u/3864423?v=4?s=100" width="100px;" alt="René"/><br /><sub><b>René</b></sub></a><br /><a href="https://github.com/antares-sql/antares/commits?author=64knl" title="Code">💻</a> <a href="#translation-64knl" title="Translation">🌍</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
12101
package-lock.json
generated
12101
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
11
package.json
11
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "antares",
|
||||
"productName": "Antares",
|
||||
"version": "0.7.9",
|
||||
"version": "0.7.13",
|
||||
"description": "A modern, fast and productivity driven SQL client with a focus in UX.",
|
||||
"license": "MIT",
|
||||
"repository": "https://github.com/antares-sql/antares.git",
|
||||
@@ -66,16 +66,14 @@
|
||||
"target": "deb",
|
||||
"arch": [
|
||||
"x64",
|
||||
"armv7l",
|
||||
"arm64"
|
||||
"armv7l"
|
||||
]
|
||||
},
|
||||
{
|
||||
"target": "AppImage",
|
||||
"arch": [
|
||||
"x64",
|
||||
"armv7l",
|
||||
"arm64"
|
||||
"armv7l"
|
||||
]
|
||||
}
|
||||
],
|
||||
@@ -132,6 +130,7 @@
|
||||
"electron-window-state": "~5.0.3",
|
||||
"encoding": "~0.1.13",
|
||||
"floating-vue": "~2.0.0-beta.20",
|
||||
"json2php": "~0.0.7",
|
||||
"leaflet": "~1.7.1",
|
||||
"marked": "~4.0.19",
|
||||
"moment": "~2.29.4",
|
||||
@@ -144,7 +143,7 @@
|
||||
"pinia": "~2.0.28",
|
||||
"source-map-support": "~0.5.20",
|
||||
"spectre.css": "~0.5.9",
|
||||
"sql-formatter": "~12.0.3",
|
||||
"sql-formatter": "~12.2.0",
|
||||
"ssh2-promise": "~1.0.2",
|
||||
"v-mask": "~2.3.0",
|
||||
"vue": "~3.2.45",
|
||||
|
@@ -31,11 +31,12 @@ export const defaults: Customizations = {
|
||||
routines: false,
|
||||
functions: false,
|
||||
schedulers: false,
|
||||
// Settings
|
||||
// Misc
|
||||
elementsWrapper: '',
|
||||
stringsWrapper: '"',
|
||||
tableAdd: false,
|
||||
tableTruncateDisableFKCheck: false,
|
||||
tableDdl: false,
|
||||
viewAdd: false,
|
||||
triggerAdd: false,
|
||||
triggerFunctionAdd: false,
|
||||
|
@@ -44,6 +44,7 @@ export const customizations: Customizations = {
|
||||
tableAdd: true,
|
||||
tableTruncateDisableFKCheck: true,
|
||||
tableDuplicate: true,
|
||||
tableDdl: true,
|
||||
viewAdd: true,
|
||||
triggerAdd: true,
|
||||
routineAdd: true,
|
||||
|
@@ -35,11 +35,12 @@ export const customizations: Customizations = {
|
||||
triggerFunctions: true,
|
||||
routines: true,
|
||||
functions: true,
|
||||
// Settings
|
||||
// Misc
|
||||
elementsWrapper: '"',
|
||||
stringsWrapper: '\'',
|
||||
tableAdd: true,
|
||||
tableDuplicate: true,
|
||||
tableDdl: true,
|
||||
viewAdd: true,
|
||||
triggerAdd: true,
|
||||
triggerFunctionAdd: true,
|
||||
|
@@ -30,7 +30,7 @@ export interface Customizations {
|
||||
routines?: boolean;
|
||||
functions?: boolean;
|
||||
schedulers?: boolean;
|
||||
// Settings
|
||||
// Misc
|
||||
elementsWrapper: string;
|
||||
stringsWrapper: string;
|
||||
tableAdd?: boolean;
|
||||
@@ -39,6 +39,7 @@ export interface Customizations {
|
||||
tableArray?: boolean;
|
||||
tableRealCount?: boolean;
|
||||
tableTruncateDisableFKCheck?: boolean;
|
||||
tableDdl?: boolean;
|
||||
viewAdd?: boolean;
|
||||
viewSettings?: boolean;
|
||||
triggerAdd?: boolean;
|
||||
|
@@ -72,7 +72,7 @@ export const escapeAndQuote = (val: string, client: ClientCode) => {
|
||||
export const valueToSqlString = (args: {
|
||||
val: any;
|
||||
client: ClientCode;
|
||||
field: {type: string; datePrecision: number; isArray?: boolean};
|
||||
field: {type: string; datePrecision?: number; precision?: number | false; isArray?: boolean};
|
||||
}): string => {
|
||||
let parsedValue;
|
||||
const { val, client, field } = args;
|
||||
@@ -105,7 +105,7 @@ export const valueToSqlString = (args: {
|
||||
else if (TEXT_SEARCH.includes(field.type))
|
||||
parsedValue = `'${val.replaceAll('\'', '\'\'')}'`;
|
||||
else if (BIT.includes(field.type))
|
||||
parsedValue = `b'${hexToBinary(Buffer.from(val).toString('hex') as undefined as HexChar[])}'`;
|
||||
parsedValue = `b'${hexToBinary(Buffer.from(new Uint8Array(Object.values(val))).toString('hex') as undefined as HexChar[])}'`;
|
||||
else if (BLOB.includes(field.type)) {
|
||||
let buffer: Buffer;
|
||||
if (val instanceof Uint8Array)
|
||||
|
14
src/main/ipc-handlers/database.ts
Normal file
14
src/main/ipc-handlers/database.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import * as antares from 'common/interfaces/antares';
|
||||
import { ipcMain } from 'electron';
|
||||
|
||||
export default (connections: {[key: string]: antares.Client}) => {
|
||||
ipcMain.handle('get-databases', async (event, uid) => {
|
||||
try {
|
||||
const result = await connections[uid].getDatabases();
|
||||
return { status: 'success', response: result };
|
||||
}
|
||||
catch (err) {
|
||||
return { status: 'error', response: err.toString() };
|
||||
}
|
||||
});
|
||||
};
|
@@ -9,6 +9,7 @@ import functions from './functions';
|
||||
import schedulers from './schedulers';
|
||||
import updates from './updates';
|
||||
import application from './application';
|
||||
import database from './database';
|
||||
import schema from './schema';
|
||||
import users from './users';
|
||||
|
||||
@@ -22,6 +23,7 @@ export default () => {
|
||||
routines(connections);
|
||||
functions(connections);
|
||||
schedulers(connections);
|
||||
database(connections);
|
||||
schema(connections);
|
||||
users(connections);
|
||||
updates();
|
||||
|
@@ -75,6 +75,17 @@ export default (connections: {[key: string]: antares.Client}) => {
|
||||
}
|
||||
});
|
||||
|
||||
ipcMain.handle('get-table-ddl', async (event, params) => {
|
||||
try {
|
||||
const result = await connections[params.uid].getTableDll(params);
|
||||
|
||||
return { status: 'success', response: result };
|
||||
}
|
||||
catch (err) {
|
||||
return { status: 'error', response: err.toString() };
|
||||
}
|
||||
});
|
||||
|
||||
ipcMain.handle('get-key-usage', async (event, params) => {
|
||||
try {
|
||||
const result = await connections[params.uid].getKeyUsage(params);
|
||||
|
@@ -162,6 +162,10 @@ export abstract class AntaresCore {
|
||||
throw new Error('Method "getDbConfig" not implemented');
|
||||
}
|
||||
|
||||
getDatabases () {
|
||||
throw new Error('Method "getDatabases" not implemented');
|
||||
}
|
||||
|
||||
createSchema (...args: any) {
|
||||
throw new Error('Method "createSchema" not implemented');
|
||||
}
|
||||
@@ -174,6 +178,10 @@ export abstract class AntaresCore {
|
||||
throw new Error('Method "dropSchema" not implemented');
|
||||
}
|
||||
|
||||
getTableDll (...args: any) {
|
||||
throw new Error('Method "getTableDll" not implemented');
|
||||
}
|
||||
|
||||
getDatabaseCollation (...args: any) {
|
||||
throw new Error('Method "getDatabaseCollation" not implemented');
|
||||
}
|
||||
|
@@ -9,6 +9,8 @@ export class MySQLClient extends AntaresCore {
|
||||
private _schema?: string;
|
||||
private _runningConnections: Map<string, number>;
|
||||
private _connectionsToCommit: Map<string, mysql.Connection | mysql.PoolConnection>;
|
||||
private _keepaliveTimer: NodeJS.Timer;
|
||||
private _keepaliveMs: number;
|
||||
_connection?: mysql.Connection | mysql.Pool;
|
||||
_params: mysql.ConnectionOptions & {schema: string; ssl?: mysql.SslOptions; ssh?: SSHConfig; readonly: boolean};
|
||||
|
||||
@@ -52,6 +54,7 @@ export class MySQLClient extends AntaresCore {
|
||||
this._schema = null;
|
||||
this._runningConnections = new Map();
|
||||
this._connectionsToCommit = new Map();
|
||||
this._keepaliveMs = 10*60*1000;
|
||||
}
|
||||
|
||||
private _getType (field: mysql.FieldPacket & { columnType?: number; columnLength?: number }) {
|
||||
@@ -182,6 +185,8 @@ export class MySQLClient extends AntaresCore {
|
||||
|
||||
destroy () {
|
||||
this._connection.end();
|
||||
clearInterval(this._keepaliveTimer);
|
||||
this._keepaliveTimer = undefined;
|
||||
if (this._ssh) this._ssh.close();
|
||||
}
|
||||
|
||||
@@ -243,9 +248,19 @@ export class MySQLClient extends AntaresCore {
|
||||
conn.query(`SET SESSION sql_mode = '${sqlMode.filter((m: string) => !['ANSI', 'ANSI_QUOTES'].includes(m)).join(',')}'`);
|
||||
});
|
||||
|
||||
this._keepaliveTimer = setInterval(async () => {
|
||||
await this.keepAlive();
|
||||
}, this._keepaliveMs);
|
||||
|
||||
return connection;
|
||||
}
|
||||
|
||||
private async keepAlive () {
|
||||
const connection = await (this._connection as mysql.Pool).getConnection();
|
||||
await connection.ping();
|
||||
connection.release();
|
||||
}
|
||||
|
||||
use (schema: string) {
|
||||
this._schema = schema;
|
||||
return this.raw(`USE \`${schema}\``);
|
||||
@@ -674,11 +689,11 @@ export class MySQLClient extends AntaresCore {
|
||||
|
||||
return rows.map(row => {
|
||||
return {
|
||||
unique: !row.Non_unique,
|
||||
unique: !Number(row.Non_unique),
|
||||
name: row.Key_name,
|
||||
column: row.Column_name,
|
||||
indexType: row.Index_type,
|
||||
type: row.Key_name === 'PRIMARY' ? 'PRIMARY' : !row.Non_unique ? 'UNIQUE' : row.Index_type === 'FULLTEXT' ? 'FULLTEXT' : 'INDEX',
|
||||
type: row.Key_name === 'PRIMARY' ? 'PRIMARY' : !Number(row.Non_unique) ? 'UNIQUE' : row.Index_type === 'FULLTEXT' ? 'FULLTEXT' : 'INDEX',
|
||||
cardinality: row.Cardinality,
|
||||
comment: row.Comment,
|
||||
indexComment: row.Index_comment
|
||||
@@ -686,6 +701,17 @@ export class MySQLClient extends AntaresCore {
|
||||
});
|
||||
}
|
||||
|
||||
async getTableDll ({ schema, table }: { schema: string; table: string }) {
|
||||
const { rows } = await this.raw<antares.QueryResult<{
|
||||
'Create Table'?: string;
|
||||
Table: string;
|
||||
}>>(`SHOW CREATE TABLE \`${schema}\`.\`${table}\``);
|
||||
|
||||
if (rows.length)
|
||||
return rows[0]['Create Table'];
|
||||
else return '';
|
||||
}
|
||||
|
||||
async getKeyUsage ({ schema, table }: { schema: string; table: string }) {
|
||||
interface KeyResult {
|
||||
TABLE_SCHEMA: string;
|
||||
@@ -738,7 +764,7 @@ export class MySQLClient extends AntaresCore {
|
||||
}
|
||||
|
||||
async getUsers () {
|
||||
const { rows } = await this.raw('SELECT `user`, `host`, authentication_string AS `password` FROM `mysql`.`user`');
|
||||
const { rows } = await this.raw('SELECT `user` as \'user\', `host` as \'host\', authentication_string AS `password` FROM `mysql`.`user`');
|
||||
|
||||
return rows.map(row => {
|
||||
return {
|
||||
|
@@ -84,6 +84,8 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
private _schema?: string;
|
||||
private _runningConnections: Map<string, number>;
|
||||
private _connectionsToCommit: Map<string, pg.Client | pg.PoolClient>;
|
||||
private _keepaliveTimer: NodeJS.Timer;
|
||||
private _keepaliveMs: number;
|
||||
protected _connection?: pg.Client | pg.Pool;
|
||||
private types: {[key: string]: string} = {};
|
||||
private _arrayTypes: {[key: string]: string} = {
|
||||
@@ -104,6 +106,7 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
this._schema = null;
|
||||
this._runningConnections = new Map();
|
||||
this._connectionsToCommit = new Map();
|
||||
this._keepaliveMs = 10*60*1000;
|
||||
|
||||
for (const key in pg.types.builtins) {
|
||||
const builtinKey = key as builtinsTypes;
|
||||
@@ -151,7 +154,7 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
host: this._params.host,
|
||||
port: this._params.port,
|
||||
user: this._params.user,
|
||||
database: undefined as string | undefined,
|
||||
database: 'postgres' as string,
|
||||
password: this._params.password,
|
||||
ssl: null as mysql.SslOptions
|
||||
};
|
||||
@@ -222,14 +225,26 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
});
|
||||
}
|
||||
|
||||
this._keepaliveTimer = setInterval(async () => {
|
||||
await this.keepAlive();
|
||||
}, this._keepaliveMs);
|
||||
|
||||
return connection;
|
||||
}
|
||||
|
||||
destroy () {
|
||||
this._connection.end();
|
||||
clearInterval(this._keepaliveTimer);
|
||||
this._keepaliveTimer = undefined;
|
||||
if (this._ssh) this._ssh.close();
|
||||
}
|
||||
|
||||
private async keepAlive () {
|
||||
const connection = await this._connection.connect() as pg.PoolClient;
|
||||
await connection.query('SELECT 1+1');
|
||||
connection.release();
|
||||
}
|
||||
|
||||
use (schema: string, connection?: pg.Client | pg.PoolClient) {
|
||||
this._schema = schema;
|
||||
|
||||
@@ -247,6 +262,18 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
return [];
|
||||
}
|
||||
|
||||
async getDatabases () {
|
||||
const { rows } = await this.raw('SELECT datname FROM pg_database WHERE datistemplate = false');
|
||||
if (rows) {
|
||||
return rows.reduce((acc, cur) => {
|
||||
acc.push(cur.datname);
|
||||
return acc;
|
||||
}, [] as string[]);
|
||||
}
|
||||
else
|
||||
return [];
|
||||
}
|
||||
|
||||
async getStructure (schemas: Set<string>) {
|
||||
/* eslint-disable camelcase */
|
||||
interface ShowTableResult {
|
||||
@@ -567,6 +594,142 @@ export class PostgreSQLClient extends AntaresCore {
|
||||
}, {} as {table: string; schema: string}[]);
|
||||
}
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||
async getTableDll ({ schema, table }: { schema: string; table: string }) {
|
||||
// const { rows } = await this.raw<antares.QueryResult<{'ddl'?: string}>>(`
|
||||
// SELECT
|
||||
// 'CREATE TABLE ' || relname || E'\n(\n' ||
|
||||
// array_to_string(
|
||||
// array_agg(' ' || column_name || ' ' || type || ' '|| not_null)
|
||||
// , E',\n'
|
||||
// ) || E'\n);\n' AS ddl
|
||||
// FROM (
|
||||
// SELECT
|
||||
// a.attname AS column_name
|
||||
// , pg_catalog.format_type(a.atttypid, a.atttypmod) AS type
|
||||
// , CASE WHEN a.attnotnull THEN 'NOT NULL' ELSE 'NULL' END AS not_null
|
||||
// , c.relname
|
||||
// FROM pg_attribute a, pg_class c, pg_type t
|
||||
// WHERE a.attnum > 0
|
||||
// AND a.attrelid = c.oid
|
||||
// AND a.atttypid = t.oid
|
||||
// AND c.relname = '${table}'
|
||||
// ORDER BY a.attnum
|
||||
// ) AS tabledefinition
|
||||
// GROUP BY relname
|
||||
// `);
|
||||
|
||||
// if (rows.length)
|
||||
// return rows[0].ddl;
|
||||
// else return '';
|
||||
|
||||
/* eslint-disable camelcase */
|
||||
interface SequenceRecord {
|
||||
sequence_catalog: string;
|
||||
sequence_schema: string;
|
||||
sequence_name: string;
|
||||
data_type: string;
|
||||
numeric_precision: number;
|
||||
numeric_precision_radix: number;
|
||||
numeric_scale: number;
|
||||
start_value: string;
|
||||
minimum_value: string;
|
||||
maximum_value: string;
|
||||
increment: string;
|
||||
cycle_option: string;
|
||||
}
|
||||
/* eslint-enable camelcase */
|
||||
|
||||
let createSql = '';
|
||||
const sequences = [];
|
||||
const columnsSql = [];
|
||||
const arrayTypes: {[key: string]: string} = {
|
||||
_int2: 'smallint',
|
||||
_int4: 'integer',
|
||||
_int8: 'bigint',
|
||||
_float4: 'real',
|
||||
_float8: 'double precision',
|
||||
_char: '"char"',
|
||||
_varchar: 'character varying'
|
||||
};
|
||||
|
||||
// Table columns
|
||||
const { rows } = await this.raw(`
|
||||
SELECT *
|
||||
FROM "information_schema"."columns"
|
||||
WHERE "table_schema" = '${schema}'
|
||||
AND "table_name" = '${table}'
|
||||
ORDER BY "ordinal_position" ASC
|
||||
`, { schema: 'information_schema' });
|
||||
|
||||
if (!rows.length) return '';
|
||||
|
||||
for (const column of rows) {
|
||||
let fieldType = column.data_type;
|
||||
if (fieldType === 'USER-DEFINED') fieldType = `"${schema}".${column.udt_name}`;
|
||||
else if (fieldType === 'ARRAY') {
|
||||
if (Object.keys(arrayTypes).includes(fieldType))
|
||||
fieldType = arrayTypes[column.udt_name] + '[]';
|
||||
else
|
||||
fieldType = column.udt_name.replaceAll('_', '') + '[]';
|
||||
}
|
||||
|
||||
const columnArr = [
|
||||
`"${column.column_name}"`,
|
||||
`${fieldType}${column.character_maximum_length ? `(${column.character_maximum_length})` : ''}`
|
||||
];
|
||||
|
||||
if (column.column_default) {
|
||||
columnArr.push(`DEFAULT ${column.column_default}`);
|
||||
if (column.column_default.includes('nextval')) {
|
||||
const sequenceName = column.column_default.split('\'')[1];
|
||||
sequences.push(sequenceName);
|
||||
}
|
||||
}
|
||||
if (column.is_nullable === 'NO') columnArr.push('NOT NULL');
|
||||
|
||||
columnsSql.push(columnArr.join(' '));
|
||||
}
|
||||
|
||||
// Table sequences
|
||||
for (let sequence of sequences) {
|
||||
if (sequence.includes('.')) sequence = sequence.split('.')[1];
|
||||
|
||||
const { rows } = await this.select('*')
|
||||
.schema('information_schema')
|
||||
.from('sequences')
|
||||
.where({ sequence_schema: `= '${schema}'`, sequence_name: `= '${sequence}'` })
|
||||
.run<SequenceRecord>();
|
||||
|
||||
if (rows.length) {
|
||||
createSql += `CREATE SEQUENCE "${schema}"."${sequence}"
|
||||
START WITH ${rows[0].start_value}
|
||||
INCREMENT BY ${rows[0].increment}
|
||||
MINVALUE ${rows[0].minimum_value}
|
||||
MAXVALUE ${rows[0].maximum_value}
|
||||
CACHE 1;\n`;
|
||||
}
|
||||
}
|
||||
|
||||
// Table create
|
||||
createSql += `\nCREATE TABLE "${schema}"."${table}"(
|
||||
${columnsSql.join(',\n ')}
|
||||
);\n`;
|
||||
|
||||
// Table indexes
|
||||
createSql += '\n';
|
||||
const { rows: indexes } = await this.select('*')
|
||||
.schema('pg_catalog')
|
||||
.from('pg_indexes')
|
||||
.where({ schemaname: `= '${schema}'`, tablename: `= '${table}'` })
|
||||
.run<{indexdef: string}>();
|
||||
|
||||
for (const index of indexes)
|
||||
createSql += `${index.indexdef};\n`;
|
||||
|
||||
return createSql;
|
||||
}
|
||||
|
||||
async getKeyUsage ({ schema, table }: { schema: string; table: string }) {
|
||||
/* eslint-disable camelcase */
|
||||
interface KeyResult {
|
||||
|
@@ -7,7 +7,7 @@ import MysqlExporter from '../libs/exporters/sql/MysqlExporter';
|
||||
import PostgreSQLExporter from '../libs/exporters/sql/PostgreSQLExporter';
|
||||
let exporter: antares.Exporter;
|
||||
|
||||
process.on('message', async ({ type, client, tables, options }) => {
|
||||
process.on('message', async ({ type, client, tables, options }: any) => {
|
||||
if (type === 'init') {
|
||||
const connection = await ClientsFactory.getClient({
|
||||
client: client.name,
|
||||
|
@@ -44,6 +44,11 @@ watch(() => props.mode, () => {
|
||||
editor.session.setMode(`ace/mode/${props.mode}`);
|
||||
});
|
||||
|
||||
watch(() => props.modelValue, () => {
|
||||
if (editor && props.readOnly)
|
||||
editor.session.setValue(props.modelValue);
|
||||
});
|
||||
|
||||
watch(editorTheme, () => {
|
||||
if (editor)
|
||||
editor.setTheme(`ace/theme/${editorTheme.value}`);
|
||||
@@ -113,6 +118,8 @@ onMounted(() => {
|
||||
}, 20);
|
||||
}
|
||||
|
||||
editor.commands.removeCommand('showSettingsMenu');
|
||||
|
||||
setTimeout(() => {
|
||||
editor.resize();
|
||||
}, 20);
|
||||
|
@@ -135,7 +135,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} <b>{{ selectedConnectionName }}</b>?
|
||||
{{ t('message.deleteConfirm') }} <b>{{ selectedConnectionName }}</b>?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
@@ -7,7 +7,7 @@
|
||||
<div class="modal-title h6">
|
||||
<div class="d-flex">
|
||||
<i class="mdi mdi-24px mdi-brush-variant mr-1" />
|
||||
<span class="cut-text">{{ t('message.editConnectionAppearence') }}</span>
|
||||
<span class="cut-text">{{ t('message.editConnectionAppearance') }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<a class="btn btn-clear c-hand" @click.stop="closeModal" />
|
||||
@@ -48,7 +48,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearence">
|
||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearance">
|
||||
{{ t('word.update') }}
|
||||
</button>
|
||||
<button class="btn btn-link" @click.stop="closeModal">
|
||||
@@ -136,7 +136,7 @@ const { trapRef } = useFocusTrap();
|
||||
const firstInput: Ref<HTMLInputElement> = ref(null);
|
||||
const localConnection: Ref<SidebarElement> = ref(unproxify(props.connection));
|
||||
|
||||
const editFolderAppearence = () => {
|
||||
const editFolderAppearance = () => {
|
||||
updateConnectionOrder(localConnection.value);
|
||||
closeModal();
|
||||
};
|
@@ -195,7 +195,7 @@
|
||||
</label>
|
||||
<div v-if="clientCustoms.exportByChunks">
|
||||
<div class="h6 mt-4 mb-2">
|
||||
{{ t('message.newInserStmtEvery') }}:
|
||||
{{ t('message.newInsertStmtEvery') }}:
|
||||
</div>
|
||||
<div class="columns">
|
||||
<div class="column col-6">
|
||||
@@ -216,7 +216,7 @@
|
||||
</div>
|
||||
|
||||
<div class="h6 mb-2 mt-4">
|
||||
{{ t('message.ourputFormat') }}:
|
||||
{{ t('message.outputFormat') }}:
|
||||
</div>
|
||||
<div class="columns">
|
||||
<div class="column h5 mb-4">
|
||||
@@ -382,7 +382,7 @@ const updateProgress = (event: Event, state: ExportState) => {
|
||||
progressStatus.value = t('message.processingTableExport', { table: state.currentItem });
|
||||
break;
|
||||
case 'FETCH':
|
||||
progressStatus.value = t('message.fechingTableExport', { table: state.currentItem });
|
||||
progressStatus.value = t('message.fetchingTableExport', { table: state.currentItem });
|
||||
break;
|
||||
case 'WRITE':
|
||||
progressStatus.value = t('message.writingTableExport', { table: state.currentItem });
|
||||
|
@@ -51,7 +51,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearence">
|
||||
<button class="btn btn-primary mr-2" @click.stop="editFolderAppearance">
|
||||
{{ t('word.update') }}
|
||||
</button>
|
||||
<button class="btn btn-link" @click.stop="closeModal">
|
||||
@@ -110,7 +110,7 @@ const { trapRef } = useFocusTrap();
|
||||
const firstInput: Ref<HTMLInputElement> = ref(null);
|
||||
const localFolder: Ref<SidebarElement> = ref(unproxify(props.folder));
|
||||
|
||||
const editFolderAppearence = () => {
|
||||
const editFolderAppearance = () => {
|
||||
updateConnectionOrder(localFolder.value);
|
||||
closeModal();
|
||||
};
|
@@ -110,7 +110,7 @@
|
||||
<div class="form-group column col-12 mb-0">
|
||||
<div class="col-5 col-sm-12">
|
||||
<label class="form-label">
|
||||
{{ t('message.restorePreviourSession') }}
|
||||
{{ t('message.restorePreviousSession') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="col-3 col-sm-12">
|
||||
@@ -553,7 +553,7 @@ const locales = computed(() => {
|
||||
for (const locale of Object.keys(localesNames))
|
||||
locales.push({ code: locale, name: localesNames[locale] });
|
||||
|
||||
return locales;
|
||||
return locales.sort((a, b) => (a.name.localeCompare(b.name)));
|
||||
});
|
||||
|
||||
const copyTypes = computed(() => [
|
||||
|
@@ -137,7 +137,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} <b>{{ t(shortcutEvents[shortcutToDelete.event].l18n, {param: shortcutEvents[shortcutToDelete.event].l18nParam}) }} (<span v-html="parseKeys(shortcutToDelete.keys)" />)</b>?
|
||||
{{ t('message.deleteConfirm') }} <b>{{ t(shortcutEvents[shortcutToDelete.event].l18n, {param: shortcutEvents[shortcutToDelete.event].l18nParam}) }} (<span v-html="parseKeys(shortcutToDelete.keys)" />)</b>?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
@@ -373,6 +373,8 @@ onMounted(() => {
|
||||
e.stop();
|
||||
});
|
||||
|
||||
editor.value.commands.removeCommand('showSettingsMenu');
|
||||
|
||||
if (props.autoFocus) {
|
||||
setTimeout(() => {
|
||||
editor.value.focus();
|
||||
|
@@ -380,7 +380,7 @@ emit('folder-sort');// To apply changes on component key change
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1;
|
||||
line-height: 1.02;
|
||||
transition: bottom .2s;
|
||||
}
|
||||
}
|
||||
@@ -444,7 +444,7 @@ emit('folder-sort');// To apply changes on component key change
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
line-height: 1;
|
||||
line-height: 1.02;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -17,8 +17,8 @@
|
||||
>
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-content-duplicate text-light pr-1" /> {{ t('word.duplicate') }}</span>
|
||||
</div>
|
||||
<div class="context-element" @click.stop="showAppearenceModal">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-brush-variant text-light pr-1" /> {{ t('word.appearence') }}</span>
|
||||
<div class="context-element" @click.stop="showAppearanceModal">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-brush-variant text-light pr-1" /> {{ t('word.appearance') }}</span>
|
||||
</div>
|
||||
<div class="context-element" @click="showConfirmModal">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-delete text-light pr-1" /> {{ t('word.delete') }}</span>
|
||||
@@ -36,19 +36,19 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} <b>{{ connectionName }}</b>?
|
||||
{{ t('message.deleteConfirm') }} <b>{{ connectionName }}</b>?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
<ModalFolderAppearence
|
||||
<ModalFolderAppearance
|
||||
v-if="isFolderEdit"
|
||||
:folder="contextConnection"
|
||||
@close="hideAppearenceModal"
|
||||
@close="hideAppearanceModal"
|
||||
/>
|
||||
<ModalConnectionAppearence
|
||||
<ModalConnectionAppearance
|
||||
v-if="isConnectionEdit"
|
||||
:connection="contextConnection"
|
||||
@close="hideAppearenceModal"
|
||||
@close="hideAppearanceModal"
|
||||
/>
|
||||
</BaseContextMenu>
|
||||
</template>
|
||||
@@ -62,8 +62,8 @@ import { SidebarElement, useConnectionsStore } from '@/stores/connections';
|
||||
import { useWorkspacesStore } from '@/stores/workspaces';
|
||||
import BaseContextMenu from '@/components/BaseContextMenu.vue';
|
||||
import ConfirmModal from '@/components/BaseConfirmModal.vue';
|
||||
import ModalFolderAppearence from '@/components/ModalFolderAppearence.vue';
|
||||
import ModalConnectionAppearence from '@/components/ModalConnectionAppearence.vue';
|
||||
import ModalFolderAppearance from '@/components/ModalFolderAppearance.vue';
|
||||
import ModalConnectionAppearance from '@/components/ModalConnectionAppearance.vue';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -118,14 +118,14 @@ const duplicateConnection = () => {
|
||||
closeContext();
|
||||
};
|
||||
|
||||
const showAppearenceModal = () => {
|
||||
const showAppearanceModal = () => {
|
||||
if (props.contextConnection.isFolder)
|
||||
isFolderEdit.value = true;
|
||||
else
|
||||
isConnectionEdit.value = true;
|
||||
};
|
||||
|
||||
const hideAppearenceModal = () => {
|
||||
const hideAppearanceModal = () => {
|
||||
isConnectionEdit.value = false;
|
||||
isFolderEdit.value = false;
|
||||
closeContext();
|
||||
|
@@ -1,5 +1,15 @@
|
||||
<template>
|
||||
<div v-show="isSelected" class="workspace column columns col-gapless">
|
||||
<WorkspaceTabsContext
|
||||
v-if="isTabContext"
|
||||
:context-event="contextEvent"
|
||||
:selected-tab="selectedContextTab"
|
||||
@close-all-tabs="closeAllTabs"
|
||||
@close-other-tabs="closeOtherTabs"
|
||||
@close-to-left="closeTabsToLeft"
|
||||
@close-to-right="closeTabsToRight"
|
||||
@close-context="closeContext"
|
||||
/>
|
||||
<WorkspaceExploreBar
|
||||
v-if="workspace?.connectionStatus === 'connected'"
|
||||
:connection="connection"
|
||||
@@ -23,6 +33,7 @@
|
||||
:class="{'active': selectedTab === element.uid}"
|
||||
@mousedown.left="selectTab({uid: workspace.uid, tab: element.uid})"
|
||||
@mouseup.middle="closeTab(element)"
|
||||
@contextmenu.prevent="contextMenu($event, element)"
|
||||
>
|
||||
<a
|
||||
v-if="element.type === 'query'"
|
||||
@@ -93,7 +104,7 @@
|
||||
class="tab-link"
|
||||
:class="{'badge': element.isChanged}"
|
||||
>
|
||||
<i class="mdi mdi-tune-vertical-variant mdi-18px mr-1" />
|
||||
<i class="mdi mdi-wrench-cog mdi-18px mr-1" />
|
||||
<span :title="`${t('word.settings').toUpperCase()}: ${t(`word.${element.elementType}`)}`">
|
||||
{{ cutText(element.elementName, 20, true) }}
|
||||
<span
|
||||
@@ -110,7 +121,7 @@
|
||||
class="tab-link"
|
||||
:class="{'badge': element.isChanged}"
|
||||
>
|
||||
<i class="mdi mdi-tune-vertical-variant mdi-18px mr-1" />
|
||||
<i class="mdi mdi-wrench-cog mdi-18px mr-1" />
|
||||
<span :title="`${t('word.settings').toUpperCase()}: ${t(`word.view`)}`">
|
||||
{{ cutText(element.elementName, 20, true) }}
|
||||
<span
|
||||
@@ -230,7 +241,7 @@
|
||||
:class="{'badge': element.isChanged}"
|
||||
@dblclick="openAsPermanentTab(element)"
|
||||
>
|
||||
<i class="mdi mdi-18px mdi-tune-vertical-variant mr-1" />
|
||||
<i class="mdi mdi-18px mdi-wrench-cog mr-1" />
|
||||
<span :title="`${t('word.settings').toUpperCase()}: ${t(`word.${element.elementType}`)}`">
|
||||
<span class=" text-italic">{{ cutText(element.elementName, 20, true) }}</span>
|
||||
<span
|
||||
@@ -247,7 +258,7 @@
|
||||
class="tab-link"
|
||||
:class="{'badge': element.isChanged}"
|
||||
>
|
||||
<i class="mdi mdi-18px mdi-tune-vertical-variant mr-1" />
|
||||
<i class="mdi mdi-18px mdi-wrench-cog mr-1" />
|
||||
<span :title="`${t('word.settings').toUpperCase()}: ${t(`word.${element.elementType}`)}`">
|
||||
{{ cutText(element.elementName, 20, true) }}
|
||||
<span
|
||||
@@ -320,8 +331,8 @@
|
||||
</li>
|
||||
</template>
|
||||
</Draggable>
|
||||
<WorkspaceEmptyState v-if="!workspace.tabs.length" @new-tab="addQueryTab" />
|
||||
<template v-for="tab of workspace.tabs" :key="tab.uid">
|
||||
<WorkspaceEmptyState v-if="!draggableTabs.length" @new-tab="addQueryTab" />
|
||||
<template v-for="tab of draggableTabs" :key="tab.uid">
|
||||
<WorkspaceTabQuery
|
||||
v-if="tab.type ==='query'"
|
||||
:tab-uid="tab.uid"
|
||||
@@ -501,6 +512,7 @@ import WorkspaceTabNewRoutine from '@/components/WorkspaceTabNewRoutine.vue';
|
||||
import WorkspaceTabNewFunction from '@/components/WorkspaceTabNewFunction.vue';
|
||||
import WorkspaceTabNewScheduler from '@/components/WorkspaceTabNewScheduler.vue';
|
||||
import WorkspaceTabNewTriggerFunction from '@/components/WorkspaceTabNewTriggerFunction.vue';
|
||||
import WorkspaceTabsContext from '@/components/WorkspaceTabsContext.vue';
|
||||
|
||||
import WorkspaceTabPropsTable from '@/components/WorkspaceTabPropsTable.vue';
|
||||
import WorkspaceTabPropsView from '@/components/WorkspaceTabPropsView.vue';
|
||||
@@ -545,12 +557,19 @@ const hasWheelEvent = ref(false);
|
||||
const isProcessesModal = ref(false);
|
||||
const unsavedTab = ref(null);
|
||||
const tabWrap = ref(null);
|
||||
const contextEvent = ref(null);
|
||||
const isTabContext = ref(false);
|
||||
const selectedContextTab = ref(null);
|
||||
|
||||
const workspace = computed(() => getWorkspace(props.connection.uid));
|
||||
|
||||
const draggableTabs = computed<WorkspaceTab[]>({
|
||||
get () {
|
||||
return workspace.value.tabs;
|
||||
if (workspace.value.customizations.database)
|
||||
return workspace.value.tabs.filter(tab => tab.type === 'query' || tab.database === workspace.value.database);
|
||||
|
||||
else
|
||||
return workspace.value.tabs;
|
||||
},
|
||||
set (val) {
|
||||
updateTabs({ uid: props.connection.uid, tabs: val });
|
||||
@@ -627,6 +646,34 @@ const closeTab = (tab: WorkspaceTab, force = false) => {
|
||||
removeTab({ uid: props.connection.uid, tab: tab.uid });
|
||||
};
|
||||
|
||||
const closeAllTabs = () => {
|
||||
for (const tab of draggableTabs.value)
|
||||
removeTab({ uid: props.connection.uid, tab: tab.uid });
|
||||
};
|
||||
|
||||
const closeOtherTabs = () => {
|
||||
const otherTabs = draggableTabs.value.filter(t => t.uid !== selectedContextTab.value.uid);
|
||||
|
||||
for (const tab of otherTabs)
|
||||
removeTab({ uid: props.connection.uid, tab: tab.uid });
|
||||
};
|
||||
|
||||
const closeTabsToLeft = () => {
|
||||
const tabIndex = draggableTabs.value.findIndex(t => t.uid === selectedContextTab.value.uid);
|
||||
const leftTabs = draggableTabs.value.filter((t, i) => i < tabIndex);
|
||||
|
||||
for (const tab of leftTabs)
|
||||
removeTab({ uid: props.connection.uid, tab: tab.uid });
|
||||
};
|
||||
|
||||
const closeTabsToRight = () => {
|
||||
const tabIndex = draggableTabs.value.findIndex(t => t.uid === selectedContextTab.value.uid);
|
||||
const leftTabs = draggableTabs.value.filter((t, i) => i > tabIndex);
|
||||
|
||||
for (const tab of leftTabs)
|
||||
removeTab({ uid: props.connection.uid, tab: tab.uid });
|
||||
};
|
||||
|
||||
const showProcessesModal = () => {
|
||||
isProcessesModal.value = true;
|
||||
};
|
||||
@@ -647,6 +694,16 @@ const addWheelEvent = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const contextMenu = (event: MouseEvent, tab: WorkspaceTab) => {
|
||||
selectedContextTab.value = tab;
|
||||
contextEvent.value = event;
|
||||
isTabContext.value = true;
|
||||
};
|
||||
|
||||
const closeContext = () => {
|
||||
isTabContext.value = false;
|
||||
};
|
||||
|
||||
(async () => {
|
||||
await addWorkspace(props.connection.uid);
|
||||
const isInitiated = await Connection.checkConnection(props.connection.uid);
|
||||
|
@@ -120,6 +120,7 @@
|
||||
v-model="connection.database"
|
||||
class="form-input"
|
||||
type="text"
|
||||
:placeholder="clientCustomizations.defaultDatabase"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
@@ -416,7 +417,7 @@ const clients = [
|
||||
{ name: 'MariaDB', slug: 'maria' },
|
||||
{ name: 'PostgreSQL', slug: 'pg' },
|
||||
{ name: 'SQLite', slug: 'sqlite' },
|
||||
{ name: 'Firebird SQL (experimental)', slug: 'firebird' }
|
||||
{ name: 'Firebird SQL', slug: 'firebird' }
|
||||
];
|
||||
|
||||
const connection = ref({
|
||||
|
@@ -122,6 +122,7 @@
|
||||
v-model="localConnection.database"
|
||||
class="form-input"
|
||||
type="text"
|
||||
:placeholder="clientCustomizations.defaultDatabase"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
@@ -429,7 +430,7 @@ const clients = [
|
||||
{ name: 'MariaDB', slug: 'maria' },
|
||||
{ name: 'PostgreSQL', slug: 'pg' },
|
||||
{ name: 'SQLite', slug: 'sqlite' },
|
||||
{ name: 'Firebird SQL (experimental)', slug: 'firebird' }
|
||||
{ name: 'Firebird SQL', slug: 'firebird' }
|
||||
];
|
||||
|
||||
const firstInput: Ref<HTMLInputElement> = ref(null);
|
||||
|
@@ -10,7 +10,18 @@
|
||||
@keydown="explorebarSearch"
|
||||
>
|
||||
<div class="workspace-explorebar-header">
|
||||
<span class="workspace-explorebar-title">{{ connectionName }}</span>
|
||||
<div
|
||||
v-if="customizations.database"
|
||||
class="workspace-explorebar-database-switch"
|
||||
:title="t('message.switchDatabase')"
|
||||
>
|
||||
<BaseSelect
|
||||
v-model="selectedDatabase"
|
||||
:options="databases"
|
||||
class="form-select select-sm text-bold my-0"
|
||||
/>
|
||||
</div>
|
||||
<span v-else class="workspace-explorebar-title">{{ connectionName }}</span>
|
||||
<span v-if="workspace.connectionStatus === 'connected'" class="workspace-explorebar-tools">
|
||||
<i
|
||||
v-if="customizations.schemas"
|
||||
@@ -124,10 +135,11 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { Component, computed, onMounted, Ref, ref, watch } from 'vue';
|
||||
import { Component, computed, onMounted, Prop, Ref, ref, watch } from 'vue';
|
||||
import { storeToRefs } from 'pinia';
|
||||
|
||||
import { useConnectionsStore } from '@/stores/connections';
|
||||
import { ConnectionParams } from 'common/interfaces/antares';
|
||||
import { useNotificationsStore } from '@/stores/notifications';
|
||||
import { useSettingsStore } from '@/stores/settings';
|
||||
import { useWorkspacesStore } from '@/stores/workspaces';
|
||||
@@ -141,12 +153,14 @@ import TableContext from '@/components/WorkspaceExploreBarTableContext.vue';
|
||||
import MiscContext from '@/components/WorkspaceExploreBarMiscContext.vue';
|
||||
import MiscFolderContext from '@/components/WorkspaceExploreBarMiscFolderContext.vue';
|
||||
import ModalNewSchema from '@/components/ModalNewSchema.vue';
|
||||
import BaseSelect from '@/components/BaseSelect.vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import Databases from '@/ipc-api/Databases';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const props = defineProps({
|
||||
connection: Object,
|
||||
connection: Object as Prop<ConnectionParams>,
|
||||
isSelected: Boolean
|
||||
});
|
||||
|
||||
@@ -160,11 +174,13 @@ const { explorebarSize } = storeToRefs(settingsStore);
|
||||
const { changeExplorebarSize } = settingsStore;
|
||||
const {
|
||||
getWorkspace,
|
||||
switchConnection,
|
||||
removeConnected: disconnectWorkspace,
|
||||
refreshStructure,
|
||||
newTab,
|
||||
removeTabs,
|
||||
setSearchTerm,
|
||||
setDatabase,
|
||||
addLoadingElement,
|
||||
removeLoadingElement
|
||||
} = workspacesStore;
|
||||
@@ -172,6 +188,7 @@ const {
|
||||
const searchInput: Ref<HTMLInputElement> = ref(null);
|
||||
const explorebar: Ref<HTMLInputElement> = ref(null);
|
||||
const resizer: Ref<HTMLInputElement> = ref(null);
|
||||
const databases: Ref<string[]> = ref([]);
|
||||
const schema: Ref<Component & { selectSchema: (name: string) => void; $refs: {schemaAccordion: HTMLDetailsElement} }[]> = ref(null);
|
||||
const isRefreshing = ref(false);
|
||||
const isNewDBModal = ref(false);
|
||||
@@ -185,6 +202,7 @@ const isMiscFolderContext = ref(false);
|
||||
const databaseContextEvent = ref(null);
|
||||
const tableContextEvent = ref(null);
|
||||
const miscContextEvent = ref(null);
|
||||
const selectedDatabase = ref(props.connection.database);
|
||||
const selectedSchema = ref('');
|
||||
const selectedTable = ref(null);
|
||||
const selectedMisc = ref(null);
|
||||
@@ -230,9 +248,14 @@ watch(searchTerm, () => {
|
||||
}, 200);
|
||||
});
|
||||
|
||||
watch(selectedDatabase, (val, oldVal) => {
|
||||
if (oldVal)
|
||||
switchConnection({ ...props.connection, database: selectedDatabase.value });
|
||||
});
|
||||
|
||||
localWidth.value = explorebarSize.value;
|
||||
|
||||
onMounted(() => {
|
||||
onMounted(async () => {
|
||||
resizer.value.addEventListener('mousedown', (e: MouseEvent) => {
|
||||
e.preventDefault();
|
||||
|
||||
@@ -240,10 +263,28 @@ onMounted(() => {
|
||||
window.addEventListener('mouseup', stopResize);
|
||||
});
|
||||
|
||||
if (workspace.value.structure.length === 1) { // Auto-open if juust one schema
|
||||
if (workspace.value.structure.length === 1) { // Auto-open if just one schema
|
||||
schema.value[0].selectSchema(workspace.value.structure[0].name);
|
||||
schema.value[0].$refs.schemaAccordion.open = true;
|
||||
}
|
||||
|
||||
if (customizations.value.database) {
|
||||
try {
|
||||
const { status, response } = await Databases.getDatabases(props.connection.uid);
|
||||
if (status === 'success') {
|
||||
databases.value = response;
|
||||
if (selectedDatabase.value === '') {
|
||||
selectedDatabase.value = response[0];
|
||||
setDatabase(selectedDatabase.value);
|
||||
}
|
||||
}
|
||||
else
|
||||
addNotification({ status: 'error', message: response });
|
||||
}
|
||||
catch (err) {
|
||||
addNotification({ status: 'error', message: err.stack });
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const refresh = async () => {
|
||||
@@ -254,8 +295,11 @@ const refresh = async () => {
|
||||
}
|
||||
};
|
||||
|
||||
const explorebarSearch = () => {
|
||||
searchInput.value.focus();
|
||||
const explorebarSearch = (event: KeyboardEvent) => {
|
||||
const isLetter = (event.key >= 'a' && event.key <= 'z');
|
||||
const isNumber = (event.key >= '0' && event.key <= '9');
|
||||
if (isLetter || isNumber)
|
||||
searchInput.value.focus();
|
||||
};
|
||||
|
||||
const resize = (e: MouseEvent) => {
|
||||
@@ -497,13 +541,31 @@ const toggleSearchMethod = () => {
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-explorebar-database-switch {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
z-index: 20;
|
||||
margin-right: 5px;
|
||||
margin-left: -4px;
|
||||
margin-top: -3px;
|
||||
margin-bottom: -0.5rem;
|
||||
height: 24px;
|
||||
|
||||
.form-select.select-sm {
|
||||
font-size: 0.6rem;
|
||||
height: 1.2rem;
|
||||
line-height: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-explorebar-search {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
font-size: 0.6rem;
|
||||
height: 28px;
|
||||
margin: 5px 0;
|
||||
margin: 0 0 5px 0;
|
||||
z-index: 10;
|
||||
|
||||
.has-icon-right {
|
||||
@@ -533,7 +595,7 @@ const toggleSearchMethod = () => {
|
||||
|
||||
.workspace-explorebar-body {
|
||||
width: 100%;
|
||||
height: calc((100vh - 68px) - #{$excluding-size});
|
||||
height: calc((100vh - 63px) - #{$excluding-size});
|
||||
overflow: overlay;
|
||||
padding: 0 0.1rem;
|
||||
}
|
||||
|
@@ -50,7 +50,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} "<b>{{ selectedMisc.name }}</b>"?
|
||||
{{ t('message.deleteConfirm') }} "<b>{{ selectedMisc.name }}</b>"?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
@@ -100,7 +100,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} "<b>{{ selectedSchema }}</b>"?
|
||||
{{ t('message.deleteConfirm') }} "<b>{{ selectedSchema }}</b>"?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
@@ -8,14 +8,14 @@
|
||||
class="context-element"
|
||||
@click="openTableSettingTab"
|
||||
>
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-tune-vertical-variant text-light pr-1" /> {{ t('word.settings') }}</span>
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-wrench-cog text-light pr-1" /> {{ t('word.settings') }}</span>
|
||||
</div>
|
||||
<div
|
||||
v-if="selectedTable && selectedTable.type === 'view' && customizations.viewSettings"
|
||||
class="context-element"
|
||||
@click="openViewSettingTab"
|
||||
>
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-tune-vertical-variant text-light pr-1" /> {{ t('word.settings') }}</span>
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-wrench-cog text-light pr-1" /> {{ t('word.settings') }}</span>
|
||||
</div>
|
||||
<div
|
||||
v-if="selectedTable && selectedTable.type === 'table' && customizations.tableDuplicate"
|
||||
@@ -47,7 +47,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.emptyCorfirm') }} "<b>{{ selectedTable.name }}</b>"?
|
||||
{{ t('message.emptyConfirm') }} "<b>{{ selectedTable.name }}</b>"?
|
||||
</div>
|
||||
<div v-if="customizations.tableTruncateDisableFKCheck">
|
||||
<label class="form-checkbox form-inline">
|
||||
@@ -69,7 +69,7 @@
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="mb-2">
|
||||
{{ t('message.deleteCorfirm') }} "<b>{{ selectedTable.name }}</b>"?
|
||||
{{ t('message.deleteConfirm') }} "<b>{{ selectedTable.name }}</b>"?
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
@@ -43,13 +43,25 @@
|
||||
<span>{{ t('word.indexes') }}</span>
|
||||
</button>
|
||||
<button
|
||||
class="btn btn-dark btn-sm"
|
||||
class="btn btn-dark btn-sm mr-0"
|
||||
:disabled="isSaving"
|
||||
@click="showForeignModal"
|
||||
>
|
||||
<i class="mdi mdi-24px mdi-key-link mr-1" />
|
||||
<span>{{ t('word.foreignKeys') }}</span>
|
||||
</button>
|
||||
|
||||
<div class="divider-vert py-3" />
|
||||
|
||||
<button
|
||||
v-if="workspace.customizations.tableDdl"
|
||||
class="btn btn-dark btn-sm"
|
||||
:disabled="isSaving"
|
||||
@click="showDdlModal"
|
||||
>
|
||||
<i class="mdi mdi-24px mdi-code-tags mr-1" />
|
||||
<span>{{ t('word.ddl') }}</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="workspace-query-info">
|
||||
<div class="d-flex" :title="t('word.schema')">
|
||||
@@ -169,6 +181,13 @@
|
||||
@hide="hideForeignModal"
|
||||
@foreigns-update="foreignsUpdate"
|
||||
/>
|
||||
<WorkspaceTabPropsTableDdlModal
|
||||
v-if="isDdlModal"
|
||||
:table="table"
|
||||
:schema="schema"
|
||||
:workspace="workspace"
|
||||
@hide="hideDdlModal"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -186,6 +205,7 @@ import BaseSelect from '@/components/BaseSelect.vue';
|
||||
import WorkspaceTabPropsTableFields from '@/components/WorkspaceTabPropsTableFields.vue';
|
||||
import WorkspaceTabPropsTableIndexesModal from '@/components/WorkspaceTabPropsTableIndexesModal.vue';
|
||||
import WorkspaceTabPropsTableForeignModal from '@/components/WorkspaceTabPropsTableForeignModal.vue';
|
||||
import WorkspaceTabPropsTableDdlModal from '@/components/WorkspaceTabPropsTableDdlModal.vue';
|
||||
import { ipcRenderer } from 'electron';
|
||||
import { useSettingsStore } from '@/stores/settings';
|
||||
|
||||
@@ -221,6 +241,7 @@ const isLoading = ref(false);
|
||||
const isSaving = ref(false);
|
||||
const isIndexesModal = ref(false);
|
||||
const isForeignModal = ref(false);
|
||||
const isDdlModal = ref(false);
|
||||
const originalFields: Ref<TableField[]> = ref([]);
|
||||
const localFields: Ref<TableField[]> = ref([]);
|
||||
const originalKeyUsage: Ref<TableForeign[]> = ref([]);
|
||||
@@ -649,6 +670,14 @@ const hideForeignModal = () => {
|
||||
isForeignModal.value = false;
|
||||
};
|
||||
|
||||
const showDdlModal = () => {
|
||||
isDdlModal.value = true;
|
||||
};
|
||||
|
||||
const hideDdlModal = () => {
|
||||
isDdlModal.value = false;
|
||||
};
|
||||
|
||||
const foreignsUpdate = (foreigns: TableForeign[]) => {
|
||||
localKeyUsage.value = foreigns;
|
||||
};
|
||||
|
70
src/renderer/components/WorkspaceTabPropsTableDdlModal.vue
Normal file
70
src/renderer/components/WorkspaceTabPropsTableDdlModal.vue
Normal file
@@ -0,0 +1,70 @@
|
||||
<template>
|
||||
<ConfirmModal
|
||||
:confirm-text="t('word.confirm')"
|
||||
size="large"
|
||||
class="options-modal"
|
||||
:cancel-text="t('word.close')"
|
||||
:hide-footer="true"
|
||||
@hide="$emit('hide')"
|
||||
>
|
||||
<template #header>
|
||||
<div class="d-flex">
|
||||
<i class="mdi mdi-24px mdi-code-tags mr-1" />
|
||||
<span class="cut-text">{{ t('word.ddl') }} "{{ table }}"</span>
|
||||
</div>
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="pb-4">
|
||||
<BaseTextEditor
|
||||
ref="queryEditor"
|
||||
v-model="createDdl"
|
||||
editor-class="textarea-editor"
|
||||
:read-only="true"
|
||||
mode="sql"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { onMounted, ref } from 'vue';
|
||||
import { useNotificationsStore } from '@/stores/notifications';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import Tables from '@/ipc-api/Tables';
|
||||
import ConfirmModal from '@/components/BaseConfirmModal.vue';
|
||||
import BaseTextEditor from '@/components/BaseTextEditor.vue';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const props = defineProps({
|
||||
table: String,
|
||||
schema: String,
|
||||
workspace: Object
|
||||
});
|
||||
|
||||
const createDdl = ref('');
|
||||
|
||||
defineEmits(['hide']);
|
||||
|
||||
const { addNotification } = useNotificationsStore();
|
||||
|
||||
onMounted(async () => {
|
||||
try {
|
||||
const { status, response } = await Tables.getTableDll({
|
||||
uid: props.workspace.uid,
|
||||
table: props.table,
|
||||
schema: props.schema
|
||||
});
|
||||
|
||||
if (status === 'success')
|
||||
createDdl.value = response;
|
||||
else
|
||||
addNotification({ status: 'error', message: response });
|
||||
}
|
||||
catch (err) {
|
||||
addNotification({ status: 'error', message: err.stack });
|
||||
}
|
||||
});
|
||||
|
||||
</script>
|
@@ -103,6 +103,9 @@
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('csv')">CSV</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('php')">{{ t('message.phpArray') }}</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('sql')">SQL INSERT</a>
|
||||
</li>
|
||||
@@ -288,6 +291,11 @@ watch(selectedSchema, () => {
|
||||
changeBreadcrumbs({ schema: selectedSchema.value, query: `Query #${props.tab.index}` });
|
||||
});
|
||||
|
||||
watch(databaseSchemas, () => {
|
||||
if (!databaseSchemas.value.includes(selectedSchema.value))
|
||||
selectedSchema.value = null;
|
||||
}, { deep: true });
|
||||
|
||||
const runQuery = async (query: string) => {
|
||||
if (!query || isQuering.value) return;
|
||||
isQuering.value = true;
|
||||
@@ -446,7 +454,7 @@ const clear = () => {
|
||||
clearTabData();
|
||||
};
|
||||
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql') => {
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql' | 'php') => {
|
||||
queryTable.value.downloadTable(format, `${props.tab.type}-${props.tab.index}`);
|
||||
};
|
||||
|
||||
@@ -493,9 +501,6 @@ defineExpose({ resizeResults });
|
||||
query.value = props.tab.content as string;
|
||||
selectedSchema.value = props.tab.schema || breadcrumbsSchema.value;
|
||||
|
||||
if (!databaseSchemas.value.includes(selectedSchema.value))
|
||||
selectedSchema.value = null;
|
||||
|
||||
window.addEventListener('resize', onWindowResize);
|
||||
|
||||
const reloadListener = () => {
|
||||
|
@@ -134,7 +134,7 @@
|
||||
:placeholder="chunkModalRequest"
|
||||
>
|
||||
</div>
|
||||
<label class="column col-12 h6 mb-2 mt-4 cut-text">{{ t('message.newInserStmtEvery') }}:</label>
|
||||
<label class="column col-12 h6 mb-2 mt-4 cut-text">{{ t('message.newInsertStmtEvery') }}:</label>
|
||||
<div class="column col-6">
|
||||
<input
|
||||
v-model.number="sqlExportOptions.sqlInsertAfter"
|
||||
@@ -152,6 +152,77 @@
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
|
||||
<ConfirmModal
|
||||
v-if="csvModalRequest"
|
||||
@confirm="downloadTable('csv', csvModalRequest as string, true)"
|
||||
@hide="csvModalRequest = false"
|
||||
>
|
||||
<template #header>
|
||||
<div class="d-flex">
|
||||
<i class="mdi mdi-24px mdi-file-export mr-1" />
|
||||
<span class="cut-text">{{ t('message.csvExportOptions') }}</span>
|
||||
</div>
|
||||
</template>
|
||||
<template #body>
|
||||
<div class="columns">
|
||||
<div class="form-group column col-12 columns col-gapless">
|
||||
<div class="column col-5">
|
||||
<label class="form-label cut-text">{{ t('message.csvFieldDelimiter') }}:</label>
|
||||
</div>
|
||||
<div class="column col-7">
|
||||
<input
|
||||
v-model.number="csvExportOptions.fieldDelimiter"
|
||||
type="string"
|
||||
class="form-input"
|
||||
>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group column col-12 columns col-gapless">
|
||||
<div class="column col-5">
|
||||
<label class="form-label cut-text">{{ t('message.csvStringDelimiter') }}:</label>
|
||||
</div>
|
||||
<div class="column col-7">
|
||||
<BaseSelect
|
||||
v-model="csvExportOptions.stringDelimiter"
|
||||
class="form-select"
|
||||
:options="[
|
||||
{value: '', label: t('word.none')},
|
||||
{value: 'single', label: t('word.singleQuote')},
|
||||
{value: 'double', label: t('word.doubleQuote')}
|
||||
]"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group column col-12 columns col-gapless">
|
||||
<div class="column col-5">
|
||||
<label class="form-label cut-text">{{ t('message.csvLinesTerminator') }}:</label>
|
||||
</div>
|
||||
<div class="column col-7">
|
||||
<textarea
|
||||
v-model.number="csvExportOptions.linesTerminator"
|
||||
class="form-input"
|
||||
:style="'resize: none'"
|
||||
rows="1"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group column col-12 columns col-gapless">
|
||||
<div class="column col-5">
|
||||
<label class="form-label">
|
||||
{{ t('message.csvIncludeHeader') }}
|
||||
</label>
|
||||
</div>
|
||||
<div class="column col-7">
|
||||
<label class="form-switch d-inline-block" @click.prevent="csvExportOptions.header = !csvExportOptions.header">
|
||||
<input type="checkbox" :checked="csvExportOptions.header">
|
||||
<i class="form-icon" />
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
</ConfirmModal>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@@ -177,6 +248,7 @@ import { TableUpdateParams } from 'common/interfaces/tableApis';
|
||||
import { jsonToSqlInsert } from 'common/libs/sqlUtils';
|
||||
import { unproxify } from '@/libs/unproxify';
|
||||
import faker from '@faker-js/faker';
|
||||
import * as json2php from 'json2php';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
@@ -222,11 +294,18 @@ const rowHeight = ref(23);
|
||||
const selectedField = ref(null);
|
||||
const isEditingRow = ref(false);
|
||||
const chunkModalRequest: Ref<false | string> = ref(false);
|
||||
const csvModalRequest: Ref<false | string> = ref(false);
|
||||
const sqlExportOptions = ref({
|
||||
sqlInsertAfter: 250,
|
||||
sqlInsertDivider: 'bytes' as 'bytes' | 'rows',
|
||||
targetTable: ''
|
||||
});
|
||||
const csvExportOptions = ref({
|
||||
header: true,
|
||||
fieldDelimiter: ';',
|
||||
linesTerminator: '\n',
|
||||
stringDelimiter: 'double'
|
||||
});
|
||||
|
||||
const workspaceSchema = computed(() => getWorkspace(props.connUid).breadcrumbs.schema);
|
||||
const workspaceClient = computed(() => getWorkspace(props.connUid).client);
|
||||
@@ -528,6 +607,12 @@ const copyRow = (format: string) => {
|
||||
|
||||
navigator.clipboard.write(data);
|
||||
}
|
||||
else if (format === 'php') {
|
||||
if (!Array.isArray(contentToCopy)) contentToCopy = [contentToCopy];
|
||||
const printer = json2php.make({ linebreak: '\n', indent: '\t', shortArraySyntax: true });
|
||||
const phpString = printer(contentToCopy);
|
||||
navigator.clipboard.writeText(phpString);
|
||||
}
|
||||
};
|
||||
|
||||
const createHtmlTable = (tableData: Array<string[]>) => {
|
||||
@@ -711,10 +796,10 @@ const selectResultset = (index: number) => {
|
||||
resultsetIndex.value = index;
|
||||
};
|
||||
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql', table: string, chunks = false) => {
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql' | 'php', table: string, popup = false) => {
|
||||
if (!sortedResults.value) return;
|
||||
|
||||
if (format === 'sql' && !chunks && customizations.value.exportByChunks) {
|
||||
if (format === 'sql' && !popup && customizations.value.exportByChunks) {
|
||||
sqlExportOptions.value = {
|
||||
sqlInsertAfter: 250,
|
||||
sqlInsertDivider: 'bytes' as 'bytes' | 'rows',
|
||||
@@ -723,8 +808,20 @@ const downloadTable = (format: 'csv' | 'json' | 'sql', table: string, chunks = f
|
||||
chunkModalRequest.value = table;
|
||||
return;
|
||||
}
|
||||
else
|
||||
else if (format === 'csv' && !popup) {
|
||||
csvExportOptions.value = {
|
||||
header: true,
|
||||
fieldDelimiter: ';',
|
||||
linesTerminator: '\\n',
|
||||
stringDelimiter: 'double'
|
||||
};
|
||||
csvModalRequest.value = table;
|
||||
return;
|
||||
}
|
||||
else {
|
||||
chunkModalRequest.value = false;
|
||||
csvModalRequest.value = false;
|
||||
}
|
||||
|
||||
const rows = sortedResults.value.map((row: any) => {
|
||||
const clonedRow = { ...row };
|
||||
@@ -740,7 +837,8 @@ const downloadTable = (format: 'csv' | 'json' | 'sql', table: string, chunks = f
|
||||
},
|
||||
client: workspaceClient.value,
|
||||
table,
|
||||
sqlOptions: chunks ? { ...sqlExportOptions.value }: null
|
||||
sqlOptions: popup ? { ...sqlExportOptions.value }: null,
|
||||
csvOptions: popup ? { ...csvExportOptions.value }: null
|
||||
});
|
||||
};
|
||||
|
||||
|
@@ -31,6 +31,11 @@
|
||||
<i class="mdi mdi-18px mdi-table-row text-light pr-1" /> {{ t('word.row', selectedRows.length) }} (CSV)
|
||||
</span>
|
||||
</div>
|
||||
<div class="context-element" @click="copyRow('php')">
|
||||
<span class="d-flex">
|
||||
<i class="mdi mdi-18px mdi-table-row text-light pr-1" /> {{ t('word.row', selectedRows.length) }} (PHP)
|
||||
</span>
|
||||
</div>
|
||||
<div class="context-element" @click="copyRow('sql')">
|
||||
<span class="d-flex">
|
||||
<i class="mdi mdi-18px mdi-table-row text-light pr-1" /> {{ t('word.row', selectedRows.length) }} (SQL INSERT)
|
||||
|
@@ -293,7 +293,7 @@ const inputProps = computed(() => {
|
||||
let timeMask = '##:##:##';
|
||||
const precision = props.fields[editingField.value].length;
|
||||
|
||||
for (let i = 0; i < precision; i++)
|
||||
for (let i = 0; i < Number(precision); i++)
|
||||
timeMask += i === 0 ? '.#' : '#';
|
||||
|
||||
if (HAS_TIMEZONE.includes(editingType.value))
|
||||
@@ -309,7 +309,7 @@ const inputProps = computed(() => {
|
||||
let datetimeMask = '####-##-## ##:##:##';
|
||||
const precision = props.fields[editingField.value].length;
|
||||
|
||||
for (let i = 0; i < precision; i++)
|
||||
for (let i = 0; i < Number(precision); i++)
|
||||
datetimeMask += i === 0 ? '.#' : '#';
|
||||
|
||||
if (HAS_TIMEZONE.includes(editingType.value))
|
||||
@@ -582,7 +582,7 @@ const typeFormat = (val: string | number | Date | number[], type: string, precis
|
||||
return val;
|
||||
|
||||
let datePrecision = '';
|
||||
for (let i = 0; i < precision; i++)
|
||||
for (let i = 0; i < Number(precision); i++)
|
||||
datePrecision += i === 0 ? '.S' : 'S';
|
||||
|
||||
return moment(val).isValid() ? moment(val).format(`YYYY-MM-DD HH:mm:ss${datePrecision}`) : val;
|
||||
|
@@ -73,6 +73,7 @@
|
||||
<button
|
||||
class="btn btn-sm"
|
||||
:title="t('word.filter')"
|
||||
:disabled="isQuering"
|
||||
:class="{'btn-primary': isSearch, 'btn-dark': !isSearch}"
|
||||
@click="isSearch = !isSearch"
|
||||
>
|
||||
@@ -88,7 +89,7 @@
|
||||
<span>{{ t('message.insertRow', 2) }}</span>
|
||||
</button>
|
||||
|
||||
<div class="dropdown table-dropdown pr-2">
|
||||
<div class="dropdown table-dropdown">
|
||||
<button
|
||||
:disabled="isQuering"
|
||||
class="btn btn-dark btn-sm dropdown-toggle mr-0 pr-0"
|
||||
@@ -105,11 +106,27 @@
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('csv')">CSV</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('php')">{{ t('message.phpArray') }}</a>
|
||||
</li>
|
||||
<li class="menu-item">
|
||||
<a class="c-hand" @click="downloadTable('sql')">SQL INSERT</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="divider-vert py-3" />
|
||||
|
||||
<button
|
||||
v-if="isTable"
|
||||
class="btn btn-dark btn-sm"
|
||||
:disabled="isQuering"
|
||||
:title="t('word.settings')"
|
||||
@click="openTableSettingTab()"
|
||||
>
|
||||
<i class="mdi mdi-24px mdi-cog" />
|
||||
<!-- <span>{{ t('word.settings') }}</span> -->
|
||||
</button>
|
||||
</div>
|
||||
<div class="workspace-query-info">
|
||||
<div
|
||||
@@ -199,6 +216,7 @@ import { ConnectionParams } from 'common/interfaces/antares';
|
||||
import { TableFilterClausole } from 'common/interfaces/tableApis';
|
||||
import { useFilters } from '@/composables/useFilters';
|
||||
import { ipcRenderer } from 'electron';
|
||||
import { table } from 'console';
|
||||
|
||||
const { localeString } = useFilters();
|
||||
|
||||
@@ -227,7 +245,7 @@ const workspacesStore = useWorkspacesStore();
|
||||
|
||||
const { dataTabLimit: limit } = storeToRefs(settingsStore);
|
||||
|
||||
const { changeBreadcrumbs, getWorkspace } = workspacesStore;
|
||||
const { changeBreadcrumbs, getWorkspace, newTab } = workspacesStore;
|
||||
|
||||
const pageSelect: Ref<HTMLInputElement> = ref(null);
|
||||
const tabUid = ref('data');
|
||||
@@ -266,7 +284,7 @@ const keyUsage = computed(() => {
|
||||
});
|
||||
|
||||
const getTableData = async () => {
|
||||
if (!props.table || !props.isSelected) return;
|
||||
if (!props.table || !props.isSelected || isQuering.value) return;
|
||||
isQuering.value = true;
|
||||
|
||||
// if table changes clear cached values
|
||||
@@ -373,7 +391,7 @@ const setRefreshInterval = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql') => {
|
||||
const downloadTable = (format: 'csv' | 'json' | 'sql' | 'php') => {
|
||||
queryTable.value.downloadTable(format, props.table);
|
||||
};
|
||||
|
||||
@@ -424,6 +442,21 @@ const hasApproximately = computed(() => {
|
||||
results.value[0].rows.length < approximateCount.value;
|
||||
});
|
||||
|
||||
const openTableSettingTab = () => {
|
||||
newTab({
|
||||
uid: workspace.value.uid,
|
||||
elementName: props.table,
|
||||
schema: props.schema,
|
||||
type: 'table-props',
|
||||
elementType: 'table'
|
||||
});
|
||||
|
||||
changeBreadcrumbs({
|
||||
schema: props.schema,
|
||||
table: props.table
|
||||
});
|
||||
};
|
||||
|
||||
watch(() => props.schema, () => {
|
||||
if (props.isSelected) {
|
||||
page.value = 1;
|
||||
|
66
src/renderer/components/WorkspaceTabsContext.vue
Normal file
66
src/renderer/components/WorkspaceTabsContext.vue
Normal file
@@ -0,0 +1,66 @@
|
||||
<template>
|
||||
<BaseContextMenu
|
||||
:context-event="props.contextEvent"
|
||||
@close-context="closeContext"
|
||||
>
|
||||
<div class="context-element" @click.stop="closeAllTabs">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-asterisk text-light pr-1" /> {{ t('message.closeAllTabs') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="context-element" @click.stop="closeOtherTabs">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-not-equal text-light pr-1" /> {{ t('message.closeOtherTabs') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="context-element" @click.stop="closeLeftTabs">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-less-than text-light pr-1" /> {{ t('message.closeTabsToLeft') }}</span>
|
||||
</div>
|
||||
|
||||
<div class="context-element" @click.stop="closeRightTabs">
|
||||
<span class="d-flex"><i class="mdi mdi-18px mdi-greater-than text-light pr-1" /> {{ t('message.closeTabsToRight') }}</span>
|
||||
</div>
|
||||
</BaseContextMenu>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import BaseContextMenu from '@/components/BaseContextMenu.vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
|
||||
const props = defineProps({
|
||||
contextEvent: MouseEvent,
|
||||
selectedTab: Object
|
||||
});
|
||||
|
||||
const emit = defineEmits([
|
||||
'close-context',
|
||||
'close-all-tabs',
|
||||
'close-other-tabs',
|
||||
'close-to-left',
|
||||
'close-to-right'
|
||||
]);
|
||||
|
||||
const closeContext = () => {
|
||||
emit('close-context');
|
||||
};
|
||||
|
||||
const closeAllTabs = () => {
|
||||
emit('close-all-tabs');
|
||||
closeContext();
|
||||
};
|
||||
|
||||
const closeLeftTabs = () => {
|
||||
emit('close-to-left');
|
||||
closeContext();
|
||||
};
|
||||
|
||||
const closeRightTabs = () => {
|
||||
emit('close-to-right');
|
||||
closeContext();
|
||||
};
|
||||
|
||||
const closeOtherTabs = () => {
|
||||
emit('close-other-tabs');
|
||||
closeContext();
|
||||
};
|
||||
</script>
|
@@ -50,7 +50,7 @@ export const arSA = {
|
||||
testConnection: 'إختبر الإتصال',
|
||||
editConnection: 'عدل الإتصال',
|
||||
deleteConnection: 'إحذف الإتصال',
|
||||
deleteCorfirm: 'هل أنت متأكد من حذف الإتصال؟',
|
||||
deleteConfirm: 'هل أنت متأكد من حذف الإتصال؟',
|
||||
connectionSuccessfullyMade: 'تم الإتصال بنجاح!',
|
||||
madeWithJS: 'بني بـ 💛 و جافاسكربت!',
|
||||
checkForUpdates: 'تأكد من التحديثات',
|
||||
|
@@ -117,7 +117,7 @@ export const deDE = {
|
||||
testConnection: 'Verbindung testen',
|
||||
editConnection: 'Verbindung bearbeiten',
|
||||
deleteConnection: 'Verbindung löschen',
|
||||
deleteCorfirm: 'Bestätige den Abbruch von',
|
||||
deleteConfirm: 'Bestätige den Abbruch von',
|
||||
connectionSuccessfullyMade: 'Verbindung erfolgreich erstellt!',
|
||||
madeWithJS: 'Mit 💛 und JavaScript gemacht!',
|
||||
checkForUpdates: 'Suche nach Aktualisierungen',
|
||||
@@ -157,7 +157,7 @@ export const deDE = {
|
||||
createNewTable: 'Neue Tabelle erstellen',
|
||||
emptyTable: 'Tabelle leeren',
|
||||
deleteTable: 'Tabelle löschen',
|
||||
emptyCorfirm: 'Wirklich leeren?',
|
||||
emptyConfirm: 'Wirklich leeren?',
|
||||
unsavedChanges: 'Ungespeicherte Änderungen',
|
||||
discardUnsavedChanges: 'Du hast ungespeicherte Änderungen. Wenn du den Tab verlässt, werden diese Änderungen verworfen.',
|
||||
thereAreNoIndexes: 'Es gibt keine Indizes',
|
||||
|
@@ -145,11 +145,15 @@ export const enUS = {
|
||||
console: 'Console',
|
||||
shortcuts: 'Shortcuts',
|
||||
folder: 'Folder | Folders',
|
||||
appearence: 'Appearence',
|
||||
appearance: 'Appearance',
|
||||
color: 'Color',
|
||||
label: 'Label',
|
||||
icon: 'Icon',
|
||||
resultsTable: 'Results table'
|
||||
resultsTable: 'Results table',
|
||||
ddl: 'DDL',
|
||||
none: 'None',
|
||||
singleQuote: 'Single quote',
|
||||
doubleQuote: 'Double quote'
|
||||
},
|
||||
message: {
|
||||
appWelcome: 'Welcome to Antares SQL Client!',
|
||||
@@ -161,7 +165,7 @@ export const enUS = {
|
||||
testConnection: 'Test connection',
|
||||
editConnection: 'Edit connection',
|
||||
deleteConnection: 'Delete connection',
|
||||
deleteCorfirm: 'Do you confirm the cancellation of',
|
||||
deleteConfirm: 'Do you confirm the cancellation of',
|
||||
connectionSuccessfullyMade: 'Connection successfully made!',
|
||||
madeWithJS: 'Made with 💛 and JavaScript!',
|
||||
checkForUpdates: 'Check for updates',
|
||||
@@ -201,7 +205,7 @@ export const enUS = {
|
||||
createNewTable: 'Create new table',
|
||||
emptyTable: 'Empty table',
|
||||
deleteTable: 'Delete table',
|
||||
emptyCorfirm: 'Do you confirm to empty',
|
||||
emptyConfirm: 'Do you confirm to empty',
|
||||
unsavedChanges: 'Unsaved changes',
|
||||
discardUnsavedChanges: 'You have some unsaved changes. Closing this tab these changes will be discarded.',
|
||||
thereAreNoIndexes: 'There are no indexes',
|
||||
@@ -261,7 +265,7 @@ export const enUS = {
|
||||
duplicateTable: 'Duplicate table',
|
||||
noOpenTabs: 'There are no open tabs, navigate on the left bar or:',
|
||||
noSchema: 'No schema',
|
||||
restorePreviourSession: 'Restore previous session',
|
||||
restorePreviousSession: 'Restore previous session',
|
||||
runQuery: 'Run query',
|
||||
thereAreNoTableFields: 'There are no table fields',
|
||||
newTable: 'New table',
|
||||
@@ -278,9 +282,9 @@ export const enUS = {
|
||||
exportSchema: 'Export schema',
|
||||
importSchema: 'Import schema',
|
||||
directoryPath: 'Directory path',
|
||||
newInserStmtEvery: 'New INSERT statement every',
|
||||
newInsertStmtEvery: 'New INSERT statement every',
|
||||
processingTableExport: 'Processing {table}',
|
||||
fechingTableExport: 'Fetching {table} data',
|
||||
fetchingTableExport: 'Fetching {table} data',
|
||||
writingTableExport: 'Writing {table} data',
|
||||
checkAllTables: 'Check all tables',
|
||||
uncheckAllTables: 'Uncheck all tables',
|
||||
@@ -292,16 +296,16 @@ export const enUS = {
|
||||
autoCommit: 'Auto commit',
|
||||
manualCommit: 'Manual commit',
|
||||
actionSuccessful: '{action} successful',
|
||||
importQueryErrors: 'Warning: {n} error has occurrend | Warning: {n} errors occurred',
|
||||
importQueryErrors: 'Warning: {n} error has occurred | Warning: {n} errors occurred',
|
||||
executedQueries: '{n} query executed | {n} queries executed',
|
||||
ourputFormat: 'Output format',
|
||||
outputFormat: 'Output format',
|
||||
singleFile: 'Single {ext} file',
|
||||
zipCompressedFile: 'ZIP compressed {ext} file',
|
||||
disableBlur: 'Disable blur',
|
||||
untrustedConnection: 'Untrusted connection',
|
||||
missingOrIncompleteTranslation: 'Missing or incomplete translation?',
|
||||
findOutHowToContribute: 'Find out how to contribute',
|
||||
disableFKChecks: 'Disable foreigh key checks',
|
||||
disableFKChecks: 'Disable foreign key checks',
|
||||
allConnections: 'All connections',
|
||||
searchForConnections: 'Search for connections',
|
||||
disableScratchpad: 'Disable scratchpad',
|
||||
@@ -333,7 +337,7 @@ export const enUS = {
|
||||
editFolder: 'Edit folder',
|
||||
folderName: 'Folder name',
|
||||
deleteFolder: 'Delete folder',
|
||||
editConnectionAppearence: 'Edit connection appearence',
|
||||
editConnectionAppearance: 'Edit connection appearance',
|
||||
executeSelectedQuery: 'Execute selected query',
|
||||
defaultCopyType: 'Default copy type',
|
||||
showTableSize: 'Show table size in sidebar',
|
||||
@@ -342,7 +346,19 @@ export const enUS = {
|
||||
switchSearchMethod: 'Switch search method',
|
||||
noResultsPresent: 'No results present',
|
||||
sqlExportOptions: 'SQL export options',
|
||||
targetTable: 'Target table'
|
||||
targetTable: 'Target table',
|
||||
phpArray: 'PHP array',
|
||||
closeAllTabs: 'Close all tabs',
|
||||
closeOtherTabs: 'Close other tabs',
|
||||
closeTabsToLeft: 'Close tabs to the left',
|
||||
closeTabsToRight: 'Close tabs to the right',
|
||||
switchDatabase: 'Switch the database',
|
||||
csvExportOptions: 'CSV export options',
|
||||
csvFieldDelimiter: 'Field delimiter',
|
||||
csvLinesTerminator: 'Line terminator',
|
||||
csvStringDelimiter: 'String delimiter',
|
||||
csvIncludeHeader: 'Include header',
|
||||
scratchPadDefaultValue: '# HOW TO SUPPORT ANTARES\n\n- [ ] Leave a star to Antares [GitHub repo](https://github.com/antares-sql/antares)\n- [ ] Send feedbacks and advices\n- [ ] Report for bugs\n- [ ] If you enjoy, share Antares with friends\n\n# ABOUT SCRATCHPAD\n\nThis is a scratchpad where you can save your **personal notes**. It supports `markdown` format, but you are free to use plain text.\nThis content is just a placeholder, feel free to clear it to make space for your notes.\n'
|
||||
},
|
||||
faker: {
|
||||
address: 'Address',
|
||||
|
@@ -51,7 +51,7 @@ export const esES = {
|
||||
testConnection: 'Comprobar conexión',
|
||||
editConnection: 'Editar conexión',
|
||||
deleteConnection: 'Eliminar conexión',
|
||||
deleteCorfirm: 'Confirmas la cancelación de',
|
||||
deleteConfirm: 'Confirmas la cancelación de',
|
||||
connectionSuccessfullyMade: 'Conexión realizada correctamente!',
|
||||
madeWithJS: 'Hecho con 💛 y JavaScript!',
|
||||
checkForUpdates: 'Comprobar actualizaciones',
|
||||
|
@@ -152,7 +152,7 @@ export const frFR = {
|
||||
testConnection: 'Tester la connexion',
|
||||
editConnection: 'Modifier la connexion',
|
||||
deleteConnection: 'Supprimer la connexion',
|
||||
deleteCorfirm: 'Confirmez-vous l\'annulation de',
|
||||
deleteConfirm: 'Confirmez-vous l\'annulation de',
|
||||
connectionSuccessfullyMade: 'Connexion établie avec succès !',
|
||||
madeWithJS: 'Fait avec 💛 et JavaScript !',
|
||||
checkForUpdates: 'Vérifier les mises à jour',
|
||||
@@ -192,7 +192,7 @@ export const frFR = {
|
||||
createNewTable: 'Créer une nouvelle table',
|
||||
emptyTable: 'Vider la table',
|
||||
deleteTable: 'Supprimer une table',
|
||||
emptyCorfirm: 'Confirmez-vous que vous souhaitez vider la table ?',
|
||||
emptyConfirm: 'Confirmez-vous que vous souhaitez vider la table ?',
|
||||
unsavedChanges: 'Modifications non sauvegardées',
|
||||
discardUnsavedChanges: 'Vous avez des modifications non sauvegardées. En fermant cet onglet, ces modifications seront supprimées',
|
||||
thereAreNoIndexes: 'Il n\'y a pas d\'index',
|
||||
@@ -252,7 +252,7 @@ export const frFR = {
|
||||
duplicateTable: 'Copier la table',
|
||||
noOpenTabs: 'Il n\'y a pas d\'onglet ouvert, naviguer vers la barre gauche ou :',
|
||||
noSchema: 'Pas de schéma',
|
||||
restorePreviourSession: 'Restorer une session précédente',
|
||||
restorePreviousSession: 'Restorer une session précédente',
|
||||
runQuery: 'Lancer la requête',
|
||||
thereAreNoTableFields: 'Il n\'y a pas de champ table',
|
||||
newTable: 'Nouvelle table',
|
||||
@@ -269,9 +269,9 @@ export const frFR = {
|
||||
exportSchema: 'Exporter un schéma',
|
||||
importSchema: 'Importer un schéma',
|
||||
directoryPath: 'chemin du répertoire',
|
||||
newInserStmtEvery: 'Nouvelle déclaration d\'insertion tous les',
|
||||
newInsertStmtEvery: 'Nouvelle déclaration d\'insertion tous les',
|
||||
processingTableExport: 'Traitement {table}',
|
||||
fechingTableExport: 'Recherche des données de la table {table}',
|
||||
fetchingTableExport: 'Recherche des données de la table {table}',
|
||||
writingTableExport: 'Ecriture des données de la table {table}',
|
||||
checkAllTables: 'Vérification de toutes les tables',
|
||||
uncheckAllTables: 'Désélectionner toutes les tables',
|
||||
@@ -285,7 +285,7 @@ export const frFR = {
|
||||
actionSuccessful: '{action} réussie',
|
||||
importQueryErrors: 'Attention : {n} erreurs se sont produites | Attention: {n} erreurs sont apparues',
|
||||
executedQueries: '{n} requêtes ont été exécutées | {n} requêtes exécutées',
|
||||
ourputFormat: 'Format de sortie',
|
||||
outputFormat: 'Format de sortie',
|
||||
singleFile: 'Seul fichier avec l\'extension {ext}',
|
||||
zipCompressedFile: 'Fichier compréssé avec l\'extension {ext}',
|
||||
disableBlur: 'Désactiver le floue',
|
||||
|
@@ -145,7 +145,7 @@ export const idID = {
|
||||
console: 'Konsol',
|
||||
shortcuts: 'Shortcut',
|
||||
folder: 'Folder | Folder',
|
||||
appearence: 'Appearence',
|
||||
appearance: 'Appearance',
|
||||
color: 'Color',
|
||||
label: 'Label',
|
||||
icon: 'Icon'
|
||||
@@ -160,7 +160,7 @@ export const idID = {
|
||||
testConnection: 'Tes koneksi',
|
||||
editConnection: 'Mengedit koneksi',
|
||||
deleteConnection: 'Hapus koneksi',
|
||||
deleteCorfirm: 'Apakah Anda mengkonfirmasi pembatalan',
|
||||
deleteConfirm: 'Apakah Anda mengkonfirmasi pembatalan',
|
||||
connectionSuccessfullyMade: 'Sambungan berhasil dibuat!',
|
||||
madeWithJS: 'Dibuat dengan 💛 dan JavaScript!',
|
||||
checkForUpdates: 'Periksa pembaruan',
|
||||
@@ -200,7 +200,7 @@ export const idID = {
|
||||
createNewTable: 'Buat tabel baru',
|
||||
emptyTable: 'Kosongkan Tabel',
|
||||
deleteTable: 'Hapus tabel',
|
||||
emptyCorfirm: 'Apakah Anda mengkonfirmasi untuk mengosongkan',
|
||||
emptyConfirm: 'Apakah Anda mengkonfirmasi untuk mengosongkan',
|
||||
unsavedChanges: 'Perubahan belum disimpan',
|
||||
discardUnsavedChanges: 'Anda memiliki beberapa perubahan yang belum disimpan. Dengan menutup tab ini akan membuang perubahan',
|
||||
thereAreNoIndexes: 'Tidak ada indeks',
|
||||
@@ -260,7 +260,7 @@ export const idID = {
|
||||
duplicateTable: 'Duplikat Tabel',
|
||||
noOpenTabs: 'Tidak ada tab terbuka, navigasikan di bilah kiri atau:',
|
||||
noSchema: 'Tidak ada skema',
|
||||
restorePreviourSession: 'Kembalikan sesi sebelumnya',
|
||||
restorePreviousSession: 'Kembalikan sesi sebelumnya',
|
||||
runQuery: 'Jalankan kueri',
|
||||
thereAreNoTableFields: 'Tidak ada bidang tabel',
|
||||
newTable: 'Tabel baru',
|
||||
@@ -277,9 +277,9 @@ export const idID = {
|
||||
exportSchema: 'Skema ekspor',
|
||||
importSchema: 'Skema impor',
|
||||
directoryPath: 'Jalur direktori',
|
||||
newInserStmtEvery: 'Pernyataan INSERT baru setiap',
|
||||
newInsertStmtEvery: 'Pernyataan INSERT baru setiap',
|
||||
processingTableExport: 'Memproses {table}',
|
||||
fechingTableExport: 'Mengambil data {table}',
|
||||
fetchingTableExport: 'Mengambil data {table}',
|
||||
writingTableExport: 'Menulis data {table} ',
|
||||
checkAllTables: 'Periksa semua tabel',
|
||||
uncheckAllTables: 'Hapus centang semua tabel',
|
||||
@@ -293,7 +293,7 @@ export const idID = {
|
||||
actionSuccessful: '{aksi} berhasil',
|
||||
importQueryErrors: 'Peringatan: {n} kesalahan telah terjadi | Peringatan: {n} kesalahan telah terjadi',
|
||||
executedQueries: '{n} permintaan dieksekusi | {n} permintaan dieksekusi',
|
||||
ourputFormat: 'Format keluaran',
|
||||
outputFormat: 'Format keluaran',
|
||||
singleFile: 'File {ext} tunggal',
|
||||
zipCompressedFile: 'File {ext} terkompresi ZIP',
|
||||
disableBlur: 'Nonaktifkan buram',
|
||||
@@ -332,7 +332,7 @@ export const idID = {
|
||||
editFolder: 'Ubah folder',
|
||||
folderName: 'Nama folder',
|
||||
deleteFolder: 'Hapus folder',
|
||||
editConnectionAppearence: 'Ubah connection appearence',
|
||||
editConnectionAppearance: 'Ubah connection appearance',
|
||||
executeSelectedQuery: 'Eksekusi query yang dipilih',
|
||||
defaultCopyType: 'Jenis salin default'
|
||||
},
|
||||
|
@@ -12,7 +12,7 @@ import { zhCN } from './zh-CN';
|
||||
import { ruRU } from './ru-RU';
|
||||
import { idID } from './id-ID';
|
||||
import { koKR } from './ko-KR';
|
||||
|
||||
import { nlNL } from './nl-NL';
|
||||
const messages = {
|
||||
'en-US': enUS,
|
||||
'it-IT': itIT,
|
||||
@@ -26,7 +26,8 @@ const messages = {
|
||||
'zh-CN': zhCN,
|
||||
'ru-RU': ruRU,
|
||||
'id-ID': idID,
|
||||
'ko-KR': koKR
|
||||
'ko-KR': koKR,
|
||||
'nl-NL': nlNL
|
||||
};
|
||||
|
||||
type NestedPartial<T> = {
|
||||
|
@@ -22,7 +22,7 @@ export const itIT = {
|
||||
settings: 'Impostazioni',
|
||||
general: 'Generale',
|
||||
themes: 'Temi',
|
||||
update: 'Aggiornamento',
|
||||
update: 'Aggiorna',
|
||||
about: 'Informazioni',
|
||||
language: 'Lingua',
|
||||
version: 'Versione',
|
||||
@@ -145,7 +145,7 @@ export const itIT = {
|
||||
console: 'Console',
|
||||
shortcuts: 'Scorciatoie',
|
||||
folder: 'Cartella | Cartelle',
|
||||
appearence: 'Aspetto',
|
||||
appearance: 'Aspetto',
|
||||
color: 'Colore',
|
||||
label: 'Etichetta',
|
||||
icon: 'Icona',
|
||||
@@ -161,7 +161,7 @@ export const itIT = {
|
||||
testConnection: 'Testa connessione',
|
||||
editConnection: 'Modifica connessione',
|
||||
deleteConnection: 'Elimina connessione',
|
||||
deleteCorfirm: 'Confermi l\'eliminazione di',
|
||||
deleteConfirm: 'Confermi l\'eliminazione di',
|
||||
connectionSuccessfullyMade: 'Connessione avvenuta con successo!',
|
||||
madeWithJS: 'Fatto con 💛 e JavaScript!',
|
||||
checkForUpdates: 'Cerca aggiornamenti',
|
||||
@@ -201,7 +201,7 @@ export const itIT = {
|
||||
createNewTable: 'Crea nuova tabella',
|
||||
emptyTable: 'Svuota tabella',
|
||||
deleteTable: 'Cancella tabella',
|
||||
emptyCorfirm: 'Confermi di voler svuotare',
|
||||
emptyConfirm: 'Confermi di voler svuotare',
|
||||
unsavedChanges: 'Modifiche non salvate',
|
||||
discardUnsavedChanges: 'Hai modifiche non salvate. Lasciando questa scheda le modifiche saranno scartate.',
|
||||
thereAreNoIndexes: 'Non ci sono indici',
|
||||
@@ -261,7 +261,7 @@ export const itIT = {
|
||||
duplicateTable: 'Duplica tabella',
|
||||
noOpenTabs: 'Non ci sono tab aperte, naviga nella barra sinistra o:',
|
||||
noSchema: 'Nessuno schema',
|
||||
restorePreviourSession: 'Ripristina sessione precedente',
|
||||
restorePreviousSession: 'Ripristina sessione precedente',
|
||||
runQuery: 'Esegui query',
|
||||
thereAreNoTableFields: 'Non ci sono campi della tabella',
|
||||
newTable: 'Nuova tabella',
|
||||
@@ -278,9 +278,9 @@ export const itIT = {
|
||||
exportSchema: 'Esporta schema',
|
||||
importSchema: 'Importa schema',
|
||||
directoryPath: 'Percorso directory',
|
||||
newInserStmtEvery: 'Nuova istruzione INSERT ogni',
|
||||
newInsertStmtEvery: 'Nuova istruzione INSERT ogni',
|
||||
processingTableExport: 'Processo {table}',
|
||||
fechingTableExport: 'Ricavo i dati {table}',
|
||||
fetchingTableExport: 'Ricavo i dati {table}',
|
||||
writingTableExport: 'Scrittura dati {table}',
|
||||
checkAllTables: 'Seleziona tutte le tabelle',
|
||||
uncheckAllTables: 'Deseleziona tutte le tabelle',
|
||||
@@ -294,7 +294,7 @@ export const itIT = {
|
||||
actionSuccessful: '{action} riuscito',
|
||||
importQueryErrors: 'Attenzione: si è verificato un errore | Attenzione si sono verificati {n} errori',
|
||||
executedQueries: '{n} query eseguite | {n} query eseguite',
|
||||
ourputFormat: 'Formato output',
|
||||
outputFormat: 'Formato output',
|
||||
singleFile: 'Singolo file {ext}',
|
||||
zipCompressedFile: 'File {ext} zippato',
|
||||
disableBlur: 'Disabilita sfocatura',
|
||||
@@ -333,11 +333,11 @@ export const itIT = {
|
||||
editFolder: 'Modifica cartella',
|
||||
folderName: 'Nome cartella',
|
||||
deleteFolder: 'Cancella cartella',
|
||||
editConnectionAppearence: 'Modifica aspetto connessione',
|
||||
editConnectionAppearance: 'Modifica aspetto connessione',
|
||||
executeSelectedQuery: 'Esegui la query selezionata',
|
||||
defaultCopyType: 'Tipo di copia default',
|
||||
showTableSize: 'Mostra dimensioni tabella nella sidebar',
|
||||
showTableSizeDescription: 'Solo MySQL/MariaDB. Abilitare questa opzione può compmpromettere le performance in schemi con molte tabelle.',
|
||||
showTableSizeDescription: 'Solo MySQL/MariaDB. Abilitare questa opzione può compromettere le performance in schemi con molte tabelle.',
|
||||
searchForSchemas: 'Cerca schemi',
|
||||
switchSearchMethod: 'Cambia metodo di ricerca',
|
||||
noResultsPresent: 'Nessun risultato presente'
|
||||
|
@@ -131,7 +131,7 @@ export const jaJP = {
|
||||
testConnection: '接続のテスト',
|
||||
editConnection: '接続の編集',
|
||||
deleteConnection: '接続の削除',
|
||||
deleteCorfirm: 'のキャンセルを確認しますか?',
|
||||
deleteConfirm: 'のキャンセルを確認しますか?',
|
||||
connectionSuccessfullyMade: '接続に成功しました。',
|
||||
madeWithJS: '💛 と JavaScript で作られています。',
|
||||
checkForUpdates: '更新情報の確認',
|
||||
@@ -171,7 +171,7 @@ export const jaJP = {
|
||||
createNewTable: '新しいテーブルの作成',
|
||||
emptyTable: '空のテーブル',
|
||||
deleteTable: 'テーブルの削除',
|
||||
emptyCorfirm: '空にすることを確認しますか?',
|
||||
emptyConfirm: '空にすることを確認しますか?',
|
||||
unsavedChanges: '保存されていない変更',
|
||||
discardUnsavedChanges: '保存されていない変更があります。このタブを閉じると、これらの変更は破棄されます。',
|
||||
thereAreNoIndexes: 'インデックスがありません',
|
||||
@@ -231,7 +231,7 @@ export const jaJP = {
|
||||
duplicateTable: 'テーブルを複製する',
|
||||
noOpenTabs: '開いているタブがありません。左のバーでナビゲートするか',
|
||||
noSchema: 'スキーマなし',
|
||||
restorePreviourSession: '前のセッションに戻す',
|
||||
restorePreviousSession: '前のセッションに戻す',
|
||||
runQuery: 'クエリの実行',
|
||||
thereAreNoTableFields: 'テーブルのフィールドがありません',
|
||||
newTable: '新しいテーブル',
|
||||
|
@@ -112,7 +112,7 @@ export const koKR = {
|
||||
small: '작음',
|
||||
medium: '중간',
|
||||
large: '큼',
|
||||
row: '행 | 행들',
|
||||
row: '행 | 행들',
|
||||
cell: '셀 | 셀들',
|
||||
triggerFunction: '트리거 함수 | 트리거 함수들',
|
||||
all: '모두',
|
||||
@@ -145,7 +145,7 @@ export const koKR = {
|
||||
console: '콘솔',
|
||||
shortcuts: '바로가기',
|
||||
folder: '폴더 | 폴더들',
|
||||
appearence: '외형',
|
||||
appearance: '외형',
|
||||
color: '색상',
|
||||
label: '라벨',
|
||||
icon: '아이콘',
|
||||
@@ -161,7 +161,7 @@ export const koKR = {
|
||||
testConnection: '연결 테스트',
|
||||
editConnection: '연결 편집',
|
||||
deleteConnection: '연결 삭제',
|
||||
deleteCorfirm: '취소를 확인하시겠습니까',
|
||||
deleteConfirm: '취소를 확인하시겠습니까',
|
||||
connectionSuccessfullyMade: '성공적으로 연결되었습니다!',
|
||||
madeWithJS: '💛과 JavaScript로 만들어졌습니다!',
|
||||
checkForUpdates: '업데이트 확인',
|
||||
@@ -201,7 +201,7 @@ export const koKR = {
|
||||
createNewTable: '새 테이블 생성',
|
||||
emptyTable: '테이블 비우기',
|
||||
deleteTable: '테이블 삭제',
|
||||
emptyCorfirm: '비우시겠습니까',
|
||||
emptyConfirm: '비우시겠습니까',
|
||||
unsavedChanges: '저장되지 않은 변경사항',
|
||||
discardUnsavedChanges: '저장되지 않은 변경사항이 있습니다. 탭을 닫으면 이러한 변경사항이 삭제됩니다.',
|
||||
thereAreNoIndexes: '인덱스가 없습니다.',
|
||||
@@ -261,7 +261,7 @@ export const koKR = {
|
||||
duplicateTable: '테이블 복제',
|
||||
noOpenTabs: '열린 탭이 없습니다.',
|
||||
noSchema: '스키마 없음',
|
||||
restorePreviourSession: '이전 세션 복원',
|
||||
restorePreviousSession: '이전 세션 복원',
|
||||
runQuery: '쿼리 실행',
|
||||
thereAreNoTableFields: '테이블 필드가 없습니다',
|
||||
newTable: '새 테이블',
|
||||
@@ -278,9 +278,9 @@ export const koKR = {
|
||||
exportSchema: '스키마 내보내기',
|
||||
importSchema: '스키마 가져오기',
|
||||
directoryPath: '디렉터리 경로',
|
||||
newInserStmtEvery: '마다 새 INSERT 문',
|
||||
newInsertStmtEvery: '마다 새 INSERT 문',
|
||||
processingTableExport: '{table} 처리 중',
|
||||
fechingTableExport: '{table} 데이터 가져오는 중',
|
||||
fetchingTableExport: '{table} 데이터 가져오는 중',
|
||||
writingTableExport: '{table} 데이터 쓰는 중',
|
||||
checkAllTables: '모든 테이블 선택',
|
||||
uncheckAllTables: '모든 테이블 선택 취소',
|
||||
@@ -294,7 +294,7 @@ export const koKR = {
|
||||
actionSuccessful: '{action} 성공',
|
||||
importQueryErrors: '경고: {n}개의 오류 발생 | 경고: {n}개의 오류 발생',
|
||||
executedQueries: '{n}개의 쿼리 실행 | {n}개의 쿼리 실행',
|
||||
ourputFormat: '출력 형식',
|
||||
outputFormat: '출력 형식',
|
||||
singleFile: '단일 {ext} 파일',
|
||||
zipCompressedFile: 'ZIP 압축 {ext} 파일',
|
||||
disableBlur: 'blur 비활성화',
|
||||
@@ -333,7 +333,7 @@ export const koKR = {
|
||||
editFolder: '폴더 수정',
|
||||
folderName: '폴더 이름',
|
||||
deleteFolder: '폴더 삭제',
|
||||
editConnectionAppearence: '연결 형태 수정',
|
||||
editConnectionAppearance: '연결 형태 수정',
|
||||
executeSelectedQuery: '선택한 쿼리 실행',
|
||||
defaultCopyType: '기본 복사 유형',
|
||||
showTableSize: '사이드바에 테이블 크기 표시',
|
||||
@@ -506,4 +506,4 @@ export const koKR = {
|
||||
fuel: '연료',
|
||||
vin: '차량식별번호'
|
||||
}
|
||||
};
|
||||
};
|
||||
|
530
src/renderer/i18n/nl-NL.ts
Normal file
530
src/renderer/i18n/nl-NL.ts
Normal file
@@ -0,0 +1,530 @@
|
||||
export const nlNL = {
|
||||
word: {
|
||||
edit: 'Bewerk',
|
||||
save: 'Opslaan',
|
||||
close: 'Sluiten',
|
||||
delete: 'Verwijder',
|
||||
confirm: 'Bevestig',
|
||||
cancel: 'Annuleer',
|
||||
send: 'Verstuur',
|
||||
connectionName: 'Naam verbinding',
|
||||
client: 'Client',
|
||||
hostName: 'Servernaam',
|
||||
port: 'Poort',
|
||||
user: 'Gebruiker',
|
||||
password: 'Wachtwoord',
|
||||
credentials: 'Inloggegevens',
|
||||
connect: 'Verbind',
|
||||
connected: 'Verbonden',
|
||||
disconnect: 'Verbreek verbinding',
|
||||
disconnected: 'Verbinding verbroken',
|
||||
refresh: 'Ververs',
|
||||
settings: 'Instellingen',
|
||||
general: 'Algemeen',
|
||||
themes: 'Thema\'s',
|
||||
update: 'Bijwerken',
|
||||
about: 'Over',
|
||||
language: 'Taal',
|
||||
version: 'Versie',
|
||||
donate: 'Doneer',
|
||||
run: 'Uitvoeren',
|
||||
schema: 'Schema',
|
||||
results: 'Resultaten',
|
||||
size: 'Grootte',
|
||||
seconds: 'Seconden',
|
||||
type: 'Type',
|
||||
mimeType: 'Mime-Type',
|
||||
download: 'Download',
|
||||
add: 'Toevoegen',
|
||||
data: 'Data',
|
||||
properties: 'Eigenschappen',
|
||||
insert: 'Invoegen',
|
||||
connecting: 'Verbinden',
|
||||
name: 'Naam',
|
||||
collation: 'Collation',
|
||||
clear: 'Wis',
|
||||
options: 'Opties',
|
||||
autoRefresh: 'Automatisch verversen',
|
||||
indexes: 'Indexes',
|
||||
foreignKeys: 'Foreign keys',
|
||||
length: 'Lengte',
|
||||
unsigned: 'Unsigned',
|
||||
default: 'Standaard',
|
||||
comment: 'Opmerking',
|
||||
key: 'Key | Keys',
|
||||
order: 'Sorteer',
|
||||
expression: 'Expression',
|
||||
autoIncrement: 'Automatisch ophogen',
|
||||
engine: 'Engine',
|
||||
field: 'Veld | Velden',
|
||||
approximately: 'Ongeveer',
|
||||
total: 'Totaal',
|
||||
table: 'Tabel',
|
||||
discard: 'Discard',
|
||||
stay: 'Stay',
|
||||
author: 'Auteur',
|
||||
light: 'Licht',
|
||||
dark: 'Donker',
|
||||
autoCompletion: 'Auto Completion',
|
||||
application: 'Applicatie',
|
||||
editor: 'Editor',
|
||||
view: 'View',
|
||||
definer: 'Definer',
|
||||
algorithm: 'Algoritme',
|
||||
trigger: 'Trigger | Triggers',
|
||||
storedRoutine: 'Stored routine | Stored routines',
|
||||
scheduler: 'Scheduler | Schedulers',
|
||||
event: 'Event',
|
||||
parameters: 'Parameters',
|
||||
function: 'Functiw | Functies',
|
||||
deterministic: 'Deterministic',
|
||||
context: 'Context',
|
||||
export: 'Export',
|
||||
import: 'Import',
|
||||
returns: 'Returns',
|
||||
timing: 'Timing',
|
||||
state: 'State',
|
||||
execution: 'Execution',
|
||||
starts: 'Starts',
|
||||
ends: 'Ends',
|
||||
ssl: 'SSL',
|
||||
privateKey: 'Private key',
|
||||
certificate: 'Certificaat',
|
||||
caCertificate: 'CA certificaat',
|
||||
ciphers: 'Encryptiesleutels',
|
||||
upload: 'Upload',
|
||||
browse: 'Blader',
|
||||
faker: 'Faker',
|
||||
content: 'Content',
|
||||
cut: 'Cut',
|
||||
copy: 'Kopieer',
|
||||
paste: 'Plak',
|
||||
tools: 'Gereedschap',
|
||||
variables: 'Variabelen',
|
||||
processes: 'Processes',
|
||||
database: 'Database',
|
||||
scratchpad: 'Kladblok',
|
||||
array: 'Array',
|
||||
changelog: 'Changelog',
|
||||
format: 'Format',
|
||||
sshTunnel: 'SSH tunnel',
|
||||
structure: 'Structuur',
|
||||
small: 'Klein',
|
||||
medium: 'Medium',
|
||||
large: 'Groot',
|
||||
row: 'Rij | Rijen',
|
||||
cell: 'Cel | Cellen',
|
||||
triggerFunction: 'Trigger function | Trigger functions',
|
||||
all: 'Alle', // Schema: 'Alle'
|
||||
duplicate: 'Dupliceer',
|
||||
routine: 'Routine',
|
||||
new: 'Nieuw',
|
||||
history: 'Geschiedenis',
|
||||
select: 'Selecteer',
|
||||
passphrase: 'Passphrase',
|
||||
filter: 'Filter',
|
||||
change: 'Wijzig',
|
||||
views: 'Views',
|
||||
triggers: 'Triggers',
|
||||
routines: 'Routines',
|
||||
functions: 'Functions',
|
||||
schedulers: 'Schedulers',
|
||||
includes: 'Includes',
|
||||
drop: 'Drop',
|
||||
completed: 'Completed',
|
||||
aborted: 'Aborted',
|
||||
disabled: 'Uitgeschakeld',
|
||||
enable: 'Inschakelen',
|
||||
disable: 'Uitschakelen',
|
||||
commit: 'Commit',
|
||||
rollback: 'Rollback',
|
||||
connectionString: 'Connection string',
|
||||
contributors: 'Contributors',
|
||||
pin: 'Vastzetten',
|
||||
unpin: 'Losmaken',
|
||||
console: 'Console',
|
||||
shortcuts: 'Sneltoetsen',
|
||||
folder: 'Folder | Folders',
|
||||
appearance: 'Uiterlijk',
|
||||
color: 'Kleur',
|
||||
label: 'Label',
|
||||
icon: 'Pictogram',
|
||||
resultsTable: 'Resultaten tabel',
|
||||
ddl: 'DDL',
|
||||
none: 'Geen',
|
||||
singleQuote: 'Enkel aanhalingsteken',
|
||||
doubleQuote: 'Dubbel aanhalingsteken'
|
||||
},
|
||||
message: {
|
||||
appWelcome: 'Welkom bij Antares SQL Client!',
|
||||
appFirstStep: 'Eerste stap: maak een nieuwe databaseverbinding.',
|
||||
addConnection: 'Voeg verbinding toe',
|
||||
createConnection: 'Maak verbinding',
|
||||
createNewConnection: 'Maak nieuwe connection',
|
||||
askCredentials: 'Vraag om credentials',
|
||||
testConnection: 'Test verbinding',
|
||||
editConnection: 'Bewerk verbinding',
|
||||
deleteConnection: 'Verwijder verbinding',
|
||||
deleteConfirm: 'Bevestig het verwijderen van',
|
||||
connectionSuccessfullyMade: 'Connection successfully made!',
|
||||
madeWithJS: 'Gemaakt met 💛 en JavaScript!',
|
||||
checkForUpdates: 'Controleer op updates',
|
||||
noUpdatesAvailable: 'Geen updates beschikbaar',
|
||||
checkingForUpdate: 'Aan het controleren op updates',
|
||||
checkFailure: 'Controle gefaald, probeer het later opnieuw',
|
||||
updateAvailable: 'Update beschikbaar',
|
||||
downloadingUpdate: 'Update wordt gedownload',
|
||||
updateDownloaded: 'Update gedownload',
|
||||
restartToInstall: 'Herstart Antares om te installeren',
|
||||
unableEditFieldWithoutPrimary: 'Unable to edit a field without a primary key in result set',
|
||||
editCell: 'Wijzig cell',
|
||||
deleteRows: 'Verwijder rij | Verwijder {count} rijen',
|
||||
confirmToDeleteRows: 'Do you confirm to delete one row? | Do you confirm to delete {count} rows?',
|
||||
notificationsTimeout: 'Notifications timeout',
|
||||
uploadFile: 'Upload bestand',
|
||||
addNewRow: 'Voeg een nieuwe rij toe',
|
||||
numberOfInserts: 'Aantal inserts',
|
||||
openNewTab: 'Open een nieuw tabblad',
|
||||
affectedRows: 'Affected rows',
|
||||
createNewDatabase: 'Maak nieuwe Database',
|
||||
databaseName: 'Database naam',
|
||||
serverDefault: 'Server default',
|
||||
deleteDatabase: 'Verwijder database',
|
||||
editDatabase: 'Bewerk database',
|
||||
clearChanges: 'Wis wijzigingen',
|
||||
addNewField: 'Voeg nieuw veld toe',
|
||||
manageIndexes: 'Beheer indexes',
|
||||
manageForeignKeys: 'Beheer foreign keys',
|
||||
allowNull: 'Sta NULL toe',
|
||||
zeroFill: 'Zero fill',
|
||||
customValue: 'Aangepaste waarde',
|
||||
onUpdate: 'On update',
|
||||
deleteField: 'Verwijder veld',
|
||||
createNewIndex: 'Maak nieuwe index',
|
||||
addToIndex: 'Voeg toe aan index',
|
||||
createNewTable: 'Maak nieuwe table',
|
||||
emptyTable: 'Maak tabel leeg',
|
||||
deleteTable: 'Verwijder tabel',
|
||||
emptyConfirm: 'Do you confirm to empty',
|
||||
unsavedChanges: 'Onopgeslagen wijzigingen',
|
||||
discardUnsavedChanges: 'Je hebt onopgeslagen wijzigingen. Closing this tab these changes will be discarded.',
|
||||
thereAreNoIndexes: 'Er zijn geen indexes',
|
||||
thereAreNoForeign: 'Er zijn geen foreign keys',
|
||||
createNewForeign: 'Maak nieuwe foreign key',
|
||||
referenceTable: 'Ref. table',
|
||||
referenceField: 'Ref. field',
|
||||
foreignFields: 'Foreign fields',
|
||||
invalidDefault: 'Ongeldige standaardwaarde',
|
||||
onDelete: 'On delete',
|
||||
applicationTheme: 'Applicatie thema',
|
||||
editorTheme: 'Editor Theme',
|
||||
wrapLongLines: 'Wrap long lines',
|
||||
selectStatement: 'Select statement',
|
||||
triggerStatement: 'Trigger statement',
|
||||
sqlSecurity: 'SQL security',
|
||||
updateOption: 'Update option',
|
||||
deleteView: 'Verwijder view',
|
||||
createNewView: 'Maak nieuwe view',
|
||||
deleteTrigger: 'Verwijder trigger',
|
||||
createNewTrigger: 'Maak nieuwe trigger',
|
||||
currentUser: 'Huidige gebruiker',
|
||||
routineBody: 'Routine body',
|
||||
dataAccess: 'Data access',
|
||||
thereAreNoParameters: 'Er zijn geen parameters',
|
||||
createNewParameter: 'Maak nieuwe parameter',
|
||||
createNewRoutine: 'Maak nieuwe stored routine',
|
||||
deleteRoutine: 'Verwijder stored routine',
|
||||
functionBody: 'Function body',
|
||||
createNewFunction: 'Maak nieuwe function',
|
||||
deleteFunction: 'Verwijder function',
|
||||
schedulerBody: 'Scheduler body',
|
||||
createNewScheduler: 'Maak nieuwe scheduler',
|
||||
deleteScheduler: 'Verwijder scheduler',
|
||||
preserveOnCompletion: 'Preserve on completion',
|
||||
enableSsl: 'SSL inschakelen',
|
||||
manualValue: 'Handmatige waarde',
|
||||
tableFiller: 'Table Filler',
|
||||
fakeDataLanguage: 'Fake data language',
|
||||
searchForElements: 'Zoek naar elementen',
|
||||
selectAll: 'Selecteer alles',
|
||||
queryDuration: 'Query duration',
|
||||
includeBetaUpdates: 'Include beta updates',
|
||||
setNull: 'Zet op NULL',
|
||||
processesList: 'Proceslijst',
|
||||
processInfo: 'Procesinformatie',
|
||||
manageUsers: 'Beheer gebruikers',
|
||||
createNewSchema: 'Maak nieuw schema',
|
||||
schemaName: 'Naam schema',
|
||||
editSchema: 'Bewerk schema',
|
||||
deleteSchema: 'Verwijder schema',
|
||||
markdownSupported: 'Markdown wordt ondersteund',
|
||||
plantATree: 'Plant een boom',
|
||||
dataTabPageSize: 'DATA tab page size',
|
||||
enableSsh: 'SSH inschakelen',
|
||||
pageNumber: 'Paginanummer',
|
||||
duplicateTable: 'Dupliceer table',
|
||||
noOpenTabs: 'There are no open tabs, navigate on the left bar or:',
|
||||
noSchema: 'Geen schema',
|
||||
restorePreviousSession: 'Herstel vorige sessie',
|
||||
runQuery: 'Run query',
|
||||
thereAreNoTableFields: 'There are no table fields',
|
||||
newTable: 'Nieuwe table',
|
||||
newView: 'Nieuwe view',
|
||||
newTrigger: 'Nieuwe trigger',
|
||||
newRoutine: 'Nieuwe routine',
|
||||
newFunction: 'Nieuwe function',
|
||||
newScheduler: 'Nieuwe scheduler',
|
||||
newTriggerFunction: 'Nieuwe trigger function',
|
||||
thereIsNoQueriesYet: 'There is no queries yet',
|
||||
searchForQueries: 'Search for queries',
|
||||
killProcess: 'Sluit proces af',
|
||||
closeTab: 'Sluit tabblad',
|
||||
exportSchema: 'Exporteer schema',
|
||||
importSchema: 'Importeer schema',
|
||||
directoryPath: 'Directory path',
|
||||
newInsertStmtEvery: 'New INSERT statement every',
|
||||
processingTableExport: 'Verwerken {table}',
|
||||
fetchingTableExport: 'Ophalen data van {table} data',
|
||||
writingTableExport: 'Writing {table} data',
|
||||
checkAllTables: 'Selecteer alle tabellen',
|
||||
uncheckAllTables: 'Deselecteer alle tabellen',
|
||||
goToDownloadPage: 'Ga naar de downloadpagina',
|
||||
readOnlyMode: 'Alleen lezen modus',
|
||||
killQuery: 'Kill query',
|
||||
insertRow: 'Rij invoegen | Rijen invoegen',
|
||||
commitMode: 'Commit modus',
|
||||
autoCommit: 'Automatische commit',
|
||||
manualCommit: 'Handmatige commit',
|
||||
actionSuccessful: '{action} succesvol',
|
||||
importQueryErrors: 'Waarschuwing: {n} fout is opgetreden | Waarschuwing: {n} fouten opgetreden',
|
||||
executedQueries: '{n} query uitgevoerd | {n} queries uitgevoerd',
|
||||
outputFormat: 'Uitvoerformaat',
|
||||
singleFile: 'Enkel {ext}-bestand',
|
||||
zipCompressedFile: 'ZIP gecomprimeerd {ext}-bestand',
|
||||
disableBlur: 'Vervagen uitschakelen',
|
||||
untrustedConnection: 'Niet vertrouwde verbinding',
|
||||
missingOrIncompleteTranslation: 'Missing or incomplete translation?',
|
||||
findOutHowToContribute: 'Ontdek hoe je kunt bijdragen',
|
||||
disableFKChecks: 'Foreign key checks uitschakelen',
|
||||
allConnections: 'Alle verbindingen',
|
||||
searchForConnections: 'Search for connections',
|
||||
disableScratchpad: 'Kladblok uitschakelen',
|
||||
reportABug: 'Bug melden',
|
||||
nextTab: 'Volgende tabblad',
|
||||
previousTab: 'Vorige tabblad',
|
||||
selectTabNumber: 'Selecteer tabblad nummer {param}',
|
||||
toggleConsole: 'Toggle console',
|
||||
addShortcut: 'Voeg snelkoppeling toe',
|
||||
editShortcut: 'Bewerk snelkoppeling',
|
||||
deleteShortcut: 'Verwijder snelkoppeling',
|
||||
restoreDefaults: 'Herstel standaardwaarden',
|
||||
restoreDefaultsQuestion: 'Weet je zeker dat je de standaardwaarden wilt herstellen?',
|
||||
registerAShortcut: 'Register a shortcut',
|
||||
invalidShortcutMessage: 'Invalid combination, continue to type',
|
||||
shortcutAlreadyExists: 'Snelkoppeling bestaat al',
|
||||
saveContent: 'Save content',
|
||||
openAllConnections: 'Open all connections',
|
||||
openSettings: 'Open instellingen',
|
||||
openScratchpad: 'Open kladblok',
|
||||
runOrReload: 'Run or reload',
|
||||
formatQuery: 'Formatteer query',
|
||||
queryHistory: 'Query geschiedenis',
|
||||
clearQuery: 'Wis query',
|
||||
openFilter: 'Open filter',
|
||||
nextResultsPage: 'Volgende resultaatpagina',
|
||||
previousResultsPage: 'Vorige resultaatpagina',
|
||||
fillCell: 'Vul cel',
|
||||
editFolder: 'Wijzig folder',
|
||||
folderName: 'Foldernaam',
|
||||
deleteFolder: 'Verwijder folder',
|
||||
editConnectionAppearance: 'Edit connection appearance',
|
||||
executeSelectedQuery: 'Execute selected query',
|
||||
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: 'Zoek naar schemas',
|
||||
switchSearchMethod: 'Switch search method',
|
||||
noResultsPresent: 'Geen resultaten beschikbaar',
|
||||
sqlExportOptions: 'SQL export options',
|
||||
targetTable: 'Doeltabel',
|
||||
phpArray: 'PHP array',
|
||||
closeAllTabs: 'Sluit alle tabbladen',
|
||||
closeOtherTabs: 'Sluit overige tabbladen',
|
||||
closeTabsToLeft: 'Sluit tabbladen naar links',
|
||||
closeTabsToRight: 'Sluit tabbladen naar rechts',
|
||||
switchDatabase: 'Wissel van database',
|
||||
csvExportOptions: 'CSV exportinstellingen',
|
||||
csvFieldDelimiter: 'Scheidingsteken woorden',
|
||||
csvLinesTerminator: 'Scheidingsteken regels',
|
||||
csvStringDelimiter: 'Scheidingsteken strings',
|
||||
csvIncludeHeader: 'Inclusief kopregel',
|
||||
expandSettingsBar: 'Favorietenbalk uitvouwen',
|
||||
collapseSettingsBar: 'Favorietenbalk uitvouwen',
|
||||
searchConnections: 'Doorzoek favorieten'
|
||||
},
|
||||
faker: {
|
||||
address: 'Address',
|
||||
commerce: 'Commerce',
|
||||
company: 'Company',
|
||||
database: 'Database',
|
||||
date: 'Date',
|
||||
finance: 'Finance',
|
||||
git: 'Git',
|
||||
hacker: 'Hacker',
|
||||
internet: 'Internet',
|
||||
lorem: 'Lorem',
|
||||
name: 'Name',
|
||||
music: 'Music',
|
||||
phone: 'Phone',
|
||||
random: 'Random',
|
||||
system: 'System',
|
||||
time: 'Time',
|
||||
vehicle: 'Vehicle',
|
||||
zipCode: 'Zip code',
|
||||
zipCodeByState: 'Zip code by state',
|
||||
city: 'City',
|
||||
cityPrefix: 'City prefix',
|
||||
citySuffix: 'City suffix',
|
||||
streetName: 'Street name',
|
||||
streetAddress: 'Street address',
|
||||
streetSuffix: 'Street suffix',
|
||||
streetPrefix: 'Street prefix',
|
||||
secondaryAddress: 'Secondary address',
|
||||
county: 'County',
|
||||
country: 'Country',
|
||||
countryCode: 'Country code',
|
||||
state: 'State',
|
||||
stateAbbr: 'State abbreviation',
|
||||
latitude: 'Latitude',
|
||||
longitude: 'Longitude',
|
||||
direction: 'Direction',
|
||||
cardinalDirection: 'Cardinal direction',
|
||||
ordinalDirection: 'Ordinal direction',
|
||||
nearbyGPSCoordinate: 'Nearby GPS coordinate',
|
||||
timeZone: 'Time zone',
|
||||
color: 'Color',
|
||||
department: 'Department',
|
||||
productName: 'Product name',
|
||||
price: 'Price',
|
||||
productAdjective: 'Product adjective',
|
||||
productMaterial: 'Product material',
|
||||
product: 'Product',
|
||||
productDescription: 'Product description',
|
||||
suffixes: 'Suffixes',
|
||||
companyName: 'Company name',
|
||||
companySuffix: 'Company suffix',
|
||||
catchPhrase: 'Catch phrase',
|
||||
bs: 'BS',
|
||||
catchPhraseAdjective: 'Catch phrase adjective',
|
||||
catchPhraseDescriptor: 'Catch phrase descriptor',
|
||||
catchPhraseNoun: 'Catch phrase noun',
|
||||
bsAdjective: 'BS adjective',
|
||||
bsBuzz: 'BS buzz',
|
||||
bsNoun: 'BS noun',
|
||||
column: 'Column',
|
||||
type: 'Type',
|
||||
collation: 'Collation',
|
||||
engine: 'Engine',
|
||||
past: 'Past',
|
||||
now: 'Now',
|
||||
future: 'Future',
|
||||
between: 'Between',
|
||||
recent: 'Recent',
|
||||
soon: 'Soon',
|
||||
month: 'Month',
|
||||
weekday: 'Weekday',
|
||||
account: 'Account',
|
||||
accountName: 'Account name',
|
||||
routingNumber: 'Routing number',
|
||||
mask: 'Mask',
|
||||
amount: 'Amount',
|
||||
transactionType: 'Transaction type',
|
||||
currencyCode: 'Currency code',
|
||||
currencyName: 'Currency name',
|
||||
currencySymbol: 'Currency symbol',
|
||||
bitcoinAddress: 'Bitcoin address',
|
||||
litecoinAddress: 'Litecoin address',
|
||||
creditCardNumber: 'Credit card number',
|
||||
creditCardCVV: 'Credit card CVV',
|
||||
ethereumAddress: 'Ethereum address',
|
||||
iban: 'IBAN',
|
||||
bic: 'BIC',
|
||||
transactionDescription: 'Transaction description',
|
||||
branch: 'Branch',
|
||||
commitEntry: 'Commit entry',
|
||||
commitMessage: 'Commit message',
|
||||
commitSha: 'Commit SHA',
|
||||
shortSha: 'Short SHA',
|
||||
abbreviation: 'Abbreviation',
|
||||
adjective: 'Adjective',
|
||||
noun: 'Noun',
|
||||
verb: 'Verb',
|
||||
ingverb: 'Ingverb',
|
||||
phrase: 'Phrase',
|
||||
avatar: 'Avatar',
|
||||
email: 'Email',
|
||||
exampleEmail: 'Example email',
|
||||
userName: 'Username',
|
||||
protocol: 'Protocol',
|
||||
url: 'Url',
|
||||
domainName: 'Domain name',
|
||||
domainSuffix: 'Domain suffix',
|
||||
domainWord: 'Domain word',
|
||||
ip: 'Ip',
|
||||
ipv6: 'Ipv6',
|
||||
userAgent: 'User agent',
|
||||
mac: 'Mac',
|
||||
password: 'Password',
|
||||
word: 'Word',
|
||||
words: 'Words',
|
||||
sentence: 'Sentence',
|
||||
slug: 'Slug',
|
||||
sentences: 'Sentences',
|
||||
paragraph: 'Paragraph',
|
||||
paragraphs: 'Paragraphs',
|
||||
text: 'Text',
|
||||
lines: 'Lines',
|
||||
genre: 'Genre',
|
||||
firstName: 'First name',
|
||||
lastName: 'Last name',
|
||||
middleName: 'Middle name',
|
||||
findName: 'Full name',
|
||||
jobTitle: 'Job title',
|
||||
gender: 'Gender',
|
||||
prefix: 'Prefix',
|
||||
suffix: 'Suffix',
|
||||
title: 'Title',
|
||||
jobDescriptor: 'Job descriptor',
|
||||
jobArea: 'Job area',
|
||||
jobType: 'Job type',
|
||||
phoneNumber: 'Phone number',
|
||||
phoneNumberFormat: 'Phone number format',
|
||||
phoneFormats: 'Phone formats',
|
||||
number: 'Number',
|
||||
float: 'Float',
|
||||
arrayElement: 'Array element',
|
||||
arrayElements: 'Array elements',
|
||||
objectElement: 'Object element',
|
||||
uuid: 'Uuid',
|
||||
boolean: 'Boolean',
|
||||
image: 'Image',
|
||||
locale: 'Locale',
|
||||
alpha: 'Alpha',
|
||||
alphaNumeric: 'Alphanumeric',
|
||||
hexaDecimal: 'Hexadecimal',
|
||||
fileName: 'File name',
|
||||
commonFileName: 'Common file name',
|
||||
mimeType: 'Mime type',
|
||||
commonFileType: 'Common file type',
|
||||
commonFileExt: 'Common file extension',
|
||||
fileType: 'File type',
|
||||
fileExt: 'File extension',
|
||||
directoryPath: 'Directory path',
|
||||
filePath: 'File path',
|
||||
semver: 'Semver',
|
||||
manufacturer: 'Manufacturer',
|
||||
model: 'Model',
|
||||
fuel: 'Fuel',
|
||||
vin: 'Vin'
|
||||
}
|
||||
};
|
@@ -139,12 +139,12 @@ export const ptBR = {
|
||||
rollback: 'Reverter',
|
||||
connectionString: 'String da conexão',
|
||||
contributors: 'Contribuintes',
|
||||
pin: 'Fixar',
|
||||
unpin: 'Desafixar',
|
||||
console: 'Console',
|
||||
pin: 'Fixar',
|
||||
unpin: 'Desafixar',
|
||||
console: 'Console',
|
||||
shortcuts: 'Atalhos',
|
||||
folder: 'Pasta | Pastas',
|
||||
appearence: 'Aparência',
|
||||
appearance: 'Aparência',
|
||||
color: 'Cor',
|
||||
label: 'Rótulo',
|
||||
icon: 'Icone'
|
||||
@@ -159,7 +159,7 @@ export const ptBR = {
|
||||
testConnection: 'Testar Conexão',
|
||||
editConnection: 'Editar Conexão',
|
||||
deleteConnection: 'Apagar Conexão',
|
||||
deleteCorfirm: 'Você confirma o cancelamento de',
|
||||
deleteConfirm: 'Você confirma o cancelamento de',
|
||||
connectionSuccessfullyMade: 'Conexão feita com sucesso!',
|
||||
madeWithJS: 'Feito com 💛 e JavaScript!',
|
||||
checkForUpdates: 'Verificar se há novas atualizações',
|
||||
@@ -199,7 +199,7 @@ export const ptBR = {
|
||||
createNewTable: 'Criar nova tabela',
|
||||
emptyTable: 'Tabela vazia',
|
||||
deleteTable: 'Apagar tabela',
|
||||
emptyCorfirm: 'Você confirma o esvaziamento',
|
||||
emptyConfirm: 'Você confirma o esvaziamento',
|
||||
unsavedChanges: 'Alterações não salvas',
|
||||
discardUnsavedChanges: 'Você tem algumas alterações não salvas. Ao sair desta guia, essas alterações serão descartadas.',
|
||||
thereAreNoIndexes: 'Não há índices',
|
||||
@@ -258,7 +258,7 @@ export const ptBR = {
|
||||
duplicateTable: 'Duplicar tabela',
|
||||
noOpenTabs: 'Nenhuma aba aberta, navege na barra lateral ou:',
|
||||
noSchema: 'Nenhum banco de dados',
|
||||
restorePreviourSession: 'Restaurar sessão anterior',
|
||||
restorePreviousSession: 'Restaurar sessão anterior',
|
||||
runQuery: 'Executar Query',
|
||||
thereAreNoTableFields: 'Nenhum campo na tabela',
|
||||
newTable: 'Nova tabela',
|
||||
@@ -275,9 +275,9 @@ export const ptBR = {
|
||||
exportSchema: 'Exportar banco de dados',
|
||||
importSchema: 'Importar banco de dados',
|
||||
directoryPath: 'Caminho da pasta',
|
||||
newInserStmtEvery: 'Nova query INSERT',
|
||||
newInsertStmtEvery: 'Nova query INSERT',
|
||||
processingTableExport: 'Processando {table}',
|
||||
fechingTableExport: 'Carregando dados da tabela {table}',
|
||||
fetchingTableExport: 'Carregando dados da tabela {table}',
|
||||
writingTableExport: 'Escrevendo dados na tabela {table}',
|
||||
checkAllTables: 'Marcar todas as tabelas',
|
||||
uncheckAllTables: 'Desmarcar todas as tabelas',
|
||||
@@ -291,46 +291,46 @@ export const ptBR = {
|
||||
actionSuccessful: '{action} teve sucesso',
|
||||
importQueryErrors: 'Aviso: ocorreu {n} erro | Aviso: ocorreram {n} erros',
|
||||
executedQueries: '{n} consulta executada | {n} consultas executadas',
|
||||
ourputFormat: 'Formato da saída',
|
||||
outputFormat: 'Formato da saída',
|
||||
singleFile: 'Arquivo {ext} único',
|
||||
zipCompressedFile: 'Arquivo compactado {ext} ZIP',
|
||||
disableBlur: 'Desabilitar Blur',
|
||||
untrustedConnection: 'Conexão insegura',
|
||||
missingOrIncompleteTranslation: 'Tradução incorreta ou incompleta?',
|
||||
findOutHowToContribute: 'Saiba como contribuir',
|
||||
disableFKChecks: 'Desativar verificação de chave estrangeira',
|
||||
allConnections: 'Todas as conexões',
|
||||
searchForConnections: 'Procurar por conexões',
|
||||
disableScratchpad: 'Desativar bloco de notas',
|
||||
untrustedConnection: 'Conexão insegura',
|
||||
missingOrIncompleteTranslation: 'Tradução incorreta ou incompleta?',
|
||||
findOutHowToContribute: 'Saiba como contribuir',
|
||||
disableFKChecks: 'Desativar verificação de chave estrangeira',
|
||||
allConnections: 'Todas as conexões',
|
||||
searchForConnections: 'Procurar por conexões',
|
||||
disableScratchpad: 'Desativar bloco de notas',
|
||||
reportABug: 'Reportar um problema',
|
||||
nextTab: 'Próxima guia',
|
||||
previousTab: 'Guia anterior',
|
||||
selectTabNumber: 'Selecionar guia número {param}',
|
||||
toggleConsole: 'Alterar console',
|
||||
addShortcut: 'Adicionar Atalho',
|
||||
editShortcut: 'Editar atalho',
|
||||
deleteShortcut: 'Delete shortcut',
|
||||
restoreDefaults: 'Restaurar padrões',
|
||||
restoreDefaultsQuestion: 'Você confirma que quer restaurar os valores padrões?',
|
||||
registerAShortcut: 'Registrar um atalho',
|
||||
invalidShortcutMessage: 'Combinação inválida, continue digitando',
|
||||
shortcutAlreadyExists: 'O atalho já existe',
|
||||
saveContent: 'Salvar conteúdo',
|
||||
openAllConnections: 'Abrir todas as conexões',
|
||||
openSettings: 'Abrir Configurações',
|
||||
openScratchpad: 'Abrir scratchpad',
|
||||
runOrReload: 'Executar ou recarregar',
|
||||
formatQuery: 'Formatar consulta',
|
||||
queryHistory: 'Histórico de consulta',
|
||||
clearQuery: 'Limpar consulta',
|
||||
openFilter: 'Abrir Filtro',
|
||||
nextResultsPage: 'Próxima página de resultados',
|
||||
nextTab: 'Próxima guia',
|
||||
previousTab: 'Guia anterior',
|
||||
selectTabNumber: 'Selecionar guia número {param}',
|
||||
toggleConsole: 'Alterar console',
|
||||
addShortcut: 'Adicionar Atalho',
|
||||
editShortcut: 'Editar atalho',
|
||||
deleteShortcut: 'Delete shortcut',
|
||||
restoreDefaults: 'Restaurar padrões',
|
||||
restoreDefaultsQuestion: 'Você confirma que quer restaurar os valores padrões?',
|
||||
registerAShortcut: 'Registrar um atalho',
|
||||
invalidShortcutMessage: 'Combinação inválida, continue digitando',
|
||||
shortcutAlreadyExists: 'O atalho já existe',
|
||||
saveContent: 'Salvar conteúdo',
|
||||
openAllConnections: 'Abrir todas as conexões',
|
||||
openSettings: 'Abrir Configurações',
|
||||
openScratchpad: 'Abrir scratchpad',
|
||||
runOrReload: 'Executar ou recarregar',
|
||||
formatQuery: 'Formatar consulta',
|
||||
queryHistory: 'Histórico de consulta',
|
||||
clearQuery: 'Limpar consulta',
|
||||
openFilter: 'Abrir Filtro',
|
||||
nextResultsPage: 'Próxima página de resultados',
|
||||
previousResultsPage: 'Página de resultados anterior',
|
||||
fillCell: 'Preencher Célula',
|
||||
editFolder: 'Editar Pasta',
|
||||
folderName: 'Nome da pasta',
|
||||
deleteFolder: 'Apagar Pasta',
|
||||
editConnectionAppearence: 'Editar aparência da conexão'
|
||||
editConnectionAppearance: 'Editar aparência da conexão'
|
||||
},
|
||||
faker: {
|
||||
address: 'Endereço',
|
||||
|
@@ -14,12 +14,12 @@ export const ruRU = {
|
||||
user: 'Пользователь',
|
||||
password: 'Пароль',
|
||||
credentials: 'Полномочия',
|
||||
connect: 'Подключить',
|
||||
connect: 'Подключиться',
|
||||
connected: 'Подключено',
|
||||
disconnect: 'Отключить',
|
||||
disconnect: 'Отключиться',
|
||||
disconnected: 'Отключено',
|
||||
refresh: 'Обновить',
|
||||
settings: 'Настройка',
|
||||
settings: 'Настройки',
|
||||
general: 'Общие',
|
||||
themes: 'Темы',
|
||||
update: 'Обновить',
|
||||
@@ -27,9 +27,9 @@ export const ruRU = {
|
||||
language: 'Язык',
|
||||
version: 'Версия',
|
||||
donate: 'Пожертвование',
|
||||
run: 'Запуск',
|
||||
run: 'Выполнить',
|
||||
schema: 'Схема',
|
||||
results: 'Результаты',
|
||||
results: 'Отображено',
|
||||
size: 'Размер',
|
||||
seconds: 'Секунды',
|
||||
type: 'Тип',
|
||||
@@ -42,17 +42,17 @@ export const ruRU = {
|
||||
connecting: 'Соединение',
|
||||
name: 'Название',
|
||||
collation: 'Сопоставление',
|
||||
clear: 'Очистить',
|
||||
clear: 'Удалить',
|
||||
options: 'Опции',
|
||||
autoRefresh: 'Авто-обновление',
|
||||
indexes: 'Индексы',
|
||||
foreignKeys: 'Внешние ключи',
|
||||
length: 'Длина',
|
||||
unsigned: 'Неподписанный',
|
||||
unsigned: 'Беззнаковое',
|
||||
default: 'По умолчанию',
|
||||
comment: 'Комментарий',
|
||||
key: 'Ключ | Ключи',
|
||||
order: 'Заказ',
|
||||
order: 'Порядок',
|
||||
expression: 'Выражение',
|
||||
autoIncrement: 'Авто-увеличение',
|
||||
engine: 'Движок',
|
||||
@@ -60,19 +60,19 @@ export const ruRU = {
|
||||
approximately: 'Примерно',
|
||||
total: 'Всего',
|
||||
table: 'Таблица',
|
||||
discard: 'Отказать',
|
||||
discard: 'Отказаться',
|
||||
stay: 'Оставить',
|
||||
author: 'Автор',
|
||||
light: 'Светлая',
|
||||
dark: 'Темная',
|
||||
autoCompletion: 'Авто-дополнение',
|
||||
application: 'Приложение',
|
||||
editor: 'Реадктор',
|
||||
view: 'Просмотр',
|
||||
editor: 'Редактор',
|
||||
view: 'Представление',
|
||||
definer: 'Определитель',
|
||||
algorithm: 'Алгоритм',
|
||||
trigger: 'Триггер | Триггеры',
|
||||
storedRoutine: 'Сохраненная процедура | Сохраненные процедуры',
|
||||
storedRoutine: 'Хранимая процедура | Хранимые процедуры',
|
||||
scheduler: 'Планировщик | Планировщики',
|
||||
event: 'Событие',
|
||||
parameters: 'Параметры',
|
||||
@@ -85,8 +85,8 @@ export const ruRU = {
|
||||
timing: 'Сроки',
|
||||
state: 'Состояние',
|
||||
execution: 'Выполнение',
|
||||
starts: 'Начинает',
|
||||
ends: 'Заканчивает',
|
||||
starts: 'Начало',
|
||||
ends: 'Конец',
|
||||
ssl: 'SSL',
|
||||
privateKey: 'Закрытый ключ',
|
||||
certificate: 'Сертификат',
|
||||
@@ -94,7 +94,7 @@ export const ruRU = {
|
||||
ciphers: 'Шифры',
|
||||
upload: 'Загрузки',
|
||||
browse: 'Обзор',
|
||||
faker: 'Faker',
|
||||
faker: 'Генератор данных',
|
||||
content: 'Содержимое',
|
||||
cut: 'Вырезать',
|
||||
copy: 'Копировать',
|
||||
@@ -106,7 +106,7 @@ export const ruRU = {
|
||||
scratchpad: 'Заметки',
|
||||
array: 'Массив',
|
||||
changelog: 'Журнал изменений',
|
||||
format: 'Формат',
|
||||
format: 'Отформатировать',
|
||||
sshTunnel: 'SSH туннель',
|
||||
structure: 'Структура',
|
||||
small: 'Малый',
|
||||
@@ -117,47 +117,58 @@ export const ruRU = {
|
||||
triggerFunction: 'Функция запуска | Функции запуска',
|
||||
all: 'Все',
|
||||
duplicate: 'Дубликат',
|
||||
routine: 'Порядок',
|
||||
routine: 'Хранимая процедура',
|
||||
new: 'Новый',
|
||||
history: 'История',
|
||||
select: 'Выбрать',
|
||||
passphrase: 'Кодовая фраза',
|
||||
filter: 'Фильтр',
|
||||
change: 'Изменить',
|
||||
views: 'Просмотры',
|
||||
views: 'Представления',
|
||||
triggers: 'Триггеры',
|
||||
routines: 'Порядок',
|
||||
routines: 'Хранимые процедуры',
|
||||
functions: 'Функции',
|
||||
schedulers: 'Планировщики',
|
||||
includes: 'Включает',
|
||||
drop: 'Сбросить',
|
||||
includes: 'Включая',
|
||||
drop: 'Удалить',
|
||||
completed: 'Завершено',
|
||||
aborted: 'Aborted',
|
||||
disabled: 'Прервано',
|
||||
aborted: 'Прервано',
|
||||
disabled: 'Отключено',
|
||||
enable: 'Включить',
|
||||
disable: 'Выключить',
|
||||
commit: 'Подтвердить',
|
||||
rollback: 'Отмена',
|
||||
rollback: 'Откатить',
|
||||
connectionString: 'Строка подключения',
|
||||
contributors: 'Участники'
|
||||
contributors: 'Участники',
|
||||
pin: 'Закрепить',
|
||||
unpin: 'Открепить',
|
||||
console: 'Консоль',
|
||||
shortcuts: 'Горячие клавиши',
|
||||
folder: 'Директория | Директории',
|
||||
appearance: 'Внешний вид',
|
||||
color: 'Цвет',
|
||||
label: 'Метка',
|
||||
icon: 'Иконка',
|
||||
resultsTable: 'Таблица с результатом',
|
||||
ddl: 'DDL'
|
||||
},
|
||||
message: {
|
||||
appWelcome: 'Приветсвуем в SQL клиенте Antares!',
|
||||
appWelcome: 'Приветствуем в SQL клиенте Antares!',
|
||||
appFirstStep: 'Ваш первый шаг: создать новое подключение с БД.',
|
||||
addConnection: 'Добавить подключение',
|
||||
createConnection: 'Создать подключение',
|
||||
createNewConnection: 'Созадть новое подключение',
|
||||
createNewConnection: 'Создать новое подключение',
|
||||
askCredentials: 'Спрашивать учетные данные',
|
||||
testConnection: 'Тестирование подключения',
|
||||
editConnection: 'Редактирование подключения',
|
||||
testConnection: 'Тест подключения',
|
||||
editConnection: 'Редактировать подключение',
|
||||
deleteConnection: 'Удалить подключение',
|
||||
deleteCorfirm: 'Подтверждаете ли вы отмену',
|
||||
deleteConfirm: 'Подтверждаете ли вы удаление',
|
||||
connectionSuccessfullyMade: 'Соединение успешно установлено!',
|
||||
madeWithJS: 'Сделано с 💛 и JavaScript!',
|
||||
checkForUpdates: 'Проверить обновления',
|
||||
noUpdatesAvailable: 'Обновлений не найдено',
|
||||
checkingForUpdate: 'Проверить обновления',
|
||||
checkFailure: 'Проверка не удалась, пожалуйста, попробуйте позже',
|
||||
checkingForUpdate: 'Поиск обновлений',
|
||||
checkFailure: 'Не удалось проверить обновления, пожалуйста, попробуйте позже',
|
||||
updateAvailable: 'Доступно обновление',
|
||||
downloadingUpdate: 'Скачать обновление',
|
||||
updateDownloaded: 'Обновление скачано',
|
||||
@@ -174,10 +185,10 @@ export const ruRU = {
|
||||
affectedRows: 'Задействовано строк',
|
||||
createNewDatabase: 'Создать новую БД',
|
||||
databaseName: 'Название БД',
|
||||
serverDefault: 'Сервер по умолчанию',
|
||||
serverDefault: 'По-умолчанию на сервере',
|
||||
deleteDatabase: 'Удалить БД',
|
||||
editDatabase: 'Редактировать БД',
|
||||
clearChanges: 'Очистить изменения',
|
||||
clearChanges: 'Удалить изменения',
|
||||
addNewField: 'Добавить новое поле',
|
||||
manageIndexes: 'Управление индексами',
|
||||
manageForeignKeys: 'Управление внешними ключами',
|
||||
@@ -189,9 +200,9 @@ export const ruRU = {
|
||||
createNewIndex: 'Создать новый индекс',
|
||||
addToIndex: 'Добавить индекс',
|
||||
createNewTable: 'Создать новую таблицу',
|
||||
emptyTable: 'Пустая таблица',
|
||||
emptyTable: 'Очистить таблицу',
|
||||
deleteTable: 'Удалить таблицу',
|
||||
emptyCorfirm: 'Подтверждаете очистку?',
|
||||
emptyConfirm: 'Подтверждаете очистку?',
|
||||
unsavedChanges: 'Несохраненные изменения',
|
||||
discardUnsavedChanges: 'У вас имеются несохраненные данные. Закрытие этой вкладки приведёт к их отмене.',
|
||||
thereAreNoIndexes: 'Индексов нет',
|
||||
@@ -203,23 +214,23 @@ export const ruRU = {
|
||||
invalidDefault: 'Недопустимое значение',
|
||||
onDelete: 'При удалении',
|
||||
applicationTheme: 'Тема приложения',
|
||||
editorTheme: 'Редактировать Тему',
|
||||
editorTheme: 'Редактировать тему',
|
||||
wrapLongLines: 'Перенос длинных строк',
|
||||
selectStatement: 'Оператор выбора',
|
||||
triggerStatement: 'Оператор триггера',
|
||||
sqlSecurity: 'SQL безопасность',
|
||||
updateOption: 'Опции обновления',
|
||||
deleteView: 'Удалить просмотр',
|
||||
createNewView: 'Создать новый просмотр',
|
||||
deleteView: 'Удалить представление',
|
||||
createNewView: 'Создать новое представление',
|
||||
deleteTrigger: 'Удалить триггер',
|
||||
createNewTrigger: 'Создать новый триггер',
|
||||
currentUser: 'Текущий пользователь',
|
||||
routineBody: 'Routine body',
|
||||
routineBody: 'Тело процедуры',
|
||||
dataAccess: 'Доступ к данным',
|
||||
thereAreNoParameters: 'Там нет никаких параметров',
|
||||
thereAreNoParameters: 'Параметры отсутствуют',
|
||||
createNewParameter: 'Создать новый параметр',
|
||||
createNewRoutine: 'Создание новой сохраненной процедуры',
|
||||
deleteRoutine: 'Удаление сохраненной процедуры',
|
||||
createNewRoutine: 'Создание новой хранимой процедуры',
|
||||
deleteRoutine: 'Удаление хранимой процедуры',
|
||||
functionBody: 'Тело функции',
|
||||
createNewFunction: 'Создать новую функцию',
|
||||
deleteFunction: 'Удалить функцию',
|
||||
@@ -248,49 +259,96 @@ export const ruRU = {
|
||||
dataTabPageSize: 'Размер страницы вкладки ДАННЫЕ',
|
||||
enableSsh: 'Включить SSH',
|
||||
pageNumber: 'Номер страницы',
|
||||
duplicateTable: 'Дубликат таблицы',
|
||||
duplicateTable: 'Клонировать таблицу',
|
||||
noOpenTabs: 'Открытых вкладок нет, перейдите по левой панели или:',
|
||||
noSchema: 'Нет схемы',
|
||||
restorePreviourSession: 'Восстановить предыдущую сессию',
|
||||
runQuery: 'Запуск очереди',
|
||||
restorePreviousSession: 'Восстановить предыдущую сессию',
|
||||
runQuery: 'Выполнить запрос',
|
||||
thereAreNoTableFields: 'В таблице нет полей',
|
||||
newTable: 'Новая таблица',
|
||||
newView: 'Новый просмотр',
|
||||
newView: 'Новое представление',
|
||||
newTrigger: 'Новый триггер',
|
||||
newRoutine: 'New routine',
|
||||
newRoutine: 'Новая хранимая процедура',
|
||||
newFunction: 'Новая функция',
|
||||
newScheduler: 'Новый планировщик',
|
||||
newTriggerFunction: 'Новая функция триггера',
|
||||
thereIsNoQueriesYet: 'Пока нет никаких запросов',
|
||||
thereIsNoQueriesYet: 'Запросы пока отсутствуют',
|
||||
searchForQueries: 'Поиск по запросам',
|
||||
killProcess: 'Убить процесс',
|
||||
closeTab: 'Закрыть вкладку',
|
||||
exportSchema: 'Экспорт схемы',
|
||||
importSchema: 'Импорт схемы',
|
||||
directoryPath: 'Путь к каталогу',
|
||||
newInserStmtEvery: 'New INSERT statement every',
|
||||
newInsertStmtEvery: 'Новый INSERT оператор для каждых',
|
||||
processingTableExport: 'Обработка {table}',
|
||||
fechingTableExport: 'Получение данных с {table}',
|
||||
fetchingTableExport: 'Получение данных из {table}',
|
||||
writingTableExport: 'Запись данных в {table}',
|
||||
checkAllTables: 'Проверить все таблицы',
|
||||
checkAllTables: 'Выбрать у всех таблицы',
|
||||
uncheckAllTables: 'Убрать со всех таблиц',
|
||||
goToDownloadPage: 'Перейти на страницу для загрузки',
|
||||
goToDownloadPage: 'Перейти на страницу загрузки',
|
||||
readOnlyMode: 'Режим только чтение',
|
||||
killQuery: 'Убить запрос',
|
||||
insertRow: 'Вставить строку | Вставить строки',
|
||||
commitMode: 'Режим подтверждения',
|
||||
commitMode: 'Режим подтверждения транзакций',
|
||||
autoCommit: 'Авто-подтверждение',
|
||||
manualCommit: 'Ручное подтверждение',
|
||||
actionSuccessful: '{action} успешно',
|
||||
importQueryErrors: 'Внимание: {n} ошибка возникла | Внимание: {n} ошибок произошло',
|
||||
executedQueries: '{n} запрос выполнен | {n} запросов выполнено',
|
||||
ourputFormat: 'Формат вывода',
|
||||
outputFormat: 'Формат вывода',
|
||||
singleFile: 'Один {ext} файл',
|
||||
zipCompressedFile: 'ZIP сжатие {ext} файла',
|
||||
disableBlur: 'Отключить размытие',
|
||||
untrustedConnection: 'Ненадежное соединение',
|
||||
missingOrIncompleteTranslation: 'Отсутствующий или неполный перевод?',
|
||||
findOutHowToContribute: 'Узнайте, как внести свой вклад'
|
||||
findOutHowToContribute: 'Узнайте, как внести свой вклад',
|
||||
disableFKChecks: 'Отключить проверку внешних ключей',
|
||||
allConnections: 'Все соединения',
|
||||
searchForConnections: 'Поиск соединений',
|
||||
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: 'Удалить директорию',
|
||||
editConnectionAppearance: 'Изменить внешний вид соединения',
|
||||
executeSelectedQuery: 'Выполнить выделенный запрос',
|
||||
defaultCopyType: 'Тип копирования по-умолчанию',
|
||||
showTableSize: 'Показывать размер таблицы в сайдбаре',
|
||||
showTableSizeDescription: 'Только MySQL/MariaDB. Включение этого параметра может повлиять на производительность схемы с большим количеством таблиц.',
|
||||
searchForSchemas: 'Поиск схем',
|
||||
switchSearchMethod: 'Переключить способ поиска',
|
||||
noResultsPresent: 'Данные отсутствуют',
|
||||
sqlExportOptions: 'Опции SQL экспорта',
|
||||
targetTable: 'Целевая таблица',
|
||||
phpArray: 'PHP массив',
|
||||
closeAllTabs: 'Закрыть все вкладки',
|
||||
closeOtherTabs: 'Закрыть остальные вкладки',
|
||||
closeTabsToLeft: 'Закрыть вкладки слева',
|
||||
closeTabsToRight: 'Закрыть вкладки справа'
|
||||
},
|
||||
faker: {
|
||||
address: 'Адрес',
|
||||
@@ -309,7 +367,7 @@ export const ruRU = {
|
||||
random: 'Случайный',
|
||||
system: 'Система',
|
||||
time: 'Время',
|
||||
vehicle: 'Vehicle',
|
||||
vehicle: 'Средство передвижения',
|
||||
zipCode: 'Почтовый код',
|
||||
zipCodeByState: 'Почтовый код города',
|
||||
city: 'Город',
|
||||
@@ -323,8 +381,8 @@ export const ruRU = {
|
||||
county: 'Округ',
|
||||
country: 'Страна',
|
||||
countryCode: 'Код страны',
|
||||
state: 'Штат',
|
||||
stateAbbr: 'Аббревиатура штата',
|
||||
state: 'Область',
|
||||
stateAbbr: 'Аббревиатура области',
|
||||
latitude: 'Широта',
|
||||
longitude: 'Долгота',
|
||||
direction: 'Направление',
|
||||
@@ -336,8 +394,8 @@ export const ruRU = {
|
||||
department: 'Отдел',
|
||||
productName: 'Имя продукта',
|
||||
price: 'Прайс',
|
||||
productAdjective: 'Product adjective',
|
||||
productMaterial: 'Product material',
|
||||
productAdjective: 'Относящееся к продукту',
|
||||
productMaterial: 'Материал продукта',
|
||||
product: 'Продукт',
|
||||
productDescription: 'Описание продукта',
|
||||
suffixes: 'Суфиксы',
|
||||
@@ -356,15 +414,16 @@ export const ruRU = {
|
||||
collation: 'Сопоставление',
|
||||
engine: 'Движок',
|
||||
past: 'Прошлое',
|
||||
now: 'Сейчас',
|
||||
future: 'Будущее',
|
||||
between: 'Между',
|
||||
recent: 'Недавнее',
|
||||
soon: 'Вскоре',
|
||||
month: 'Месяц',
|
||||
weekday: 'Будний день',
|
||||
weekday: 'День недели',
|
||||
account: 'Аккаунт',
|
||||
accountName: 'Имя аккаунта',
|
||||
routingNumber: 'Routing number',
|
||||
routingNumber: 'Номер маршрута',
|
||||
mask: 'Маска',
|
||||
amount: 'Сумма',
|
||||
transactionType: 'Тип транзакции',
|
||||
@@ -380,9 +439,9 @@ export const ruRU = {
|
||||
bic: 'Bic',
|
||||
transactionDescription: 'Описание транзакции',
|
||||
branch: 'Ветка',
|
||||
commitEntry: 'Подтвердить запись',
|
||||
commitMessage: 'Подтвердить сообщение',
|
||||
commitSha: 'Подтвердить SHA',
|
||||
commitEntry: 'Коммит',
|
||||
commitMessage: 'Сообщение коммита',
|
||||
commitSha: 'SHA коммита',
|
||||
shortSha: 'Короткий SHA',
|
||||
abbreviation: 'Сокращение',
|
||||
adjective: 'Прилагательное',
|
||||
@@ -402,21 +461,21 @@ export const ruRU = {
|
||||
ip: 'Ip',
|
||||
ipv6: 'Ipv6',
|
||||
userAgent: 'User agent',
|
||||
mac: 'Мак-адрес',
|
||||
mac: 'MAC-адрес',
|
||||
password: 'Пароль',
|
||||
word: 'Слово',
|
||||
words: 'Слова',
|
||||
sentence: 'Предложение',
|
||||
slug: 'Slug',
|
||||
sentences: 'Sentences',
|
||||
sentences: 'Предложения',
|
||||
paragraph: 'Параграф',
|
||||
paragraphs: 'Параграфы',
|
||||
text: 'Текст',
|
||||
lines: 'Линии',
|
||||
genre: 'Жанр',
|
||||
firstName: 'Фамилия',
|
||||
lastName: 'Имя',
|
||||
middleName: 'Среднее имя',
|
||||
firstName: 'Имя',
|
||||
lastName: 'Фамилия',
|
||||
middleName: 'Отчество',
|
||||
findName: 'Полное имя',
|
||||
jobTitle: 'Название задания',
|
||||
gender: 'Пол',
|
||||
@@ -427,24 +486,24 @@ export const ruRU = {
|
||||
jobArea: 'Область задания',
|
||||
jobType: 'Тип задания',
|
||||
phoneNumber: 'Номер телефона',
|
||||
phoneNumberFormat: 'Формат номера',
|
||||
phoneNumberFormat: 'Формат номера телефона',
|
||||
phoneFormats: 'Формат номеров телефона',
|
||||
number: 'Номер',
|
||||
float: 'Дробное число',
|
||||
arrayElement: 'Элемент массива',
|
||||
arrayElements: 'Элементы массива',
|
||||
objectElement: 'Объект элемента',
|
||||
objectElement: 'Элемент объекта',
|
||||
uuid: 'Uuid',
|
||||
boolean: 'Логический',
|
||||
image: 'Изображение',
|
||||
locale: 'Локаль',
|
||||
alpha: 'Альфа',
|
||||
alphaNumeric: 'Буквенно-Цифровой',
|
||||
alpha: 'Буквенный',
|
||||
alphaNumeric: 'Буквенно-цифровой',
|
||||
hexaDecimal: 'Шестнадцатеричный',
|
||||
fileName: 'Имя файла',
|
||||
commonFileName: 'Общее имя файла',
|
||||
mimeType: 'Mime тип',
|
||||
commonFileType: 'Общий тип файло',
|
||||
mimeType: 'Mime-тип',
|
||||
commonFileType: 'Общий тип файлов',
|
||||
commonFileExt: 'Общее расширение файлов',
|
||||
fileType: 'Тип файла',
|
||||
fileExt: 'Расширение файла',
|
||||
|
@@ -11,5 +11,6 @@ export const localesNames: {[key: string]: string} = {
|
||||
'zh-CN': '简体中文',
|
||||
'ru-RU': 'Русский',
|
||||
'id-ID': 'Bahasa Indonesia',
|
||||
'ko-KR': '한국어'
|
||||
'ko-KR': '한국어',
|
||||
'nl-NL': 'Nederlands'
|
||||
};
|
||||
|
@@ -151,7 +151,7 @@ export const viVN = {
|
||||
testConnection: 'Chạy thử kết nối',
|
||||
editConnection: 'Sửa kết nối',
|
||||
deleteConnection: 'Xoá kết nối',
|
||||
deleteCorfirm: 'Bạn có xác nhận việc hủy bỏ',
|
||||
deleteConfirm: 'Bạn có xác nhận việc hủy bỏ',
|
||||
connectionSuccessfullyMade: 'Kết nối được thực hiện thành công!',
|
||||
madeWithJS: 'Được tạo bằng 💛 và JavaScript!',
|
||||
checkForUpdates: 'Kiểm tra cập nhật',
|
||||
@@ -191,7 +191,7 @@ export const viVN = {
|
||||
createNewTable: 'Tạo bảng mới',
|
||||
emptyTable: 'Bảng trống',
|
||||
deleteTable: 'Xoá bảng',
|
||||
emptyCorfirm: 'Bạn có xác nhận để làm trống không',
|
||||
emptyConfirm: 'Bạn có xác nhận để làm trống không',
|
||||
unsavedChanges: 'Chưa lưu lại thay đổi',
|
||||
discardUnsavedChanges: 'Bạn có một số thay đổi chưa được lưu. Đóng tab này, những thay đổi này sẽ bị huỷ bỏ.',
|
||||
thereAreNoIndexes: 'Không có index',
|
||||
@@ -251,7 +251,7 @@ export const viVN = {
|
||||
duplicateTable: 'Sao chép bản',
|
||||
noOpenTabs: 'Không có tab nào đang mở, điều hướng trên thanh bên trái hoặc:',
|
||||
noSchema: 'Không có schema',
|
||||
restorePreviourSession: 'Khôi phục phiên trước',
|
||||
restorePreviousSession: 'Khôi phục phiên trước',
|
||||
runQuery: 'Chạy truy vấn',
|
||||
thereAreNoTableFields: 'Không có trường bảng',
|
||||
newTable: 'Bảng mới',
|
||||
@@ -268,9 +268,9 @@ export const viVN = {
|
||||
exportSchema: 'Xuất lược đồ',
|
||||
importSchema: 'Nhập lược đồ',
|
||||
directoryPath: 'Đường dẫn thu mục',
|
||||
newInserStmtEvery: 'Câu lệnh INSERT mới mỗi',
|
||||
newInsertStmtEvery: 'Câu lệnh INSERT mới mỗi',
|
||||
processingTableExport: 'Đang tiến hành {table}',
|
||||
fechingTableExport: 'Đang lấy dữ liệu {table}',
|
||||
fetchingTableExport: 'Đang lấy dữ liệu {table}',
|
||||
writingTableExport: 'Đang ghi dữ liệu {table}',
|
||||
checkAllTables: 'Chọn tất cả các bảng',
|
||||
uncheckAllTables: 'Bỏ chọn tất cả các bảng',
|
||||
@@ -284,7 +284,7 @@ export const viVN = {
|
||||
actionSuccessful: '{action} thành công',
|
||||
importQueryErrors: 'Cảnh báo: {n} lỗi đã xảy ra | Carh báo: {n} lỗi đã xảy ra',
|
||||
executedQueries: '{n} truy vấn đã chạy | {n} truy vấn đã chạy',
|
||||
ourputFormat: 'Định dạng đầu ra',
|
||||
outputFormat: 'Định dạng đầu ra',
|
||||
singleFile: 'Một tệp {ext}',
|
||||
zipCompressedFile: 'Tệp nén zip {ext}',
|
||||
disableBlur: 'Tắt làm mờ',
|
||||
|
@@ -145,7 +145,7 @@ export const zhCN = {
|
||||
console: '控制台',
|
||||
shortcuts: '快捷键',
|
||||
folder: '文件夹 | 文件夹',
|
||||
appearence: '外观',
|
||||
appearance: '外观',
|
||||
color: '颜色',
|
||||
label: '标签',
|
||||
icon: '图标',
|
||||
@@ -161,7 +161,7 @@ export const zhCN = {
|
||||
testConnection: '测试连接',
|
||||
editConnection: '编辑连接',
|
||||
deleteConnection: '删除连接',
|
||||
deleteCorfirm: '您是否确认取消',
|
||||
deleteConfirm: '您是否确认取消',
|
||||
connectionSuccessfullyMade: '连接成功了!',
|
||||
madeWithJS: '使用 💛 和 JavaScript 制作!',
|
||||
checkForUpdates: '检查更新',
|
||||
@@ -201,7 +201,7 @@ export const zhCN = {
|
||||
createNewTable: '创建新表',
|
||||
emptyTable: '清空表',
|
||||
deleteTable: '删除表',
|
||||
emptyCorfirm: '您是否确认清空',
|
||||
emptyConfirm: '您是否确认清空',
|
||||
unsavedChanges: '未保存的更改',
|
||||
discardUnsavedChanges: '您有一些未保存的更改, 关闭此标签将放弃这些更改.',
|
||||
thereAreNoIndexes: '没有索引',
|
||||
@@ -261,7 +261,7 @@ export const zhCN = {
|
||||
duplicateTable: '重复的表',
|
||||
noOpenTabs: '没有打开的标签, 请在左侧栏上导航或:',
|
||||
noSchema: '没有模式',
|
||||
restorePreviourSession: '恢复上一个会话',
|
||||
restorePreviousSession: '恢复上一个会话',
|
||||
runQuery: '运行查询',
|
||||
thereAreNoTableFields: '没有表的字段',
|
||||
newTable: '新表',
|
||||
@@ -278,9 +278,9 @@ export const zhCN = {
|
||||
exportSchema: '导出模式(schema)',
|
||||
importSchema: '导入模式(schema)',
|
||||
directoryPath: '目录路径',
|
||||
newInserStmtEvery: '每条新的 INSERT 语句',
|
||||
newInsertStmtEvery: '每条新的 INSERT 语句',
|
||||
processingTableExport: '处理 {table}',
|
||||
fechingTableExport: '正在获取 {table} 数据',
|
||||
fetchingTableExport: '正在获取 {table} 数据',
|
||||
writingTableExport: '正在写入 {table} 数据',
|
||||
checkAllTables: '勾选所有表',
|
||||
uncheckAllTables: '不勾选所有表',
|
||||
@@ -294,7 +294,7 @@ export const zhCN = {
|
||||
actionSuccessful: '{action} 成功',
|
||||
importQueryErrors: '警告: 发生了 {n} 个错误 | 警告: 发生了 {n} 个错误',
|
||||
executedQueries: '{n} 个查询已执行 | {n} 个查询已执行',
|
||||
ourputFormat: '输出格式',
|
||||
outputFormat: '输出格式',
|
||||
singleFile: '单个 {ext} 文件',
|
||||
zipCompressedFile: 'ZIP 压缩 {ext} 文件',
|
||||
disableBlur: '禁用模糊',
|
||||
@@ -333,7 +333,7 @@ export const zhCN = {
|
||||
editFolder: '编辑文件夹',
|
||||
folderName: '文件夹名称',
|
||||
deleteFolder: '删除文件夹',
|
||||
editConnectionAppearence: '编辑连接的外观',
|
||||
editConnectionAppearance: '编辑连接的外观',
|
||||
executeSelectedQuery: '执行所选查询',
|
||||
defaultCopyType: '默认复制类型',
|
||||
showTableSize: '在侧边栏显示表大小',
|
||||
|
@@ -1 +1,8 @@
|
||||
<svg height="32" viewBox="0 0 45.025 44.217" width="32" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m0 0h191.356v57.344h-191.356z"/></clipPath><path clip-path="url(#a)" d="m75.198 5.328c-1.872.047-2.977.863-3.34 2.42.48.418 1.126.6 1.77.572 1.415-.06 2.817-1.138 2.42-2.965-.298-.025-.582-.035-.85-.027m9.642-5.328h-.167c-1.335.043-1.542.767-4.425 1.477-2.912.717-5.725.028-8.86 1.344-9.363 3.927-11.358 17.472-19.868 22.279-6.36 3.593-12.512 5.188-18.28 6.995-3.792 1.188-7.552 2.556-10.988 5.516-2.667 2.3-3.4 4.085-6.177 6.97-2.835 2.933-11.553-2.258-15.8 1.54a.84.84 0 0 0 .014 1.253c.92.805 2.67 2.722 4.336 3.314-.528 1-3.513 3.946-2.904 5.42.64 1.55 8.04.497 14.88-3.633 3.185-1.924 5.723-4.696 10.685-5.357 6.42-.855 13.817.55 21.25 1.62-1.103 3.286-3.315 5.473-5.088 8.1-.55.592 1.103.658 2.986.3 3.4-.838 5.832-1.513 8.4-3 3.143-1.83 3.62-6.52 7.474-7.534 1.864 2.865 6.5 3.83 10.074 2.3.198-.084.392-.177.582-.275.43-.375.178-.813-.086-1.135a6.21 6.21 0 0 1 -.362-.364c-2.012-2.162-2.472-7.266-1.58-9.748 1.017-2.824 2.022-7.343 3.046-11.075 1.1-4 1.506-9.063 2.837-11.106 2.002-3.072 4.215-4.127 6.136-5.86s3.68-3.42 3.62-7.384c-.028-1.223-.629-1.927-1.735-1.957m.204 4.163c-.397 2.734-2.144 4.237-4.208 5.687-1.8 1.27-3.794 2.493-5.07 4.477-1.305 2.03-2.134 8.985-4.16 15.852-1.68 5.698-4.184 11.335-8.467 14.05-.278.176-.645.015-.704-.3-.3-1.592-.24-4.5-.734-3.56-.62 1.77-1.322 3.458-2.143 5.027-2.52 4.816-6.166 8.505-12.057 9.95a.53.53 0 0 1 -.552-.82c2.718-3.77 5.15-7.825 5.447-14.014.025-.534-.646-.778-.983-.364-1.284 1.583-1.6 5.347-3.477 6.506-1.474.16-2.967.16-4.47.07-6.17-.37-12.502-2.226-18.274-.373-3.93 1.262-8.057 4.85-11.386 6.293-3.912 1.686-5.766 3.286-10.706 3.176-.505-.68 2.062-3.623 2.934-4.893.278-.407-.317-.835-.874-1.1-1.338-.614-2.68-2.28-4.107-2.93.183-.337.83-.674 1.187-.88 3.24-1.88 11.832 2.124 14.14-.143 1.425-1.398 2.385-2.626 3.353-4.05.94-1.38 2.368-2.838 3.847-4.047a31.3 31.3 0 0 1 1.94-1.435c2.52-1.724 3.907-1.852 7.17-3.064 4.152-1.544 9.293-2.898 13.747-4.6 2.752-1.053 5.744-2.35 8.183-4.17.58-.432 1.127-.893 1.634-1.386 6.964-6.8 8.345-18.766 19.2-19.882 1.314-.135 2.248-.192 3.228-.223 1.096-.03 2.18-.3 3.263-.818.334-.146 2.324-1.35 2.996-.768.448.388.115 2.492.086 2.72" fill="#fff" transform="matrix(.52012 0 0 .52012 0 7.19564)"/></svg>
|
||||
<svg height="32" viewBox="0 0 45.025 44.217" width="32" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg"><g
|
||||
transform="matrix(0.13871016,0,0,0.13871016,1.6658507,8.5440648)"><path
|
||||
d="m 299.2,3.87 a 4.36,4.36 0 0 0 -2.92,-1 c -2.9,0 -6.65,2 -8.66,3 -0.35,0.18 -0.62,0.33 -0.81,0.41 A 27.32,27.32 0 0 1 276,9.06 c -3.86,0.12 -7.19,0.35 -11.5,0.79 -25.66,2.64 -37.05,22.28 -48.06,41.27 -6,10.33 -12.18,21 -20.67,29.28 a 55,55 0 0 1 -5.59,4.75 c -8.78,6.54 -19.81,11.17 -28.43,14.47 -8.26,3.15 -17.28,6 -26,8.74 -8,2.51 -15.51,4.88 -22.44,7.46 -3.13,1.16 -5.79,2.05 -8.13,2.83 -6.31,2.1 -10.87,3.62 -17.51,8.16 -2.59,1.78 -5.19,3.7 -7,5.14 a 73.49,73.49 0 0 0 -13.87,14.63 87.05,87.05 0 0 1 -11.6,14 c -1.4,1.37 -3.89,2 -7.62,2 -4.37,0 -9.67,-0.9 -15.28,-1.86 -5.77,-1 -11.75,-2 -16.87,-2 -4.17,0 -7.35,0.68 -9.74,2.06 0,0 -4,2.34 -5.69,5.36 l 1.66,0.76 a 34.33,34.33 0 0 1 7.1,5.1 35.39,35.39 0 0 0 7.37,5.25 6.61,6.61 0 0 1 2.27,1.51 c -0.7,1 -1.73,2.35 -2.8,3.76 -5.92,7.74 -9.37,12.63 -7.39,15.29 a 6.15,6.15 0 0 0 3,0.7 c 12.9,0 19.82,-3.35 28.59,-7.59 2.54,-1.23 5.16,-2.5 8.16,-3.8 5.12,-2.22 10.64,-5.77 16.48,-9.52 7.74,-5 15.74,-10.12 23.49,-12.6 a 63.71,63.71 0 0 1 19.71,-2.77 c 8.23,0 16.83,1.1 25.15,2.16 6.21,0.8 12.63,1.62 18.93,2 2.45,0.15 4.72,0.22 6.92,0.22 a 77.2,77.2 0 0 0 8.83,-0.47 l 0.7,-0.24 c 4.42,-2.72 6.49,-8.55 8.5,-14.19 1.29,-3.62 2.37,-6.88 4.05,-9 a 2.1,2.1 0 0 1 0.34,-0.28 0.41,0.41 0 0 1 0.5,0.08 c 0,0 0,0 0,0.16 -1.06,22.05 -9.9,36.05 -18.88,48.49 l -6,6.43 c 0,0 8.39,0 13.16,-1.84 17.42,-5.22 30.58,-16.69 40.15,-35 a 148.57,148.57 0 0 0 6.32,-14.45 c 0.16,-0.41 1.68,-1.16 1.53,1 0,0.63 -0.09,1.33 -0.14,2 v 0 c 0,0.44 -0.06,0.88 -0.08,1.32 -0.25,3 -1,9.57 -1,9.57 l 5.38,-2.88 c 13,-8.23 23,-24.74 30.56,-50.48 3.16,-10.71 5.47,-21.36 7.51,-30.75 2.44,-11.24 4.55,-20.94 7,-24.69 3.78,-5.88 9.55,-9.86 15.13,-13.72 l 2.28,-1.58 c 7,-4.93 14,-10.62 15.54,-21.22 v -0.24 c 1.2,-7.82 0.25,-9.83 -0.82,-10.76 z"
|
||||
transform="translate(0,-2.9)"
|
||||
style="fill:#ffffff" />
|
||||
</g>
|
||||
</svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.0 KiB |
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 5.0 KiB |
9
src/renderer/ipc-api/Databases.ts
Normal file
9
src/renderer/ipc-api/Databases.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { ipcRenderer } from 'electron';
|
||||
import { unproxify } from '../libs/unproxify';
|
||||
import { IpcResponse } from 'common/interfaces/antares';
|
||||
|
||||
export default class {
|
||||
static getDatabases (params: string): Promise<IpcResponse> {
|
||||
return ipcRenderer.invoke('get-databases', unproxify(params));
|
||||
}
|
||||
}
|
@@ -35,6 +35,10 @@ export default class {
|
||||
return ipcRenderer.invoke('get-table-indexes', unproxify(params));
|
||||
}
|
||||
|
||||
static getTableDll (params: { uid: string; schema: string; table: string }): Promise<IpcResponse<string>> {
|
||||
return ipcRenderer.invoke('get-table-ddl', unproxify(params));
|
||||
}
|
||||
|
||||
static getKeyUsage (params: { uid: string; schema: string; table: string }): Promise<IpcResponse> {
|
||||
return ipcRenderer.invoke('get-key-usage', unproxify(params));
|
||||
}
|
||||
|
@@ -1,15 +1,26 @@
|
||||
import { ClientCode } from 'common/interfaces/antares';
|
||||
import { jsonToSqlInsert } from 'common/libs/sqlUtils';
|
||||
import * as json2php from 'json2php';
|
||||
|
||||
export const exportRows = (args: {
|
||||
type: 'csv' | 'json'| 'sql';
|
||||
type: 'csv' | 'json'| 'sql' | 'php';
|
||||
content: object[];
|
||||
table: string;
|
||||
client?: ClientCode;
|
||||
fields?: {
|
||||
[key: string]: {type: string; datePrecision: number};
|
||||
};
|
||||
sqlOptions?: {sqlInsertAfter: number; sqlInsertDivider: 'bytes' | 'rows'; targetTable: string};
|
||||
sqlOptions?: {
|
||||
sqlInsertAfter: number;
|
||||
sqlInsertDivider: 'bytes' | 'rows';
|
||||
targetTable: string;
|
||||
};
|
||||
csvOptions?: {
|
||||
header: boolean;
|
||||
fieldDelimiter: string;
|
||||
linesTerminator: string;
|
||||
stringDelimiter: string;
|
||||
};
|
||||
}) => {
|
||||
let mime;
|
||||
let content;
|
||||
@@ -18,20 +29,25 @@ export const exportRows = (args: {
|
||||
case 'csv': {
|
||||
mime = 'text/csv';
|
||||
const csv = [];
|
||||
const sd = args.csvOptions.stringDelimiter === 'single'
|
||||
? '\''
|
||||
: args.csvOptions.stringDelimiter === 'single'
|
||||
? '"'
|
||||
: '';
|
||||
|
||||
if (args.content.length)
|
||||
csv.push(Object.keys(args.content[0]).join(';'));
|
||||
if (args.content.length && args.csvOptions.header)
|
||||
csv.push(Object.keys(args.content[0]).join(args.csvOptions.fieldDelimiter));
|
||||
|
||||
for (const row of args.content) {
|
||||
csv.push(Object.values(row).map(col => {
|
||||
if (typeof col === 'string') return `"${col}"`;
|
||||
if (typeof col === 'string') return `${sd}${col}${sd}`;
|
||||
if (col instanceof Buffer) return col.toString('base64');
|
||||
if (col instanceof Uint8Array) return Buffer.from(col).toString('base64');
|
||||
return col;
|
||||
}).join(';'));
|
||||
}).join(args.csvOptions.fieldDelimiter));
|
||||
}
|
||||
|
||||
content = csv.join('\n');
|
||||
content = csv.join(args.csvOptions.linesTerminator.replaceAll('\\n', '\n').replaceAll('\\r', '\r'));
|
||||
break;
|
||||
}
|
||||
case 'sql': {
|
||||
@@ -41,13 +57,20 @@ export const exportRows = (args: {
|
||||
client:
|
||||
args.client,
|
||||
fields: args.fields,
|
||||
table: args.sqlOptions.targetTable || args.table,
|
||||
table: args.sqlOptions?.targetTable || args.table,
|
||||
options: args.sqlOptions
|
||||
});
|
||||
|
||||
content = sql;
|
||||
break;
|
||||
}
|
||||
case 'php': {
|
||||
mime = 'application/x-httpd-php';
|
||||
const printer = json2php.make({ linebreak: '\n', indent: '\t', shortArraySyntax: true });
|
||||
content = printer(args.content);
|
||||
content = `<?php\n$${(args.sqlOptions?.targetTable || args.table).replaceAll('-', '_')} = ${content};`;
|
||||
break;
|
||||
}
|
||||
case 'json':
|
||||
mime = 'application/json';
|
||||
content = JSON.stringify(args.content, null, 3);
|
||||
|
@@ -30,6 +30,7 @@ export interface WorkspaceTab {
|
||||
index?: number;
|
||||
selected?: boolean;
|
||||
type?: string;
|
||||
database?: string;
|
||||
schema?: string;
|
||||
elementName?: string;
|
||||
elementNewName?: string;
|
||||
@@ -65,6 +66,7 @@ export interface Breadcrumb {
|
||||
export interface Workspace {
|
||||
uid: string;
|
||||
client?: ClientCode;
|
||||
database?: string;
|
||||
connectionStatus: string;
|
||||
selectedTab: string | number;
|
||||
searchTerm: string;
|
||||
@@ -145,14 +147,15 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
else
|
||||
this.selectedWorkspace = uid;
|
||||
},
|
||||
async connectWorkspace (connection: ConnectionParams & { pgConnString?: string }) {
|
||||
async connectWorkspace (connection: ConnectionParams & { pgConnString?: string }, mode?: string) {
|
||||
this.workspaces = (this.workspaces as Workspace[]).map(workspace => workspace.uid === connection.uid
|
||||
? {
|
||||
...workspace,
|
||||
structure: {},
|
||||
structure: [],
|
||||
breadcrumbs: {},
|
||||
loadedSchemas: new Set(),
|
||||
connectionStatus: 'connecting'
|
||||
database: connection.database,
|
||||
connectionStatus: mode === 'switch' ? 'connected' : 'connecting'
|
||||
}
|
||||
: workspace);
|
||||
|
||||
@@ -168,7 +171,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
this.workspaces = (this.workspaces as Workspace[]).map(workspace => workspace.uid === connection.uid
|
||||
? {
|
||||
...workspace,
|
||||
structure: {},
|
||||
structure: [],
|
||||
breadcrumbs: {},
|
||||
loadedSchemas: new Set(),
|
||||
connectionStatus: 'failed'
|
||||
@@ -228,6 +231,12 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
}, null);
|
||||
}
|
||||
|
||||
const selectedTab = cachedTabs.length
|
||||
? connection.database
|
||||
? cachedTabs.filter(tab => tab.type === 'query' || tab.database === connection.database)[0]?.uid
|
||||
: cachedTabs[0].uid
|
||||
: null;
|
||||
|
||||
this.workspaces = (this.workspaces as Workspace[]).map(workspace => workspace.uid === connection.uid
|
||||
? {
|
||||
...workspace,
|
||||
@@ -238,7 +247,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
structure: response,
|
||||
connectionStatus: 'connected',
|
||||
tabs: cachedTabs,
|
||||
selectedTab: cachedTabs.length ? cachedTabs[0].uid : null,
|
||||
selectedTab,
|
||||
version
|
||||
}
|
||||
: workspace);
|
||||
@@ -385,7 +394,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
this.workspaces = (this.workspaces as Workspace[]).map(workspace => workspace.uid === uid
|
||||
? {
|
||||
...workspace,
|
||||
structure: {},
|
||||
structure: [],
|
||||
breadcrumbs: {},
|
||||
loadedSchemas: new Set(),
|
||||
connectionStatus: 'disconnected'
|
||||
@@ -394,6 +403,10 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
|
||||
this.selectTab({ uid, tab: 0 });
|
||||
},
|
||||
async switchConnection (connection: ConnectionParams & { pgConnString?: string }) {
|
||||
await Connection.disconnect(connection.uid);
|
||||
return this.connectWorkspace(connection, 'switch');
|
||||
},
|
||||
addWorkspace (uid: string) {
|
||||
const workspace: Workspace = {
|
||||
uid,
|
||||
@@ -468,7 +481,15 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
}
|
||||
: workspace);
|
||||
},
|
||||
_addTab ({ uid, tab, content, type, autorun, schema, elementName, elementType }: WorkspaceTab) {
|
||||
setDatabase (databaseName: string) {
|
||||
this.workspaces = (this.workspaces as Workspace[]).map(workspace => workspace.uid === this.getSelected
|
||||
? {
|
||||
...workspace,
|
||||
database: databaseName
|
||||
}
|
||||
: workspace);
|
||||
},
|
||||
_addTab ({ uid, tab, content, type, autorun, schema, database, elementName, elementType }: WorkspaceTab) {
|
||||
if (type === 'query')
|
||||
tabIndex[uid] = tabIndex[uid] ? ++tabIndex[uid] : 1;
|
||||
|
||||
@@ -477,6 +498,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
index: type === 'query' ? tabIndex[uid] : null,
|
||||
selected: false,
|
||||
type,
|
||||
database,
|
||||
schema,
|
||||
elementName,
|
||||
elementType,
|
||||
@@ -534,6 +556,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
content,
|
||||
type,
|
||||
autorun,
|
||||
database: workspaceTabs.database,
|
||||
schema,
|
||||
elementName,
|
||||
elementType
|
||||
@@ -572,7 +595,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
});
|
||||
|
||||
tabUid = uidGen('T');
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, schema, elementName, elementType });
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, database: workspaceTabs.database, schema, elementName, elementType });
|
||||
}
|
||||
else {
|
||||
this._replaceTab({ uid, tab: tab.uid, type, schema, elementName, elementType });
|
||||
@@ -582,7 +605,7 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
}
|
||||
else {
|
||||
tabUid = uidGen('T');
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, schema, elementName, elementType });
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, database: workspaceTabs.database, schema, elementName, elementType });
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -603,18 +626,18 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
: false;
|
||||
|
||||
if (existentTab) {
|
||||
this._replaceTab({ uid, tab: existentTab.uid, type, schema, elementName, elementType });
|
||||
this._replaceTab({ uid, tab: existentTab.uid, type, database: workspaceTabs.database, schema, elementName, elementType });
|
||||
tabUid = existentTab.uid;
|
||||
}
|
||||
else {
|
||||
tabUid = uidGen('T');
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, schema, elementName, elementType });
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, database: workspaceTabs.database, schema, elementName, elementType });
|
||||
}
|
||||
}
|
||||
break;
|
||||
default:
|
||||
tabUid = uidGen('T');
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, schema, elementName, elementType });
|
||||
this._addTab({ uid, tab: tabUid, content, type, autorun, database: workspaceTabs.database, schema, elementName, elementType });
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -626,8 +649,14 @@ export const useWorkspacesStore = defineStore('workspaces', {
|
||||
? workspace.tabs.some(tab => tab.uid === workspace.selectedTab)
|
||||
: false;
|
||||
|
||||
if (!isSelectedExistent && workspace.tabs.length)
|
||||
this.selectTab({ uid, tab: workspace.tabs[workspace.tabs.length - 1].uid });
|
||||
if (!isSelectedExistent && workspace.tabs.length) {
|
||||
if (workspace.customizations.database) {
|
||||
const databaseTabs = workspace.tabs.filter(tab => tab.type === 'query' || tab.database === workspace.database);
|
||||
this.selectTab({ uid, tab: databaseTabs[databaseTabs.length - 1].uid });
|
||||
}
|
||||
else
|
||||
this.selectTab({ uid, tab: workspace.tabs[workspace.tabs.length - 1].uid });
|
||||
}
|
||||
},
|
||||
updateTabContent ({ uid, tab, type, schema, content }: WorkspaceTab) {
|
||||
this._replaceTab({ uid, tab, type, schema, content });
|
||||
|
1
src/renderer/untyped.d.ts
vendored
1
src/renderer/untyped.d.ts
vendored
@@ -2,6 +2,7 @@
|
||||
/* eslint-disable @typescript-eslint/ban-types */
|
||||
declare module '@/App.vue';
|
||||
declare module 'v-mask';
|
||||
declare module 'json2php';
|
||||
declare module 'vuedraggable' {// <- to export as default
|
||||
const draggableComponent: import('vue').DefineComponent<{
|
||||
list: {
|
||||
|
Reference in New Issue
Block a user