d25d482dc2
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
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled
155 lines
3.6 KiB
TypeScript
155 lines
3.6 KiB
TypeScript
/**
|
|
* Hooks for query builder UI state management (filters and sorting).
|
|
*/
|
|
|
|
import { useCallback } from 'react'
|
|
import { generateShortId } from '@sim/utils/id'
|
|
import {
|
|
COMPARISON_OPERATORS,
|
|
type FilterRule,
|
|
LOGICAL_OPERATORS,
|
|
SORT_DIRECTIONS,
|
|
type SortRule,
|
|
} from '@/lib/table/query-builder/constants'
|
|
import type { ColumnOption } from '@/lib/table/types'
|
|
|
|
const comparisonOptions: ColumnOption[] = COMPARISON_OPERATORS.map((op) => ({
|
|
value: op.value,
|
|
label: op.label,
|
|
}))
|
|
|
|
const logicalOptions: ColumnOption[] = LOGICAL_OPERATORS.map((op) => ({
|
|
value: op.value,
|
|
label: op.label,
|
|
}))
|
|
|
|
const sortDirectionOptions: ColumnOption[] = SORT_DIRECTIONS.map((d) => ({
|
|
value: d.value,
|
|
label: d.label,
|
|
}))
|
|
|
|
/** Manages filter rule state with add/remove/update operations. */
|
|
export function useFilterBuilder({
|
|
columns,
|
|
rules,
|
|
setRules,
|
|
isReadOnly = false,
|
|
}: UseFilterBuilderProps): UseFilterBuilderReturn {
|
|
const createDefaultRule = useCallback((): FilterRule => {
|
|
return {
|
|
id: generateShortId(),
|
|
logicalOperator: 'and',
|
|
column: columns[0]?.value || '',
|
|
operator: 'eq',
|
|
value: '',
|
|
}
|
|
}, [columns])
|
|
|
|
const addRule = useCallback(() => {
|
|
if (isReadOnly) return
|
|
setRules([...rules, createDefaultRule()])
|
|
}, [isReadOnly, rules, setRules, createDefaultRule])
|
|
|
|
const removeRule = useCallback(
|
|
(id: string) => {
|
|
if (isReadOnly) return
|
|
setRules(rules.filter((r) => r.id !== id))
|
|
},
|
|
[isReadOnly, rules, setRules]
|
|
)
|
|
|
|
const updateRule = useCallback(
|
|
(id: string, field: keyof FilterRule, value: string) => {
|
|
if (isReadOnly) return
|
|
setRules(rules.map((r) => (r.id === id ? { ...r, [field]: value } : r)))
|
|
},
|
|
[isReadOnly, rules, setRules]
|
|
)
|
|
|
|
return {
|
|
comparisonOptions,
|
|
logicalOptions,
|
|
sortDirectionOptions,
|
|
addRule,
|
|
removeRule,
|
|
updateRule,
|
|
createDefaultRule,
|
|
}
|
|
}
|
|
|
|
/** Manages sort rule state with add/remove/update operations. */
|
|
export function useSortBuilder({
|
|
columns,
|
|
sortRule,
|
|
setSortRule,
|
|
}: UseSortBuilderProps): UseSortBuilderReturn {
|
|
const addSort = useCallback(() => {
|
|
setSortRule({
|
|
id: generateShortId(),
|
|
column: columns[0]?.value || '',
|
|
direction: 'asc',
|
|
})
|
|
}, [columns, setSortRule])
|
|
|
|
const removeSort = useCallback(() => {
|
|
setSortRule(null)
|
|
}, [setSortRule])
|
|
|
|
const updateSortColumn = useCallback(
|
|
(column: string) => {
|
|
if (sortRule) {
|
|
setSortRule({ ...sortRule, column })
|
|
}
|
|
},
|
|
[sortRule, setSortRule]
|
|
)
|
|
|
|
const updateSortDirection = useCallback(
|
|
(direction: 'asc' | 'desc') => {
|
|
if (sortRule) {
|
|
setSortRule({ ...sortRule, direction })
|
|
}
|
|
},
|
|
[sortRule, setSortRule]
|
|
)
|
|
|
|
return {
|
|
sortDirectionOptions,
|
|
addSort,
|
|
removeSort,
|
|
updateSortColumn,
|
|
updateSortDirection,
|
|
}
|
|
}
|
|
|
|
export interface UseFilterBuilderProps {
|
|
columns: ColumnOption[]
|
|
rules: FilterRule[]
|
|
setRules: (rules: FilterRule[]) => void
|
|
isReadOnly?: boolean
|
|
}
|
|
|
|
export interface UseFilterBuilderReturn {
|
|
comparisonOptions: ColumnOption[]
|
|
logicalOptions: ColumnOption[]
|
|
sortDirectionOptions: ColumnOption[]
|
|
addRule: () => void
|
|
removeRule: (id: string) => void
|
|
updateRule: (id: string, field: keyof FilterRule, value: string) => void
|
|
createDefaultRule: () => FilterRule
|
|
}
|
|
|
|
interface UseSortBuilderProps {
|
|
columns: ColumnOption[]
|
|
sortRule: SortRule | null
|
|
setSortRule: (sort: SortRule | null) => void
|
|
}
|
|
|
|
interface UseSortBuilderReturn {
|
|
sortDirectionOptions: ColumnOption[]
|
|
addSort: () => void
|
|
removeSort: () => void
|
|
updateSortColumn: (column: string) => void
|
|
updateSortDirection: (direction: 'asc' | 'desc') => void
|
|
}
|