Exclude version query params if no version specified
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
94c6a66dff
commit
400a985c11
@ -826,7 +826,7 @@ export class ApiService {
|
||||
}
|
||||
|
||||
// If online, fetch the codium and store/update it locally
|
||||
this.get(`/code/${PageId}/${NodeId}/get/${CodiumId}?version=${version}`).subscribe({
|
||||
this.get(`/code/${PageId}/${NodeId}/get/${CodiumId}${version ? '?version=' + version : ''}`).subscribe({
|
||||
next: async result => {
|
||||
if ( version ) {
|
||||
return res(result.data);
|
||||
@ -931,38 +931,39 @@ export class ApiService {
|
||||
}
|
||||
|
||||
// If online, fetch the columns and sync the local database
|
||||
this.get(`/db/${PageId}/${NodeId}/get/${DatabaseId}/columns?database_version=${databaseVersion}`).subscribe({
|
||||
next: async results => {
|
||||
// Resolve this first, so the UI doesn't need to wait for the db sync to render
|
||||
res(results.data);
|
||||
this.get(`/db/${PageId}/${NodeId}/get/${DatabaseId}/columns${databaseVersion ? '?database_version=' + databaseVersion : ''}`)
|
||||
.subscribe({
|
||||
next: async results => {
|
||||
// Resolve this first, so the UI doesn't need to wait for the db sync to render
|
||||
res(results.data);
|
||||
|
||||
if ( databaseVersion ) {
|
||||
return;
|
||||
}
|
||||
|
||||
for ( const def of results.data ) {
|
||||
const existingColumnDef = await this.db.databaseColumns.where({
|
||||
DatabaseId, UUID: def.UUID,
|
||||
}).first() as DatabaseColumn;
|
||||
|
||||
if ( existingColumnDef ) {
|
||||
existingColumnDef.fillFromRecord(def);
|
||||
await existingColumnDef.save();
|
||||
} else {
|
||||
const newColumnDef = new DatabaseColumn(
|
||||
def.headerName,
|
||||
def.field,
|
||||
def.DatabaseId,
|
||||
def.UUID,
|
||||
def.Type,
|
||||
def.additionalData,
|
||||
);
|
||||
|
||||
await newColumnDef.save();
|
||||
if ( databaseVersion ) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
},
|
||||
error: rej,
|
||||
|
||||
for ( const def of results.data ) {
|
||||
const existingColumnDef = await this.db.databaseColumns.where({
|
||||
DatabaseId, UUID: def.UUID,
|
||||
}).first() as DatabaseColumn;
|
||||
|
||||
if ( existingColumnDef ) {
|
||||
existingColumnDef.fillFromRecord(def);
|
||||
await existingColumnDef.save();
|
||||
} else {
|
||||
const newColumnDef = new DatabaseColumn(
|
||||
def.headerName,
|
||||
def.field,
|
||||
def.DatabaseId,
|
||||
def.UUID,
|
||||
def.Type,
|
||||
def.additionalData,
|
||||
);
|
||||
|
||||
await newColumnDef.save();
|
||||
}
|
||||
}
|
||||
},
|
||||
error: rej,
|
||||
});
|
||||
});
|
||||
}
|
||||
@ -1016,7 +1017,7 @@ export class ApiService {
|
||||
}
|
||||
}
|
||||
|
||||
this.get(`/db/${PageId}/${NodeId}/get/${DatabaseId}?version=${version}`).subscribe({
|
||||
this.get(`/db/${PageId}/${NodeId}/get/${DatabaseId}${version ? '?version=' + version : ''}`).subscribe({
|
||||
next: async result => {
|
||||
if ( version ) {
|
||||
return res(result.data);
|
||||
|
Loading…
Reference in New Issue
Block a user