d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
40 lines
1.3 KiB
TypeScript
40 lines
1.3 KiB
TypeScript
/**
|
|
* Constants for table query builder UI (filtering and sorting).
|
|
*/
|
|
|
|
export type { FilterRule, SortRule } from '@/lib/table/types'
|
|
|
|
export const COMPARISON_OPERATORS = [
|
|
{ value: 'eq', label: 'equals' },
|
|
{ value: 'ne', label: 'not equals' },
|
|
{ value: 'contains', label: 'contains' },
|
|
{ value: 'ncontains', label: 'does not contain' },
|
|
{ value: 'startsWith', label: 'starts with' },
|
|
{ value: 'endsWith', label: 'ends with' },
|
|
{ value: 'gt', label: 'greater than' },
|
|
{ value: 'gte', label: 'greater or equal' },
|
|
{ value: 'lt', label: 'less than' },
|
|
{ value: 'lte', label: 'less or equal' },
|
|
{ value: 'in', label: 'in array' },
|
|
{ value: 'nin', label: 'not in array' },
|
|
{ value: 'isEmpty', label: 'is empty' },
|
|
{ value: 'isNotEmpty', label: 'is not empty' },
|
|
] as const
|
|
|
|
/**
|
|
* Operators that take no value — the filter is fully specified by column +
|
|
* operator alone. The UI hides the value input and skips the value-required
|
|
* check for these, and the converter serializes them to `{ $empty: bool }`.
|
|
*/
|
|
export const VALUELESS_OPERATORS = new Set<string>(['isEmpty', 'isNotEmpty'])
|
|
|
|
export const LOGICAL_OPERATORS = [
|
|
{ value: 'and', label: 'and' },
|
|
{ value: 'or', label: 'or' },
|
|
] as const
|
|
|
|
export const SORT_DIRECTIONS = [
|
|
{ value: 'asc', label: 'ascending' },
|
|
{ value: 'desc', label: 'descending' },
|
|
] as const
|