Add consent records tab to cookie banner config

Exposes the cookie consent record audit trail through a new
"Consent Records" tab on the cookie banner configuration page.
The full stack includes: extended coredata filter (visitor ID,
banner version), GraphQL schema/types/resolvers, and a React
page with SortableTable (size 50) and three compliance filters
(action, visitor ID, banner version).

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-27 13:24:14 +04:00
parent 86ffb8fbd6
commit 4147239fbc
15 changed files with 765 additions and 7 deletions

View File

@@ -102,6 +102,15 @@ type CookieBanner implements Node {
latestVersion: CookieBannerVersion @goField(forceResolver: true)
consentRecords(
first: Int
after: CursorKey
last: Int
before: CursorKey
orderBy: CookieConsentRecordOrder
filter: CookieConsentRecordFilter
): CookieConsentRecordConnection @goField(forceResolver: true)
createdAt: Datetime!
updatedAt: Datetime!

View File

@@ -0,0 +1,84 @@
# Copyright (c) 2026 Probo Inc <hello@getprobo.com>.
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
# AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
# OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
enum CookieConsentAction
@goModel(model: "go.probo.inc/probo/pkg/coredata.CookieConsentAction") {
ACCEPT_ALL
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.CookieConsentActionAcceptAll"
)
REJECT_ALL
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.CookieConsentActionRejectAll"
)
CUSTOMIZE
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.CookieConsentActionCustomize"
)
GPC
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.CookieConsentActionGPC"
)
}
enum CookieConsentRecordOrderField
@goModel(
model: "go.probo.inc/probo/pkg/coredata.CookieConsentRecordOrderField"
) {
CREATED_AT
@goEnum(
value: "go.probo.inc/probo/pkg/coredata.CookieConsentRecordOrderFieldCreatedAt"
)
}
input CookieConsentRecordOrder
@goModel(
model: "go.probo.inc/probo/pkg/server/api/console/v1/types.CookieConsentRecordOrderBy"
) {
direction: OrderDirection!
field: CookieConsentRecordOrderField!
}
input CookieConsentRecordFilter {
action: CookieConsentAction
visitorId: String
cookieBannerVersionId: ID
}
type CookieConsentRecord implements Node {
id: ID!
cookieBanner: CookieBanner @goField(forceResolver: true)
cookieBannerVersion: CookieBannerVersion @goField(forceResolver: true)
visitorId: String!
ipAddress: String
userAgent: String
consentData: String!
action: CookieConsentAction!
sdkVersion: String!
createdAt: Datetime!
}
type CookieConsentRecordConnection
@goModel(
model: "go.probo.inc/probo/pkg/server/api/console/v1/types.CookieConsentRecordConnection"
) {
totalCount: Int! @goField(forceResolver: true)
edges: [CookieConsentRecordEdge!]!
pageInfo: PageInfo!
}
type CookieConsentRecordEdge {
cursor: CursorKey!
node: CookieConsentRecord!
}