mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.3 KiB
24 lines
1.3 KiB
import type { ColumnType, LinkToAnotherRecordType } from 'nocodb-sdk' |
|
import { RelationTypes, UITypes, isLinksOrLTAR } from 'nocodb-sdk' |
|
|
|
export const isLTAR = (uidt: string | undefined, colOptions: unknown): colOptions is LinkToAnotherRecordType => { |
|
if (!uidt) return false |
|
return isLinksOrLTAR(uidt) |
|
} |
|
|
|
export const isHm = (column: ColumnType) => |
|
isLTAR(column.uidt!, column.colOptions) && column.colOptions.type === RelationTypes.HAS_MANY |
|
|
|
export const isMm = (column: ColumnType) => |
|
isLTAR(column.uidt!, column.colOptions) && column.colOptions.type === RelationTypes.MANY_TO_MANY |
|
|
|
export const isBt = (column: ColumnType) => |
|
isLTAR(column.uidt!, column.colOptions) && column.colOptions.type === RelationTypes.BELONGS_TO |
|
|
|
export const isLookup = (column: ColumnType) => column.uidt === UITypes.Lookup |
|
export const isRollup = (column: ColumnType) => column.uidt === UITypes.Rollup |
|
export const isFormula = (column: ColumnType) => column.uidt === UITypes.Formula |
|
export const isQrCode = (column: ColumnType) => column.uidt === UITypes.QrCode |
|
export const isBarcode = (column: ColumnType) => column.uidt === UITypes.Barcode |
|
export const isCount = (column: ColumnType) => column.uidt === UITypes.Count |
|
export const isLink = (column: ColumnType) => column.uidt === UITypes.Links
|
|
|