Merge branch 'master' into fix/views-with-hidden-relationships
This commit is contained in:
commit
825c517910
|
@ -70,6 +70,10 @@ export function encodeTableId(tableId: string) {
|
|||
}
|
||||
}
|
||||
|
||||
export function encodeViewId(viewId: string) {
|
||||
return encodeURIComponent(viewId)
|
||||
}
|
||||
|
||||
export function breakExternalTableId(tableId: string) {
|
||||
const parts = tableId.split(DOUBLE_SEPARATOR)
|
||||
let datasourceId = parts.shift()
|
||||
|
|
|
@ -66,7 +66,7 @@ export function getSourceId(ctx: Ctx): { tableId: string; viewId?: string } {
|
|||
if (docIds.isViewId(sourceId)) {
|
||||
return {
|
||||
tableId: utils.extractViewInfoFromID(sourceId).tableId,
|
||||
viewId: sourceId,
|
||||
viewId: sql.utils.encodeViewId(sourceId),
|
||||
}
|
||||
}
|
||||
return { tableId: sql.utils.encodeTableId(ctx.params.sourceId) }
|
||||
|
|
|
@ -55,7 +55,7 @@ if (descriptions.length) {
|
|||
let datasource: Datasource | undefined
|
||||
|
||||
function saveTableRequest(
|
||||
...overrides: Partial<Omit<SaveTableRequest, "name">>[]
|
||||
...overrides: Partial<SaveTableRequest>[]
|
||||
): SaveTableRequest {
|
||||
const req: SaveTableRequest = {
|
||||
name: generator.guid().replaceAll("-", "").substring(0, 16),
|
||||
|
@ -1898,6 +1898,36 @@ if (descriptions.length) {
|
|||
}
|
||||
expect(view.queryUI).toEqual(expected)
|
||||
})
|
||||
|
||||
it("tables and views can contain whitespaces", async () => {
|
||||
const table = await config.api.table.save(
|
||||
saveTableRequest({
|
||||
name: `table with spaces ${generator.hash()}`,
|
||||
schema: {
|
||||
name: {
|
||||
type: FieldType.STRING,
|
||||
name: "name",
|
||||
},
|
||||
},
|
||||
})
|
||||
)
|
||||
|
||||
const view = await config.api.viewV2.create({
|
||||
tableId: table._id!,
|
||||
name: `view name with spaces`,
|
||||
schema: {
|
||||
name: { visible: true },
|
||||
},
|
||||
})
|
||||
|
||||
expect(await getDelegate(view)).toEqual({
|
||||
...view,
|
||||
schema: {
|
||||
id: { ...table.schema["id"], visible: false },
|
||||
name: { ...table.schema["name"], visible: true },
|
||||
},
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
describe("updating table schema", () => {
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
import {
|
||||
context,
|
||||
db as dbCore,
|
||||
docIds,
|
||||
utils,
|
||||
sql,
|
||||
} from "@budibase/backend-core"
|
||||
import { context, db as dbCore, docIds, utils } from "@budibase/backend-core"
|
||||
import {
|
||||
DatabaseQueryOpts,
|
||||
Datasource,
|
||||
|
@ -334,7 +328,7 @@ export function extractViewInfoFromID(viewId: string) {
|
|||
const regex = new RegExp(`^(?<tableId>.+)${SEPARATOR}([^${SEPARATOR}]+)$`)
|
||||
const res = regex.exec(viewId)
|
||||
return {
|
||||
tableId: sql.utils.encodeTableId(res!.groups!["tableId"]),
|
||||
tableId: res!.groups!["tableId"],
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -46,8 +46,11 @@ export class ViewV2API extends TestAPI {
|
|||
}
|
||||
|
||||
get = async (viewId: string) => {
|
||||
return (await this._get<ViewResponseEnriched>(`/api/v2/views/${viewId}`))
|
||||
.data
|
||||
return (
|
||||
await this._get<ViewResponseEnriched>(
|
||||
`/api/v2/views/${encodeURIComponent(viewId)}`
|
||||
)
|
||||
).data
|
||||
}
|
||||
|
||||
fetch = async (expectations?: Expectations) => {
|
||||
|
|
Loading…
Reference in New Issue