1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-01-19 13:27:58 +00:00
rolens/frontend/src/organisms/connection/index.svelte

186 lines
5.1 KiB
Svelte
Raw Normal View History

2023-01-16 19:03:56 +00:00
<script>
2023-01-22 20:12:56 +00:00
import { onMount } from 'svelte';
import { Hosts, RenameCollection } from '../../../wailsjs/go/app/App';
2023-01-16 19:03:56 +00:00
import { input } from '../../actions';
import Modal from '../../components/modal.svelte';
2023-01-22 20:12:56 +00:00
import HostTree from './hosttree.svelte';
2023-01-16 19:03:56 +00:00
import { busy, connections } from '../../stores';
import CollectionDetail from './collection/index.svelte';
2023-01-22 20:12:56 +00:00
import HostDetail from './hostdetail.svelte';
import Icon from '../../components/icon.svelte';
2023-01-16 19:03:56 +00:00
export let hosts = {};
export let activeHostKey = '';
export let activeDbKey = '';
export let activeCollKey = '';
2023-01-22 20:12:56 +00:00
let hostTree;
2023-01-16 19:03:56 +00:00
let newDb;
let newColl;
2023-01-22 20:12:56 +00:00
let showHostDetail = false;
let hostDetailKey = '';
let collToRename = '';
let newCollKey = '';
async function getHosts() {
hosts = await Hosts();
}
function createHost() {
hostDetailKey = '';
showHostDetail = true;
}
function editHost(hostKey) {
hostDetailKey = hostKey;
showHostDetail = true;
2023-01-16 19:03:56 +00:00
}
async function createDatabase() {
busy.start();
$connections[activeHostKey].databases[newDb.name] = { collections: {} };
newDb = undefined;
2023-01-22 20:12:56 +00:00
await hostTree.reload();
busy.end();
}
function openEditCollModal(collKey) {
newCollKey = collKey;
collToRename = collKey;
}
async function renameCollection() {
busy.start();
console.log(newCollKey);
const ok = await RenameCollection(activeHostKey, activeDbKey, collToRename, newCollKey);
if (ok) {
activeCollKey = newCollKey;
collToRename = '';
newCollKey = '';
await hostTree.reload();
}
2023-01-16 19:03:56 +00:00
busy.end();
}
async function createCollection() {
busy.start();
$connections[activeHostKey].databases[activeDbKey].collections[newColl.name] = {};
newColl = undefined;
2023-01-22 20:12:56 +00:00
await hostTree.reload();
2023-01-16 19:03:56 +00:00
busy.end();
}
2023-01-22 20:12:56 +00:00
onMount(getHosts);
2023-01-16 19:03:56 +00:00
</script>
2023-01-23 12:17:07 +00:00
<div class="tree">
<HostTree
{hosts}
bind:activeHostKey
bind:activeCollKey
bind:activeDbKey
bind:this={hostTree}
on:newHost={createHost}
on:newDatabase={() => newDb = {}}
on:newCollection={() => newColl = {}}
on:editHost={e => editHost(e.detail)}
on:renameCollection={e => openEditCollModal(e.detail)}
/>
</div>
2023-01-16 19:03:56 +00:00
<CollectionDetail
collection={$connections[activeHostKey]?.databases[activeDbKey]?.collections?.[activeCollKey]}
hostKey={activeHostKey}
dbKey={activeDbKey}
collectionKey={activeCollKey}
/>
2023-01-22 20:12:56 +00:00
<HostDetail
bind:show={showHostDetail}
on:reload={getHosts}
hostKey={activeHostKey}
{hosts}
/>
2023-01-16 19:03:56 +00:00
{#if newDb}
<Modal bind:show={newDb}>
<p><strong>Create a database</strong></p>
<p>Note: databases in MongoDB do not exist until they have a collection and an item. Your new database will not persist on the server; fill it to have it created.</p>
<form on:submit|preventDefault={createDatabase}>
<label class="field">
2023-01-22 20:12:56 +00:00
<input type="text" spellcheck="false" bind:value={newDb.name} use:input={{ autofocus: true }} placeholder="New collection name" />
2023-01-16 19:03:56 +00:00
</label>
<p class="modal-actions">
2023-01-16 19:07:56 +00:00
<button class="btn create" type="submit" disabled={!newDb.name?.trim()}>Create database</button>
<button class="btn secondary" type="button" on:click={() => newDb = undefined}>Cancel</button>
2023-01-16 19:07:56 +00:00
</p>
2023-01-16 19:03:56 +00:00
</form>
</Modal>
{/if}
{#if newColl}
<Modal bind:show={newColl}>
2023-01-22 20:12:56 +00:00
<p><strong>Create a collection</strong></p>
2023-01-16 19:03:56 +00:00
<p>Note: collections in MongoDB do not exist until they have at least one item. Your new collection will not persist on the server; fill it to have it created.</p>
<form on:submit|preventDefault={createCollection}>
<label class="field">
2023-01-22 20:12:56 +00:00
<input type="text" spellcheck="false" bind:value={newColl.name} use:input={{ autofocus: true }} placeholder="New collection name" />
2023-01-16 19:03:56 +00:00
</label>
<p class="modal-actions">
2023-01-16 19:07:56 +00:00
<button class="btn create" type="submit" disabled={!newColl.name?.trim()}>Create collection</button>
<button class="btn secondary" type="button" on:click={() => newColl = undefined}>Cancel</button>
2023-01-16 19:07:56 +00:00
</p>
2023-01-16 19:03:56 +00:00
</form>
</Modal>
{/if}
2023-01-22 20:12:56 +00:00
{#if collToRename}
<Modal bind:show={collToRename} width="400px">
<form class="rename" on:submit|preventDefault={renameCollection}>
<div>Renaming collection <strong>{collToRename}</strong></div>
<Icon name="arr-d" />
<div class="inputs">
<button class="btn secondary" type="button" on:click={() => collToRename = ''}>Cancel</button>
<label class="field">
<input type="text" bind:value={newCollKey} use:input={{ autofocus: true }} spellcheck="false" />
</label>
<button class="btn" type="submit">Save</button>
</div>
</form>
</Modal>
{/if}
<style>
.modal-actions {
display: flex;
justify-content: space-between;
}
2023-01-22 20:12:56 +00:00
2023-01-23 12:17:07 +00:00
.tree {
padding: 0.5rem;
background-color: #fff;
}
2023-01-22 20:12:56 +00:00
.rename {
text-align: center;
display: flex;
flex-direction: column;
gap: 0.5rem;
align-items: center;
}
.rename input {
text-align: center;
}
.rename strong {
font-weight: 700;
}
.rename .inputs {
display: grid;
gap: 0.5rem;
grid-template: 1fr / auto 1fr auto;
width: 100%;
}
</style>