Browse Source

fix broken settings page

pull/1491/head
Keviin Åberg Kultalahti 5 years ago
parent
commit
a31b8cbdbf
  1. 42
      packages/builder/src/pages/builder/portal/settings/general.svelte
  2. 41
      packages/builder/src/stores/portal/organisation.js

42
packages/builder/src/pages/builder/portal/settings/general.svelte

@ -25,9 +25,6 @@
}
let loading = false
let company
let logoUrl
let file
async function uploadLogo() {
@ -41,19 +38,18 @@
async function saveConfig() {
loading = true
await toggleAnalytics()
const res = await uploadLogo()
console.log(res)
// 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 {
// notifications.danger("Error when saving settings.")
// }
if (file) {
await uploadLogo()
}
const res = await organisation.save({
company: $organisation.company,
platformUrl: $organisation.platformUrl,
})
if (res.status === 200) {
notifications.success("Settings saved.")
} else {
notifications.error(res.message)
}
loading = false
}
</script>
@ -76,18 +72,13 @@
<div class="fields">
<div class="field">
<Label size="L">Organization name</Label>
<Input
thin
value={$organisation?.config?.company}
on:change={e => (company = e.detail)}
/>
<Input thin bind:value={$organisation.company} />
</div>
<div class="field logo">
<Label size="L">Logo</Label>
<div class="file">
<Dropzone
value={[file]}
gallery={false}
on:change={e => {
file = e.detail?.[0]
}}
@ -103,12 +94,7 @@
<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)}
/>
<Input thin bind:value={$organisation.platformUrl} />
</div>
</div>
</div>

41
packages/builder/src/stores/portal/organisation.js

@ -1,37 +1,40 @@
import { writable } from "svelte/store"
import { writable, get } from "svelte/store"
import api from "builderStore/api"
const FALLBACK_CONFIG = {
platformUrl: "",
logoUrl: "",
docsUrl: "",
company: "",
company: "http://localhost:10000",
}
export function createOrganisationStore() {
const { subscribe, set } = writable({})
const store = writable({})
const { subscribe, set } = store
async function init() {
const response = await api.get(`/api/admin/configs/settings`)
const json = await response.json()
if (json.status === 400) {
set({ config: FALLBACK_CONFIG})
} else {
set(json)
}
const res = await api.get(`/api/admin/configs/settings`)
const json = await res.json()
if (json.status === 400) {
set(FALLBACK_CONFIG)
} else {
set({...json.config, _rev: json._rev})
}
}
async function save(config) {
const res = await api.post("/api/admin/configs", { type: "settings", config, _rev: get(store)._rev } )
const json = await res.json()
console.log(json)
await init()
return { status: 200 }
}
return {
subscribe,
save: async config => {
try {
await api.post("/api/admin/configs", { type: "settings", config })
await init()
return { status: 200 }
} catch (error) {
return { status: error }
}
},
set,
save,
init,
}
}

Loading…
Cancel
Save