3
0
2024-12-11 15:35:16 +01:00

240 lines
5.2 KiB
CUE

package compose
import (
"github.com/cortezaproject/corteza/server/codegen/schema"
)
page: {
parents: [
{handle: "namespace"},
]
model: {
defaultSetter: true
ident: "compose_page"
attributes: {
id: schema.IdField
title: {
goType: "string",
sortable: true
dal: {}
}
handle: schema.HandleField
self_id: {
ident: "selfID",
goType: "uint64",
dal: { type: "Ref", refModelResType: "corteza::compose:page" }
sortable: true
envoy: {
store: {
filterRefField: "ParentID"
}
yaml: {
identKeyAlias: ["parent"]
}
}
}
module_id: {
ident: "moduleID",
goType: "uint64",
storeIdent: "rel_module"
dal: { type: "Ref", refModelResType: "corteza::compose:module" }
envoy: {
yaml: {
identKeyAlias: ["module"]
}
}
}
namespace_id: {
ident: "namespaceID",
goType: "uint64",
storeIdent: "rel_namespace"
dal: { type: "Ref", refModelResType: "corteza::compose:namespace" }
envoy: {
yaml: {
identKeyAlias: ["namespace"]
}
}
}
meta: {
goType: "types.PageMeta"
dal: { type: "JSON", defaultEmptyObject: true }
omitSetter: true
omitGetter: true
}
config: {
goType: "types.PageConfig"
dal: { type: "JSON", defaultEmptyObject: true }
omitSetter: true
omitGetter: true
}
blocks: {
goType: "types.PageBlocks"
dal: { type: "JSON", defaultEmptyObject: true }
omitSetter: true
omitGetter: true
envoy: {
yaml: {
customDecoder: true
customEncoder: true
}
}
}
children: {
goType: "types.PageSet", store: false
omitSetter: true
omitGetter: true
}
visible: {
goType: "bool"
dal: { type: "Boolean", default: true }
}
weight: {
goType: "int", sortable: true
dal: { type: "Number", default: 0, meta: { "rdbms:type": "integer" } }
envoy: {
yaml: {
identKeyAlias: ["order"]
}
}
}
description: {
goType: "string"
dal: {}
}
created_at: schema.SortableTimestampNowField
updated_at: schema.SortableTimestampNilField
deleted_at: schema.SortableTimestampNilField
}
indexes: {
"primary": { attribute: "id" }
"namespace": { attribute: "namespace_id" },
"module": { attribute: "module_id" },
"self_id": { attribute: "self_id" },
"unique_handle": {
fields: [{ attribute: "handle", modifiers: ["LOWERCASE"] }, { attribute: "namespace_id" }]
predicate: "handle != '' AND deleted_at IS NULL"
}
}
}
filter: {
struct: {
page_id: { goType: "[]uint64", ident: "pageID", storeIdent: "id" }
namespace_id: { goType: "uint64", ident: "namespaceID", storeIdent: "rel_namespace" }
parent_id: { goType: "uint64", ident: "parentID" }
module_id: { goType: "uint64", ident: "moduleID", storeIdent: "rel_module" }
root: { goType: "bool" }
handle: { goType: "string" }
title: { goType: "string" }
deleted: { goType: "filter.State", storeIdent: "deleted_at" }
}
query: ["handle", "title", "description"]
byValue: ["page_id", "handle", "namespace_id", "module_id"]
byNilState: ["deleted"]
}
envoy: {
scoped: true
yaml: {
supportMappedInput: true
mappedField: "Handle"
identKeyAlias: ["pages", "pg"]
extendedResourceDecoders: [{
ident: "pages"
expIdent: "Pages"
identKeys: ["children", "pages"]
supportMappedInput: true
mappedField: "Handle"
}]
extendedResourceRefIdent: "SelfID"
}
store: {
extendedFilterBuilder: true
extendedRefDecoder: true
}
}
rbac: {
operations: {
"read": {}
"update": {}
"delete": {}
"export": description: "Access to export pages"
"page-layout.create": description: "Create page layout on namespace"
"page-layouts.search": description: "List, search or filter page layouts on namespace"
}
}
locale: {
extended: true
keys: {
title: {}
description: {}
blockTitle: {
path: ["pageBlock", {part: "blockID", var: true}, "title"]
customHandler: true
}
blockDescription: {
path: ["pageBlock", {part: "blockID", var: true}, "description"]
customHandler: true
}
blockAutomationButtonLabel: {
path: ["pageBlock", {part: "blockID", var: true}, "button", {part: "buttonID", var: true}, "label"]
customHandler: true
}
blockContentBody: {
path: ["pageBlock", {part: "blockID", var: true}, "content", "body"]
customHandler: true
}
}
}
store: {
ident: "composePage"
api: {
lookups: [
{
fields: ["namespace_id", "handle"]
nullConstraint: ["deleted_at"]
description: """
searches for page by handle (case-insensitive)
"""
}, {
fields: ["namespace_id", "module_id"]
nullConstraint: ["deleted_at"]
description: """
searches for page by moduleID
"""
}, {
fields: ["id"]
description: """
searches for compose page by ID
It returns compose page even if deleted
"""
},
]
functions: [
{
expIdent: "ReorderComposePages"
args: [
{ ident: "namespace_id", goType: "uint64" },
{ ident: "parent_id", goType: "uint64" },
{ ident: "page_ids", goType: "[]uint64" }
]
}
]
}
}
}