Some final updates, clean up some code that could be causing reactive issues.
This commit is contained in:
parent
049d4a0363
commit
ab66378fbf
|
@ -62,65 +62,18 @@
|
||||||
let isManyToMany, isManyToOne, relationshipType
|
let isManyToMany, isManyToOne, relationshipType
|
||||||
let hasValidated = false
|
let hasValidated = false
|
||||||
|
|
||||||
$: {
|
|
||||||
if (!fromPrimary) {
|
|
||||||
fromPrimary = fromRelationship.foreignKey
|
|
||||||
}
|
|
||||||
if (!fromForeign) {
|
|
||||||
fromForeign = toRelationship.foreignKey
|
|
||||||
}
|
|
||||||
if (!fromColumn && !errors.fromColumn) {
|
|
||||||
fromColumn = toRelationship.name
|
|
||||||
}
|
|
||||||
if (!toColumn && !errors.toColumn) {
|
|
||||||
toColumn = fromRelationship.name
|
|
||||||
}
|
|
||||||
if (!fromId) {
|
|
||||||
fromId = toRelationship.tableId
|
|
||||||
}
|
|
||||||
if (!toId) {
|
|
||||||
toId = fromRelationship.tableId
|
|
||||||
}
|
|
||||||
if (!throughId) {
|
|
||||||
throughId = fromRelationship.through
|
|
||||||
throughFromKey = fromRelationship.throughFrom
|
|
||||||
throughToKey = fromRelationship.throughTo
|
|
||||||
}
|
|
||||||
if (!relationshipType) {
|
|
||||||
relationshipType =
|
|
||||||
fromRelationship.relationshipType || RelationshipTypes.MANY_TO_ONE
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$: tableOptions = plusTables.map(table => ({
|
$: tableOptions = plusTables.map(table => ({
|
||||||
label: table.name,
|
label: table.name,
|
||||||
value: table._id,
|
value: table._id,
|
||||||
}))
|
}))
|
||||||
$: valid = getErrorCount(errors) === 0 && allRequiredAttributesSet()
|
$: valid = getErrorCount(errors) === 0 && allRequiredAttributesSet()
|
||||||
|
|
||||||
$: isManyToMany = relationshipType === RelationshipTypes.MANY_TO_MANY
|
$: isManyToMany = relationshipType === RelationshipTypes.MANY_TO_MANY
|
||||||
$: isManyToOne = relationshipType === RelationshipTypes.MANY_TO_ONE
|
$: isManyToOne = relationshipType === RelationshipTypes.MANY_TO_ONE
|
||||||
$: fromTable = plusTables.find(table => table._id === fromId)
|
$: fromTable = plusTables.find(table => table._id === fromId)
|
||||||
$: toTable = plusTables.find(table => table._id === toId)
|
$: toTable = plusTables.find(table => table._id === toId)
|
||||||
$: throughTable = plusTables.find(table => table._id === throughId)
|
$: throughTable = plusTables.find(table => table._id === throughId)
|
||||||
|
|
||||||
$: toRelationship.relationshipType = fromRelationship?.relationshipType
|
$: toRelationship.relationshipType = fromRelationship?.relationshipType
|
||||||
|
|
||||||
function getErrorCount(errors) {
|
|
||||||
return Object.entries(errors)
|
|
||||||
.filter(entry => !!entry[1])
|
|
||||||
.map(entry => entry[0]).length
|
|
||||||
}
|
|
||||||
|
|
||||||
function allRequiredAttributesSet() {
|
|
||||||
const base = fromTable && toTable && fromColumn && toColumn
|
|
||||||
if (isManyToOne) {
|
|
||||||
return base && fromPrimary && fromForeign
|
|
||||||
} else {
|
|
||||||
return base && throughTable && throughFromKey && throughToKey
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function invalidThroughTable() {
|
function invalidThroughTable() {
|
||||||
// need to know the foreign key columns to check error
|
// need to know the foreign key columns to check error
|
||||||
if (!throughId || !throughToKey || !throughFromKey) {
|
if (!throughId || !throughToKey || !throughFromKey) {
|
||||||
|
@ -137,6 +90,49 @@
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
function relationshipExists() {
|
||||||
|
if (
|
||||||
|
originalFromTable &&
|
||||||
|
originalToTable &&
|
||||||
|
originalFromTable === fromTable &&
|
||||||
|
originalToTable === toTable
|
||||||
|
) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
let fromThroughLinks = Object.values(
|
||||||
|
datasource.entities[fromTable.name].schema
|
||||||
|
).filter(value => value.through)
|
||||||
|
let toThroughLinks = Object.values(
|
||||||
|
datasource.entities[toTable.name].schema
|
||||||
|
).filter(value => value.through)
|
||||||
|
|
||||||
|
const matchAgainstUserInput = (fromTableId, toTableId) =>
|
||||||
|
(fromTableId === fromId && toTableId === toId) ||
|
||||||
|
(fromTableId === toId && toTableId === fromId)
|
||||||
|
|
||||||
|
return !!fromThroughLinks.find(from =>
|
||||||
|
toThroughLinks.find(
|
||||||
|
to =>
|
||||||
|
from.through === to.through &&
|
||||||
|
matchAgainstUserInput(from.tableId, to.tableId)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
function getErrorCount(errors) {
|
||||||
|
return Object.entries(errors)
|
||||||
|
.filter(entry => !!entry[1])
|
||||||
|
.map(entry => entry[0]).length
|
||||||
|
}
|
||||||
|
|
||||||
|
function allRequiredAttributesSet() {
|
||||||
|
const base = fromTable && toTable && fromColumn && toColumn
|
||||||
|
if (isManyToOne) {
|
||||||
|
return base && fromPrimary && fromForeign
|
||||||
|
} else {
|
||||||
|
return base && throughTable && throughFromKey && throughToKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function validate() {
|
function validate() {
|
||||||
if (!allRequiredAttributesSet() && !hasValidated) {
|
if (!allRequiredAttributesSet() && !hasValidated) {
|
||||||
|
@ -153,7 +149,7 @@
|
||||||
errObj.throughToKey = errorChecker.manyForeignKeySet(throughToKey)
|
errObj.throughToKey = errorChecker.manyForeignKeySet(throughToKey)
|
||||||
errObj.throughTable = errorChecker.throughIsNullable()
|
errObj.throughTable = errorChecker.throughIsNullable()
|
||||||
errObj.fromForeign = errorChecker.foreignKeySet(fromForeign)
|
errObj.fromForeign = errorChecker.foreignKeySet(fromForeign)
|
||||||
errObj.fromPrimary = errorChecker.foreignKeySet(fromPrimary)
|
errObj.fromPrimary = errorChecker.primaryKeySet(fromPrimary)
|
||||||
errObj.fromTable = errorChecker.doesRelationshipExists()
|
errObj.fromTable = errorChecker.doesRelationshipExists()
|
||||||
errObj.toTable = errorChecker.doesRelationshipExists()
|
errObj.toTable = errorChecker.doesRelationshipExists()
|
||||||
// currently don't support relationships back onto the table itself, needs to relate out
|
// currently don't support relationships back onto the table itself, needs to relate out
|
||||||
|
@ -252,35 +248,6 @@
|
||||||
toRelationship = relateTo
|
toRelationship = relateTo
|
||||||
}
|
}
|
||||||
|
|
||||||
function relationshipExists() {
|
|
||||||
if (
|
|
||||||
originalFromTable &&
|
|
||||||
originalToTable &&
|
|
||||||
originalFromTable === fromTable &&
|
|
||||||
originalToTable === toTable
|
|
||||||
) {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
let fromThroughLinks = Object.values(
|
|
||||||
datasource.entities[fromTable.name].schema
|
|
||||||
).filter(value => value.through)
|
|
||||||
let toThroughLinks = Object.values(
|
|
||||||
datasource.entities[toTable.name].schema
|
|
||||||
).filter(value => value.through)
|
|
||||||
|
|
||||||
const matchAgainstUserInput = (fromTableId, toTableId) =>
|
|
||||||
(fromTableId === fromId && toTableId === toId) ||
|
|
||||||
(fromTableId === toId && toTableId === fromId)
|
|
||||||
|
|
||||||
return !!fromThroughLinks.find(from =>
|
|
||||||
toThroughLinks.find(
|
|
||||||
to =>
|
|
||||||
from.through === to.through &&
|
|
||||||
matchAgainstUserInput(from.tableId, to.tableId)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
function removeExistingRelationship() {
|
function removeExistingRelationship() {
|
||||||
if (originalFromTable && originalFromColumnName) {
|
if (originalFromTable && originalFromColumnName) {
|
||||||
delete datasource.entities[originalFromTable.name].schema[
|
delete datasource.entities[originalFromTable.name].schema[
|
||||||
|
@ -325,6 +292,21 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
|
if (fromRelationship) {
|
||||||
|
fromPrimary = fromRelationship.foreignKey
|
||||||
|
toId = fromRelationship.tableId
|
||||||
|
throughId = fromRelationship.through
|
||||||
|
throughFromKey = fromRelationship.throughFrom
|
||||||
|
throughToKey = fromRelationship.throughTo
|
||||||
|
toColumn = fromRelationship.name
|
||||||
|
}
|
||||||
|
if (toRelationship) {
|
||||||
|
fromForeign = toRelationship.foreignKey
|
||||||
|
fromId = toRelationship.tableId
|
||||||
|
fromColumn = toRelationship.name
|
||||||
|
}
|
||||||
|
relationshipType =
|
||||||
|
fromRelationship.relationshipType || RelationshipTypes.MANY_TO_ONE
|
||||||
if (selectedFromTable) {
|
if (selectedFromTable) {
|
||||||
fromColumn = selectedFromTable.name
|
fromColumn = selectedFromTable.name
|
||||||
fromPrimary = selectedFromTable?.primary[0] || null
|
fromPrimary = selectedFromTable?.primary[0] || null
|
||||||
|
|
|
@ -1,16 +1,15 @@
|
||||||
import { RelationshipTypes } from "constants/backend"
|
import { RelationshipTypes } from "constants/backend"
|
||||||
|
|
||||||
export const typeMismatch =
|
const typeMismatch = "Column type of the foreign key must match the primary key"
|
||||||
"Column type of the foreign key must match the primary key"
|
const columnCantExist = "Column name cannot be an existing column"
|
||||||
export const columnCantExist = "Column name cannot be an existing column"
|
const mustBeDifferentTables = "From/to/through tables must be different"
|
||||||
export const mustBeDifferentTables = "From/to/through tables must be different"
|
const primaryKeyNotSet = "Please pick the primary key"
|
||||||
export const primaryKeyNotSet = "Please pick the primary key"
|
const throughNotNullable =
|
||||||
export const throughNotNullable =
|
|
||||||
"Ensure non-key columns are nullable or auto-generated"
|
"Ensure non-key columns are nullable or auto-generated"
|
||||||
export const noRelationshipType = "Please specify a relationship type"
|
const noRelationshipType = "Please specify a relationship type"
|
||||||
export const tableNotSet = "Please specify a table"
|
const tableNotSet = "Please specify a table"
|
||||||
export const foreignKeyNotSet = "Please pick a foreign key"
|
const foreignKeyNotSet = "Please pick a foreign key"
|
||||||
export const relationshipAlreadyExists =
|
const relationshipAlreadyExists =
|
||||||
"A relationship between these tables already exists"
|
"A relationship between these tables already exists"
|
||||||
|
|
||||||
function isColumnNameBeingUsed(table, columnName, originalName) {
|
function isColumnNameBeingUsed(table, columnName, originalName) {
|
||||||
|
@ -55,6 +54,10 @@ export class RelationshipErrorChecker {
|
||||||
return !this.isMany() && !key ? foreignKeyNotSet : null
|
return !this.isMany() && !key ? foreignKeyNotSet : null
|
||||||
}
|
}
|
||||||
|
|
||||||
|
primaryKeySet(key) {
|
||||||
|
return !this.isMany() && !key ? primaryKeyNotSet : null
|
||||||
|
}
|
||||||
|
|
||||||
throughIsNullable() {
|
throughIsNullable() {
|
||||||
return this.invalidThroughTable() ? throughNotNullable : null
|
return this.invalidThroughTable() ? throughNotNullable : null
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue