1
0
Fork 0
mirror of synced 2024-07-06 06:50:49 +12:00

update org store and add loading state + notifications to save action

This commit is contained in:
Keviin Åberg Kultalahti 2021-05-05 18:30:03 +02:00
parent 1f451d07de
commit ef129b7595
2 changed files with 46 additions and 23 deletions

View file

@ -9,17 +9,34 @@
Input,
Toggle,
Dropzone,
notifications,
} from "@budibase/bbui"
import { organisation } from "stores/portal"
import analytics from "analytics"
let analyticsDisabled = analytics.disabled()
function toggleAnalytics() {
if (analyticsDisabled) {
analytics.optIn()
} else {
analytics.optOut()
}
}
let loading = false
let company = $organisation?.company
let logoUrl = $organisation.logoUrl
async function saveConfig() {
loading = true
const res = await organisation.save({ ...$organisation, company })
console.log(res)
await organisation.init()
console.log($organisation)
if (res.status === 200) {
notifications.success("General settings saved.")
} else {
notifications.danger("Error when saving settings.")
}
loading = false
}
</script>
@ -61,12 +78,16 @@
<div class="fields">
<div class="field">
<Label>Send Analytics to Budibase</Label>
<Toggle text="" />
<Toggle
text=""
bind:value={analyticsDisabled}
on:change={toggleAnalytics}
/>
</div>
</div>
</div>
<div class="save">
<Button on:click={saveConfig} cta>Save</Button>
<Button disabled={loading} on:click={saveConfig} cta>Save</Button>
</div>
</Layout>
</div>

View file

@ -3,32 +3,34 @@ import api from "builderStore/api"
export function createOrganisationStore() {
const { subscribe, set } = writable({})
async function init() {
try {
const response = await api.get(`/api/admin/configs/settings`)
const json = await response.json()
set(json)
} catch (error) {
set({
platformUrl: '',
logoUrl: '',
docsUrl: '',
company: ''
})
}
}
return {
subscribe,
save: async config => {
try {
const res = await api.post('/api/admin/configs', { type: 'settings', config})
return await res.json()
await api.post('/api/admin/configs', { type: 'settings', config})
await init()
return { status: 200 }
} catch (error) {
console.error(error)
}
},
init: async () => {
try {
const response = await api.get(`/api/admin/configs/settings`)
const json = await response.json()
set(json)
// set(json)
} catch (error) {
set({
platformUrl: '',
logoUrl: '',
docsUrl: '',
company: ''
})
return { error }
}
},
init
}
}