|
|
|
@ -17,9 +17,11 @@ |
|
|
|
import { writable } from "svelte/store" |
|
|
|
import { redirect } from "@roxi/routify" |
|
|
|
|
|
|
|
// only admins allowed here |
|
|
|
if (!$auth.isAdmin) { |
|
|
|
$redirect("../../portal") |
|
|
|
// Only admins allowed here |
|
|
|
$: { |
|
|
|
if (!$auth.isAdmin) { |
|
|
|
$redirect("../../portal") |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
const values = writable({ |
|
|
|
@ -70,68 +72,70 @@ |
|
|
|
} |
|
|
|
</script> |
|
|
|
|
|
|
|
<Layout> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="M">Organisation</Heading> |
|
|
|
<Body> |
|
|
|
Organisation settings is where you can edit your organisation name and |
|
|
|
logo. You can also configure your platform URL and enable or disable |
|
|
|
analytics. |
|
|
|
</Body> |
|
|
|
</Layout> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="S">Information</Heading> |
|
|
|
<Body size="S">Here you can update your logo and organization name.</Body> |
|
|
|
</Layout> |
|
|
|
<div class="fields"> |
|
|
|
<div class="field"> |
|
|
|
<Label size="L">Organization name</Label> |
|
|
|
<Input thin bind:value={$values.company} /> |
|
|
|
</div> |
|
|
|
<div class="field logo"> |
|
|
|
<Label size="L">Logo</Label> |
|
|
|
<div class="file"> |
|
|
|
<Dropzone |
|
|
|
value={[$values.logo]} |
|
|
|
on:change={e => { |
|
|
|
$values.logo = e.detail?.[0] |
|
|
|
}} |
|
|
|
/> |
|
|
|
{#if $auth.isAdmin} |
|
|
|
<Layout> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="M">Organisation</Heading> |
|
|
|
<Body> |
|
|
|
Organisation settings is where you can edit your organisation name and |
|
|
|
logo. You can also configure your platform URL and enable or disable |
|
|
|
analytics. |
|
|
|
</Body> |
|
|
|
</Layout> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="S">Information</Heading> |
|
|
|
<Body size="S">Here you can update your logo and organization name.</Body> |
|
|
|
</Layout> |
|
|
|
<div class="fields"> |
|
|
|
<div class="field"> |
|
|
|
<Label size="L">Organization name</Label> |
|
|
|
<Input thin bind:value={$values.company} /> |
|
|
|
</div> |
|
|
|
<div class="field logo"> |
|
|
|
<Label size="L">Logo</Label> |
|
|
|
<div class="file"> |
|
|
|
<Dropzone |
|
|
|
value={[$values.logo]} |
|
|
|
on:change={e => { |
|
|
|
$values.logo = e.detail?.[0] |
|
|
|
}} |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="S">Platform</Heading> |
|
|
|
<Body size="S">Here you can set up general platform settings.</Body> |
|
|
|
</Layout> |
|
|
|
<div class="fields"> |
|
|
|
<div class="field"> |
|
|
|
<Label size="L">Platform URL</Label> |
|
|
|
<Input thin bind:value={$values.platformUrl} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="S" noPadding> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="S">Analytics</Heading> |
|
|
|
<Body size="S"> |
|
|
|
If you would like to send analytics that help us make Budibase better, |
|
|
|
please let us know below. |
|
|
|
</Body> |
|
|
|
<Heading size="S">Platform</Heading> |
|
|
|
<Body size="S">Here you can set up general platform settings.</Body> |
|
|
|
</Layout> |
|
|
|
<div class="fields"> |
|
|
|
<div class="field"> |
|
|
|
<Label size="L">Send Analytics to Budibase</Label> |
|
|
|
<Toggle text="" bind:value={$values.analytics} /> |
|
|
|
<Label size="L">Platform URL</Label> |
|
|
|
<Input thin bind:value={$values.platformUrl} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<Divider size="S" /> |
|
|
|
<Layout gap="S" noPadding> |
|
|
|
<Layout gap="XS" noPadding> |
|
|
|
<Heading size="S">Analytics</Heading> |
|
|
|
<Body size="S"> |
|
|
|
If you would like to send analytics that help us make Budibase better, |
|
|
|
please let us know below. |
|
|
|
</Body> |
|
|
|
</Layout> |
|
|
|
<div class="fields"> |
|
|
|
<div class="field"> |
|
|
|
<Label size="L">Send Analytics to Budibase</Label> |
|
|
|
<Toggle text="" bind:value={$values.analytics} /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</Layout> |
|
|
|
<div> |
|
|
|
<Button disabled={loading} on:click={saveConfig} cta>Save</Button> |
|
|
|
</div> |
|
|
|
</Layout> |
|
|
|
<div> |
|
|
|
<Button disabled={loading} on:click={saveConfig} cta>Save</Button> |
|
|
|
</div> |
|
|
|
</Layout> |
|
|
|
{/if} |
|
|
|
|
|
|
|
<style> |
|
|
|
.fields { |
|
|
|
|