mirror of
https://github.com/Fabio286/antares.git
synced 2025-04-16 11:07:23 +02:00
Additions
This commit is contained in:
parent
cb9d32d9d2
commit
aea94f0325
1
.gitignore
vendored
1
.gitignore
vendored
@ -4,3 +4,4 @@ node_modules/
|
|||||||
thumbs.db
|
thumbs.db
|
||||||
.idea/
|
.idea/
|
||||||
.vscode
|
.vscode
|
||||||
|
TODO.md
|
@ -5,7 +5,7 @@ import * as path from 'path';
|
|||||||
import { format as formatUrl } from 'url';
|
import { format as formatUrl } from 'url';
|
||||||
import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer';
|
import installExtension, { VUEJS_DEVTOOLS } from 'electron-devtools-installer';
|
||||||
|
|
||||||
import ipcApi from './ipc-api';
|
import ipcHandlers from './ipc-handlers';
|
||||||
|
|
||||||
const isDevelopment = process.env.NODE_ENV !== 'production';
|
const isDevelopment = process.env.NODE_ENV !== 'production';
|
||||||
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true';
|
process.env.ELECTRON_DISABLE_SECURITY_WARNINGS = 'true';
|
||||||
@ -15,8 +15,8 @@ let mainWindow;
|
|||||||
|
|
||||||
function createMainWindow () {
|
function createMainWindow () {
|
||||||
const window = new BrowserWindow({
|
const window = new BrowserWindow({
|
||||||
width: 1200,
|
width: 1600,
|
||||||
height: 900,
|
height: 1000,
|
||||||
minHeight: 550,
|
minHeight: 550,
|
||||||
minWidth: 450,
|
minWidth: 450,
|
||||||
title: 'Antares',
|
title: 'Antares',
|
||||||
@ -61,8 +61,8 @@ function createMainWindow () {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// Initialize ipcApi
|
// Initialize ipcHandlers
|
||||||
ipcApi();
|
ipcHandlers();
|
||||||
|
|
||||||
return window;
|
return window;
|
||||||
};
|
};
|
||||||
|
@ -1,24 +0,0 @@
|
|||||||
|
|
||||||
import { ipcMain } from 'electron';
|
|
||||||
import knex from 'knex';
|
|
||||||
|
|
||||||
export default () => {
|
|
||||||
ipcMain.handle('testConnection', async (event, conn) => {
|
|
||||||
try {
|
|
||||||
await knex({
|
|
||||||
client: conn.client,
|
|
||||||
connection: {
|
|
||||||
host: conn.host,
|
|
||||||
port: +conn.port,
|
|
||||||
user: conn.user,
|
|
||||||
password: conn.password
|
|
||||||
}
|
|
||||||
}).raw('SELECT 1+1 AS result');
|
|
||||||
|
|
||||||
return { status: 'success' };
|
|
||||||
}
|
|
||||||
catch (err) {
|
|
||||||
return { status: 'error', response: err };
|
|
||||||
}
|
|
||||||
});
|
|
||||||
};
|
|
50
src/main/ipc-handlers/connection.js
Normal file
50
src/main/ipc-handlers/connection.js
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
|
||||||
|
import { ipcMain } from 'electron';
|
||||||
|
import knex from 'knex';
|
||||||
|
import InformationSchema from '../models/InformationSchema';
|
||||||
|
|
||||||
|
const connections = {};
|
||||||
|
|
||||||
|
export default () => {
|
||||||
|
ipcMain.handle('testConnection', async (event, conn) => {
|
||||||
|
try {
|
||||||
|
await knex({
|
||||||
|
client: conn.client,
|
||||||
|
connection: {
|
||||||
|
host: conn.host,
|
||||||
|
port: +conn.port,
|
||||||
|
user: conn.user,
|
||||||
|
password: conn.password
|
||||||
|
}
|
||||||
|
}).raw('SELECT 1+1 AS result');
|
||||||
|
|
||||||
|
return { status: 'success' };
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
return { status: 'error', response: err };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('checkConnection', async (event, uid) => {
|
||||||
|
return uid in connections;
|
||||||
|
});
|
||||||
|
|
||||||
|
ipcMain.handle('connect', async (event, conn) => {
|
||||||
|
// TODO: make a test before
|
||||||
|
connections[conn.uid] = knex({
|
||||||
|
client: conn.client,
|
||||||
|
connection: {
|
||||||
|
host: conn.host,
|
||||||
|
port: +conn.port,
|
||||||
|
user: conn.user,
|
||||||
|
password: conn.password
|
||||||
|
},
|
||||||
|
pool: {
|
||||||
|
min: 1,
|
||||||
|
max: 3
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
return await InformationSchema.getStructure(connections[conn.uid]);
|
||||||
|
});
|
||||||
|
};
|
10
src/main/models/InformationSchema.js
Normal file
10
src/main/models/InformationSchema.js
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
export default class {
|
||||||
|
static getStructure (connection) {
|
||||||
|
return connection()
|
||||||
|
.select('*')
|
||||||
|
.withSchema('information_schema')
|
||||||
|
.from('TABLES');
|
||||||
|
}
|
||||||
|
}
|
@ -1,14 +1,15 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="wrapper">
|
<div id="wrapper">
|
||||||
<!-- <TheHeader /> -->
|
|
||||||
<TheSettingBar />
|
<TheSettingBar />
|
||||||
<TheExploreBar />
|
|
||||||
<div id="main-content" class="container">
|
<div id="main-content" class="container">
|
||||||
<!-- <BaseLoaderLayer
|
|
||||||
id="main-loader"
|
|
||||||
:is-loading="isLoading"
|
|
||||||
/> -->
|
|
||||||
<TheAppWelcome v-if="!connections.length" @newConn="showNewConnModal" />
|
<TheAppWelcome v-if="!connections.length" @newConn="showNewConnModal" />
|
||||||
|
<div v-else class="columns col-gapless">
|
||||||
|
<DatabaseWorkspace
|
||||||
|
v-for="connection in connections"
|
||||||
|
:key="connection.uid"
|
||||||
|
:connection="connection"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<TheFooter />
|
<TheFooter />
|
||||||
<ModalNewConnection v-if="isNewConnModal" />
|
<ModalNewConnection v-if="isNewConnModal" />
|
||||||
@ -18,18 +19,18 @@
|
|||||||
<script>
|
<script>
|
||||||
import { mapActions, mapGetters } from 'vuex';
|
import { mapActions, mapGetters } from 'vuex';
|
||||||
import TheSettingBar from '@/components/TheSettingBar';
|
import TheSettingBar from '@/components/TheSettingBar';
|
||||||
import TheExploreBar from '@/components/TheExploreBar';
|
|
||||||
import TheFooter from '@/components/TheFooter';
|
import TheFooter from '@/components/TheFooter';
|
||||||
import TheAppWelcome from '@/components/TheAppWelcome';
|
import TheAppWelcome from '@/components/TheAppWelcome';
|
||||||
|
import DatabaseWorkspace from '@/components/DatabaseWorkspace';
|
||||||
import ModalNewConnection from '@/components/ModalNewConnection';
|
import ModalNewConnection from '@/components/ModalNewConnection';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
name: 'App',
|
name: 'App',
|
||||||
components: {
|
components: {
|
||||||
TheSettingBar,
|
TheSettingBar,
|
||||||
TheExploreBar,
|
|
||||||
TheFooter,
|
TheFooter,
|
||||||
TheAppWelcome,
|
TheAppWelcome,
|
||||||
|
DatabaseWorkspace,
|
||||||
ModalNewConnection
|
ModalNewConnection
|
||||||
},
|
},
|
||||||
data () {
|
data () {
|
||||||
@ -51,7 +52,7 @@ export default {
|
|||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style lang="scss">
|
||||||
html,
|
html,
|
||||||
body{
|
body{
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@ -63,7 +64,12 @@ export default {
|
|||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* #main-content{
|
#main-content {
|
||||||
background: #232524;
|
padding: 0;
|
||||||
} */
|
justify-content: flex-start;
|
||||||
|
|
||||||
|
> .columns{
|
||||||
|
height: 100vh;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,18 +1,27 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="explorebar" class="container">
|
<div class="workspace-explorebar column">
|
||||||
<!-- aaa -->
|
<button
|
||||||
|
v-if="!isConnected"
|
||||||
|
class="btn btn-primary mt-4"
|
||||||
|
@click="$emit('connect')"
|
||||||
|
>
|
||||||
|
Connect
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
name: 'TheExploreBar'
|
name: 'DatabaseExploreBar',
|
||||||
|
props: {
|
||||||
|
uid: String,
|
||||||
|
isConnected: Boolean
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
#explorebar{
|
.workspace-explorebar{
|
||||||
width: $explorebar-width;
|
width: $explorebar-width;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -22,5 +31,6 @@ export default {
|
|||||||
margin-bottom: $footer-height;
|
margin-bottom: $footer-height;
|
||||||
box-shadow: 0 0 1px 0px #000;
|
box-shadow: 0 0 1px 0px #000;
|
||||||
z-index: 8;
|
z-index: 8;
|
||||||
|
flex: initial;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
57
src/renderer/components/DatabaseWorkspace.vue
Normal file
57
src/renderer/components/DatabaseWorkspace.vue
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<template>
|
||||||
|
<div v-show="selectedConnection === connection.uid" class="workspace column columns">
|
||||||
|
<DatabaseExploreBar
|
||||||
|
:uid="connection.uid"
|
||||||
|
:is-connected="isConnected"
|
||||||
|
@connect="startConnection"
|
||||||
|
/>
|
||||||
|
<div class="workspace-tabs column">
|
||||||
|
<p>{{ connection.uid }}</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { mapGetters } from 'vuex';
|
||||||
|
import Connection from '@/ipc-api/Connection';
|
||||||
|
import DatabaseExploreBar from '@/components/DatabaseExploreBar';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'DatabaseWorkspace',
|
||||||
|
components: {
|
||||||
|
DatabaseExploreBar
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
connection: Object
|
||||||
|
},
|
||||||
|
data () {
|
||||||
|
return {
|
||||||
|
isConnected: false,
|
||||||
|
structure: null
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
...mapGetters({
|
||||||
|
selectedConnection: 'connections/getSelected'
|
||||||
|
})
|
||||||
|
},
|
||||||
|
async created () {
|
||||||
|
this.isConnected = await Connection.checkConnection(this.connection.uid);
|
||||||
|
if (this.isConnected)
|
||||||
|
this.structure = await Connection.connect(this.connection);// TODO: use refresh
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
async startConnection () {
|
||||||
|
this.structure = await Connection.connect(this.connection);
|
||||||
|
this.isConnected = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.workspace{
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
</style>
|
@ -128,7 +128,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { mapActions } from 'vuex';
|
import { mapActions } from 'vuex';
|
||||||
import { ipcRenderer } from 'electron';
|
import Connection from '@/ipc-api/Connection';
|
||||||
import ModalAskCredentials from '@/components/ModalAskCredentials';
|
import ModalAskCredentials from '@/components/ModalAskCredentials';
|
||||||
import BaseToast from '@/components/BaseToast';
|
import BaseToast from '@/components/BaseToast';
|
||||||
|
|
||||||
@ -177,34 +177,25 @@ export default {
|
|||||||
|
|
||||||
if (this.connection.ask)
|
if (this.connection.ask)
|
||||||
this.isAsking = true;
|
this.isAsking = true;
|
||||||
|
else {
|
||||||
|
try {
|
||||||
|
const res = await Connection.makeTest(this.connection);
|
||||||
|
if (res.status === 'error')
|
||||||
|
this.toast = { status: 'error', message: res.response.message };
|
||||||
else
|
else
|
||||||
await this.invokeTest(this.connection);
|
this.toast = { status: 'success', message: 'Connection successifully made!' };
|
||||||
|
}
|
||||||
|
catch (err) {
|
||||||
|
this.toast = { status: 'error', message: err.stack };
|
||||||
|
}
|
||||||
|
|
||||||
|
this.isTesting = false;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
async continueTest (credentials) { // if "Ask for credentials" is true
|
async continueTest (credentials) { // if "Ask for credentials" is true
|
||||||
this.isAsking = false;
|
this.isAsking = false;
|
||||||
const params = Object.assign({}, this.connection, credentials);
|
const params = Object.assign({}, this.connection, credentials);
|
||||||
await this.invokeTest(params);
|
await Connection.makeTest(params);
|
||||||
},
|
|
||||||
invokeTest (params) {
|
|
||||||
return new Promise((resolve, reject) => {
|
|
||||||
ipcRenderer.invoke('testConnection', params).then(res => {
|
|
||||||
if (res.status === 'error') {
|
|
||||||
this.toast = {
|
|
||||||
status: 'error',
|
|
||||||
message: res.response.message
|
|
||||||
};
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
this.toast = {
|
|
||||||
status: 'success',
|
|
||||||
message: 'Connection successifully made!'
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
this.isTesting = false;
|
|
||||||
resolve();
|
|
||||||
});
|
|
||||||
});
|
|
||||||
},
|
},
|
||||||
saveNewConnection () {
|
saveNewConnection () {
|
||||||
this.addConnection(this.connection);
|
this.addConnection(this.connection);
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="empty text-light">
|
<div class="columns">
|
||||||
|
<div class="column col-12 empty text-light">
|
||||||
<div class="empty-icon">
|
<div class="empty-icon">
|
||||||
<i class="material-icons md-48">mood</i>
|
<i class="material-icons md-48">mood</i>
|
||||||
</div>
|
</div>
|
||||||
@ -15,6 +16,7 @@
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
@ -1,30 +1,31 @@
|
|||||||
<template>
|
<template>
|
||||||
<div id="settingbar" class="container">
|
<div id="settingbar">
|
||||||
<div class="settingbar-top-elements">
|
<div class="settingbar-top-elements">
|
||||||
<ul class="settingbar-elements">
|
<ul class="settingbar-elements">
|
||||||
<li
|
<li
|
||||||
v-for="connection in connections"
|
v-for="connection in connections"
|
||||||
:key="connection.uid"
|
:key="connection.uid"
|
||||||
class="settingbar-element btn btn-link tooltip tooltip-right p-0"
|
class="settingbar-element btn btn-link tooltip tooltip-right"
|
||||||
:class="{'selected': connection.uid === selectedConnection}"
|
:class="{'selected': connection.uid === selectedConnection}"
|
||||||
:data-tooltip="`${connection.user}@${connection.host}:${connection.port}`"
|
:data-tooltip="`${connection.user}@${connection.host}:${connection.port}`"
|
||||||
|
@click="selectConnection(connection.uid)"
|
||||||
>
|
>
|
||||||
<i class="dbi" :class="`dbi-${connection.client}`" />
|
<i class="settingbar-element-icon dbi" :class="`dbi-${connection.client}`" />
|
||||||
</li>
|
</li>
|
||||||
<li
|
<li
|
||||||
class="settingbar-element btn btn-link tooltip tooltip-right"
|
class="settingbar-element btn btn-link tooltip tooltip-right pt-3"
|
||||||
data-tooltip="Add connection"
|
data-tooltip="Add connection"
|
||||||
@click="showNewConnModal"
|
@click="showNewConnModal"
|
||||||
>
|
>
|
||||||
<i class="material-icons text-light">add</i>
|
<i class="settingbar-element-icon material-icons text-light">add</i>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="settingbar-bottom-elements">
|
<div class="settingbar-bottom-elements">
|
||||||
<ul class="settingbar-elements">
|
<ul class="settingbar-elements">
|
||||||
<li class="settingbar-element btn btn-link tooltip tooltip-right" data-tooltip="Settings">
|
<li class="settingbar-element btn btn-link tooltip tooltip-right mb-2" data-tooltip="Settings">
|
||||||
<i class="material-icons text-light">settings</i>
|
<i class="settingbar-element-icon material-icons text-light">settings</i>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
@ -44,9 +45,9 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
...mapActions({
|
...mapActions({
|
||||||
showNewConnModal: 'connections/showNewConnModal'
|
showNewConnModal: 'connections/showNewConnModal',
|
||||||
}),
|
selectConnection: 'connections/selectConnection'
|
||||||
isActiveTab: uid => uid === this.selectedConnection
|
})
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
@ -59,7 +60,7 @@ export default {
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: $bg-color-light;
|
background: $bg-color-light;
|
||||||
padding: .5rem 0;
|
padding: 0;
|
||||||
margin-bottom: $footer-height;
|
margin-bottom: $footer-height;
|
||||||
box-shadow: 0 0 1px 0px #000;
|
box-shadow: 0 0 1px 0px #000;
|
||||||
z-index: 9;
|
z-index: 9;
|
||||||
@ -72,9 +73,25 @@ export default {
|
|||||||
|
|
||||||
.settingbar-element{
|
.settingbar-element{
|
||||||
height: initial;
|
height: initial;
|
||||||
|
width: 100%;
|
||||||
|
padding: 0;
|
||||||
|
padding: .3rem 0 0;
|
||||||
|
margin: 0;
|
||||||
|
border-left: 3px solid transparent;
|
||||||
|
opacity: .5;
|
||||||
|
transition: opacity .2s;
|
||||||
|
|
||||||
|
&:hover{
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.selected{
|
||||||
|
border-left-color: $body-font-color;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.settingbar-element-icon{
|
.settingbar-element-icon{
|
||||||
width: 42px;
|
margin-left: -3px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
19
src/renderer/ipc-api/Connection.js
Normal file
19
src/renderer/ipc-api/Connection.js
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
'use strict';
|
||||||
|
import { ipcRenderer } from 'electron';
|
||||||
|
|
||||||
|
export default class {
|
||||||
|
static makeTest (params) {
|
||||||
|
return ipcRenderer.invoke('testConnection', params);
|
||||||
|
}
|
||||||
|
|
||||||
|
static checkConnection (params) {
|
||||||
|
return ipcRenderer.invoke('checkConnection', params);
|
||||||
|
}
|
||||||
|
|
||||||
|
static connect (params) {
|
||||||
|
return ipcRenderer.invoke('connect', params);
|
||||||
|
}
|
||||||
|
|
||||||
|
// TODO: refresh
|
||||||
|
// TODO: disconnect
|
||||||
|
}
|
@ -7,6 +7,6 @@ $bg-color-light: #3f3f3f;
|
|||||||
$bg-color-gray: #272727;
|
$bg-color-gray: #272727;
|
||||||
|
|
||||||
/*Sizes*/
|
/*Sizes*/
|
||||||
$settingbar-width: 4rem;
|
$settingbar-width: 3rem;
|
||||||
$explorebar-width: 16rem;
|
$explorebar-width: 14rem;
|
||||||
$footer-height: 1.5rem;
|
$footer-height: 1.5rem;
|
@ -8,10 +8,10 @@ import application from './modules/application.store';
|
|||||||
import connections from './modules/connections.store';
|
import connections from './modules/connections.store';
|
||||||
|
|
||||||
const vuexLocalStorage = new VuexPersist({
|
const vuexLocalStorage = new VuexPersist({
|
||||||
key: 'vuex', // The key to store the state on in the storage provider.
|
key: 'application', // The key to store the state on in the storage provider.
|
||||||
storage: window.localStorage,
|
storage: window.localStorage,
|
||||||
reducer: state => ({
|
reducer: state => ({
|
||||||
connections: state.connections.connections
|
connections: state.connections
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -26,6 +26,9 @@ export default {
|
|||||||
},
|
},
|
||||||
HIDE_NEW_CONNECTION_MODAL (state) {
|
HIDE_NEW_CONNECTION_MODAL (state) {
|
||||||
state.is_new_modal = false;
|
state.is_new_modal = false;
|
||||||
|
},
|
||||||
|
SELECT_CONNECTION (state, uid) {
|
||||||
|
state.connection_selected = uid;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
@ -38,6 +41,9 @@ export default {
|
|||||||
},
|
},
|
||||||
hideNewConnModal ({ commit }) {
|
hideNewConnModal ({ commit }) {
|
||||||
commit('HIDE_NEW_CONNECTION_MODAL');
|
commit('HIDE_NEW_CONNECTION_MODAL');
|
||||||
|
},
|
||||||
|
selectConnection ({ commit }, uid) {
|
||||||
|
commit('SELECT_CONNECTION', uid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user