adds an init method to the tables store
This commit is contained in:
parent
d22d5c7c28
commit
71dc4938da
|
@ -69,20 +69,14 @@ export const getFrontendStore = () => {
|
||||||
// Initialise backend stores
|
// Initialise backend stores
|
||||||
const [
|
const [
|
||||||
_integrations,
|
_integrations,
|
||||||
_tables,
|
|
||||||
] = await Promise.all([
|
] = await Promise.all([
|
||||||
api.get("/api/integrations").then(r => r.json()),
|
api.get("/api/integrations").then(r => r.json())
|
||||||
api.get(`/api/tables`).then(r => r.json()),
|
|
||||||
])
|
])
|
||||||
datasources.init()
|
datasources.init()
|
||||||
integrations.set(_integrations)
|
integrations.set(_integrations)
|
||||||
queries.init()
|
queries.init()
|
||||||
database.set(application.instance)
|
database.set(application.instance)
|
||||||
tables.set({
|
tables.init()
|
||||||
list: _tables,
|
|
||||||
selected: {},
|
|
||||||
draft: {},
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
routing: {
|
routing: {
|
||||||
fetch: async () => {
|
fetch: async () => {
|
||||||
|
|
|
@ -71,10 +71,18 @@ export function createTablesStore() {
|
||||||
|
|
||||||
return {
|
return {
|
||||||
subscribe,
|
subscribe,
|
||||||
set,
|
|
||||||
fetch,
|
fetch,
|
||||||
select,
|
select,
|
||||||
save,
|
save,
|
||||||
|
init: async () => {
|
||||||
|
const response = await api.get("/api/tables")
|
||||||
|
const json = await response.json()
|
||||||
|
set({
|
||||||
|
list: json,
|
||||||
|
selected: {},
|
||||||
|
draft: {},
|
||||||
|
})
|
||||||
|
},
|
||||||
delete: async table => {
|
delete: async table => {
|
||||||
await api.delete(`/api/tables/${table._id}/${table._rev}`)
|
await api.delete(`/api/tables/${table._id}/${table._rev}`)
|
||||||
update(state => ({
|
update(state => ({
|
||||||
|
|
Loading…
Reference in New Issue