mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 09:36:01 +00:00
57 lines
2.4 KiB
Svelte
57 lines
2.4 KiB
Svelte
<script lang="ts">
|
|
import _ from 'lodash';
|
|
import InlineButton from '../elements/InlineButton.svelte';
|
|
import SearchInput from '../elements/SearchInput.svelte';
|
|
import WidgetsInnerContainer from './WidgetsInnerContainer.svelte';
|
|
import { useConnectionList, useServerStatus } from '../utility/metadataLoaders';
|
|
import SearchBoxWrapper from '../elements/SearchBoxWrapper.svelte';
|
|
import AppObjectList from '../appobj/AppObjectList.svelte';
|
|
import * as connectionAppObject from '../appobj/ConnectionAppObject.svelte';
|
|
import SubDatabaseList from '../appobj/SubDatabaseList.svelte';
|
|
import { commands, commandsCustomized, openedConnections } from '../stores';
|
|
import axiosInstance from '../utility/axiosInstance';
|
|
import ToolbarButton from './ToolbarButton.svelte';
|
|
import runCommand from '../commands/runCommand';
|
|
import getConnectionLabel from '../utility/getConnectionLabel';
|
|
import { useConnectionColorFactory } from '../utility/useConnectionColor';
|
|
|
|
const connections = useConnectionList();
|
|
const serverStatus = useServerStatus();
|
|
|
|
let filter = '';
|
|
|
|
$: connectionsWithStatus =
|
|
$connections && $serverStatus
|
|
? $connections.map(conn => ({ ...conn, status: $serverStatus[conn._id] }))
|
|
: $connections;
|
|
|
|
const handleRefreshConnections = () => {
|
|
for (const conid of $openedConnections) {
|
|
axiosInstance.post('server-connections/refresh', { conid });
|
|
}
|
|
};
|
|
|
|
const connectionColorFactory = useConnectionColorFactory(3);
|
|
</script>
|
|
|
|
<SearchBoxWrapper>
|
|
<SearchInput placeholder="Search connection or database" bind:value={filter} />
|
|
<InlineButton on:click={handleRefreshConnections}>Refresh</InlineButton>
|
|
</SearchBoxWrapper>
|
|
<WidgetsInnerContainer>
|
|
<AppObjectList
|
|
list={_.sortBy(connectionsWithStatus, connection => (getConnectionLabel(connection) || '').toUpperCase())}
|
|
module={connectionAppObject}
|
|
subItemsComponent={SubDatabaseList}
|
|
expandOnClick
|
|
isExpandable={data => $openedConnections.includes(data._id) && !data.singleDatabase}
|
|
{filter}
|
|
passProps={{ connectionColorFactory: $connectionColorFactory, showPinnedInsteadOfUnpin: true }}
|
|
/>
|
|
{#if $connections && $connections.length == 0 && $commandsCustomized['new.connection']?.enabled}
|
|
<ToolbarButton icon="icon new-connection" on:click={() => runCommand('new.connection')}>
|
|
Add new connection
|
|
</ToolbarButton>
|
|
{/if}
|
|
</WidgetsInnerContainer>
|