1
0
Fork 0
mirror of synced 2024-07-07 07:15:43 +12:00

add wip file upload

This commit is contained in:
Keviin Åberg Kultalahti 2021-05-12 14:08:44 +02:00
parent c290f00fe7
commit 352f8dd625
2 changed files with 53 additions and 8 deletions

View file

@ -21,6 +21,7 @@
const schema = {
email: {},
status: {},
builder: {},
// access: {},
// group: {}
}

View file

@ -1,4 +1,5 @@
<script>
import { object, string } from "yup"
import {
Layout,
Heading,
@ -12,6 +13,7 @@
notifications,
} from "@budibase/bbui"
import { organisation } from "stores/portal"
import { api } from "builderStore/api"
import analytics from "analytics"
let analyticsDisabled = analytics.disabled()
@ -25,13 +27,26 @@
let loading = false
$: company = $organisation?.company
$: logoUrl = $organisation.logoUrl
let company
let logoUrl
let file
async function uploadLogo() {
let data = new FormData()
data.append("files", file)
const res = await api.post("/api/admin/configs/upload/settings/logo")
}
async function saveConfig() {
loading = true
await toggleAnalytics()
const res = await organisation.save({ ...$organisation, company })
console.log("company", company)
const res = await organisation.save({
company: company || $organisation?.config?.company,
// logoUrl,
// platformUrl,
})
if (res.status === 200) {
notifications.success("General settings saved.")
} else {
@ -59,14 +74,40 @@
<div class="fields">
<div class="field">
<Label size="L">Organization name</Label>
<Input thin bind:value={company} />
<Input
thin
value={$organisation?.config?.company}
on:change={e => (company = e.detail)}
/>
</div>
<!-- <div class="field">
<Label>Logo</Label>
<div class="field logo">
<Label size="L">Logo</Label>
<div class="file">
<Dropzone />
<Dropzone
label="Select Image"
value={[file]}
on:change={e => {
file = e.detail?.[0]
}}
/>
</div>
</div> -->
</div>
</div>
</div>
<Divider size="S" />
<div class="analytics">
<Heading size="S">Platform</Heading>
<Body>Here you can set up general platform settings.</Body>
<div class="fields">
<div class="field">
<Label size="L">Platform URL</Label>
<Input
thin
value={$organisation?.config?.platformUrl ||
"http://localhost:10000"}
on:change={e => (company = e.detail)}
/>
</div>
</div>
</div>
<Divider size="S" />
@ -103,6 +144,9 @@
.file {
max-width: 30ch;
}
.logo {
align-items: start;
}
.intro {
display: grid;
}