Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Defactor knex adapter in preparation for relationship changes #2262

Merged
merged 1 commit into from
Jan 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/stale-donuts-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@keystonejs/adapter-knex': patch
---

Internal code modifications, no functional changes.
199 changes: 130 additions & 69 deletions packages/adapter-knex/lib/adapter-knex.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,16 +288,30 @@ class KnexListAdapter extends BaseListAdapter {
////////// Mutations //////////

async _createOrUpdateField({ value, adapter, itemId }) {
if (value && value.length) {
const tableName = this._manyTable(adapter.path);
const selectCol = adapter.refListId;
const matchCol = `${this.key}_id`;
return this._query()
.insert(value.map(id => ({ [matchCol]: itemId, [selectCol]: id })))
.into(tableName)
.returning(selectCol);
const rel = {
cardinality: 'N:N',
tableName: this._manyTable(adapter.path),
columnNames: { [this.key]: { near: `${this.key}_id`, far: adapter.refListId } },
};
const { cardinality, tableName, columnNames } = rel;
if (cardinality === '1:1') {
// Implement me
} else {
return [];
const values = value; // Rename this because we have a many situation
if (values && values.length) {
if (cardinality === 'N:N') {
const itemCol = columnNames[this.key].near;
const otherCol = columnNames[this.key].far;
return this._query()
.insert(values.map(id => ({ [itemCol]: itemId, [otherCol]: id })))
.into(tableName)
.returning(otherCol);
} else {
// Implement me
}
} else {
return [];
}
}
}

Expand All @@ -321,8 +335,8 @@ class KnexListAdapter extends BaseListAdapter {
}

async _update(id, data) {
// Update the real data
const realData = pick(data, this.realKeys);
// Update the real data
const query = this._query()
.table(this.tableName)
.where({ id });
Expand All @@ -334,34 +348,45 @@ class KnexListAdapter extends BaseListAdapter {
// For every many-field, update the many-table
await this._processNonRealFields(data, async ({ path, value: newValues, adapter }) => {
const { refListId } = adapter;
const tableName = this._manyTable(path);

const rel = {
cardinality: 'N:N',
tableName: this._manyTable(path),
columnNames: { [this.key]: { near: `${this.key}_id`, far: refListId } },
};
const { cardinality, tableName, columnNames } = rel;
let value;
// Future task: Is there some way to combine the following three
// operations into a single query?

const selectCol = refListId;
const matchCol = `${this.key}_id`;

// Work out what we've currently got
const currentRefIds = (
await this._query()
.select(selectCol)
.from(tableName)
.where(matchCol, item.id)
.returning(selectCol)
).map(x => x[selectCol].toString());

// Delete what needs to be deleted
const needsDelete = currentRefIds.filter(x => !newValues.includes(x));
if (needsDelete.length) {
await this._query()
.table(tableName)
.where(matchCol, item.id)
.whereIn(refListId, needsDelete)
.del();
if (cardinality !== '1:1') {
// Work out what we've currently got
const selectCol = columnNames[this.key].far;
const matchCol = columnNames[this.key].near;
const currentRefIds = (
await this._query()
.select(selectCol)
.from(tableName)
.where(matchCol, item.id)
.returning(selectCol)
).map(x => x[selectCol].toString());

// Delete what needs to be deleted
const needsDelete = currentRefIds.filter(x => !newValues.includes(x));
if (needsDelete.length) {
if (cardinality === 'N:N') {
await this._query()
.table(tableName)
.where(matchCol, item.id) // near side
.whereIn(selectCol, needsDelete) // far side
.del();
} else {
// Implement me
}
}
value = newValues.filter(id => !currentRefIds.includes(id));
} else {
// Implement me
}
// Add what needs to be added
const value = newValues.filter(id => !currentRefIds.includes(id));
await this._createOrUpdateField({ value, adapter, itemId: item.id });
});
return (await this._itemsQuery({ where: { id: item.id }, first: 1 }))[0] || null;
Expand All @@ -374,19 +399,26 @@ class KnexListAdapter extends BaseListAdapter {
Promise.all(
adapter.fieldAdapters
.filter(a => a.isRelationship && a.refListKey === this.key)
.map(a =>
a.config.many
? adapter
._query()
.table(adapter._manyTable(a.path))
.where(a.refListId, id)
.del()
: adapter
._query()
.table(adapter.tableName)
.where(a.path, id)
.update({ [a.path]: null })
)
.map(a => {
const rel = {
cardinality: a.config.many ? 'N:N' : '1:N',
columnName: a.path,
tableName: a.config.many ? adapter._manyTable(a.path) : adapter.tableName,
columnNames: { [this.key]: { near: a.refListId } },
};
const { cardinality, columnName, tableName, columnNames } = rel;
if (cardinality === 'N:N') {
return this._query()
.table(tableName)
.where(columnNames[this.key].near, id)
.del();
} else {
return this._query()
.table(tableName)
.where(columnName, id)
.update({ [columnName]: null });
}
})
)
)
);
Expand Down Expand Up @@ -439,20 +471,37 @@ class QueryBuilder {

this._addJoins(this._query, listAdapter, where, baseTableAlias);
if (Object.keys(from).length) {
const otherList = from.fromList.adapter._manyTable(from.fromField);
const rel = {
cardinality: 'N:N',
tableName: from.fromList.adapter._manyTable(from.fromField),
columnNames: {
[listAdapter.key]: {
near: `${listAdapter.key}_id`,
far: `${from.fromList.adapter.key}_id`,
},
},
};
const { cardinality, tableName, columnNames } = rel;
const otherTableAlias = this._getNextBaseTableAlias();
this._query.leftOuterJoin(
`${otherList} as ${otherTableAlias}`,
`${otherTableAlias}.${listAdapter.key}_id`,
`${baseTableAlias}.id`
);
this._query.whereRaw('true');
this._query.andWhere(`${otherTableAlias}.${from.fromList.adapter.key}_id`, `=`, from.fromId);

if (cardinality === 'N:N') {
const { near, far } = columnNames[listAdapter.key];
this._query.leftOuterJoin(
`${tableName} as ${otherTableAlias}`,
`${otherTableAlias}.${near}`,
`${baseTableAlias}.id`
);
this._query.whereRaw('true');
this._query.andWhere(`${otherTableAlias}.${far}`, `=`, from.fromId);
} else {
// Implement me
}
} else {
// Dumb sentinel to avoid juggling where() vs andWhere()
// PG is smart enough to see it's a no-op, and now we can just keep chaining andWhere()
this._query.whereRaw('true');
}

this._addWheres(w => this._query.andWhere(w), listAdapter, where, baseTableAlias);

// Add query modifiers as required
Expand Down Expand Up @@ -563,23 +612,35 @@ class QueryBuilder {
} else {
// Many relationship
const [p, constraintType] = path.split('_');
const thisID = `${listAdapter.key}_id`;
const manyTableName = listAdapter._manyTable(p);
const rel = {
cardinality: 'N:N',
tableName: listAdapter._manyTable(p),
columnNames: {
[listAdapter.key]: {
near: `${listAdapter.key}_id`,
far: `${listAdapter.fieldAdaptersByPath[p].refListKey}_id`,
},
},
};
const { cardinality, tableName, columnNames } = rel;
const subBaseTableAlias = this._getNextBaseTableAlias();
const otherList = listAdapter.fieldAdaptersByPath[p].refListKey;
const otherListAdapter = listAdapter.getListAdapterByKey(otherList);
const otherTableAlias = `${subBaseTableAlias}__${p}`;

const subQuery = listAdapter
._query()
.select(`${subBaseTableAlias}.${thisID}`)
.from(`${manyTableName} as ${subBaseTableAlias}`);
subQuery.innerJoin(
`${otherListAdapter.tableName} as ${otherTableAlias}`,
`${otherTableAlias}.id`,
`${subBaseTableAlias}.${otherList}_id`
);

const subQuery = listAdapter._query();
let otherTableAlias;
if (cardinality === '1:N' || cardinality === 'N:1') {
// Implement me
} else {
otherTableAlias = `${subBaseTableAlias}__${p}`;
subQuery
.select(`${subBaseTableAlias}.${columnNames[listAdapter.key].near}`)
.from(`${tableName} as ${subBaseTableAlias}`);
subQuery.innerJoin(
`${otherListAdapter.tableName} as ${otherTableAlias}`,
`${otherTableAlias}.id`,
`${subBaseTableAlias}.${columnNames[listAdapter.key].far}`
);
}
this._addJoins(subQuery, otherListAdapter, where[path], otherTableAlias);

// some: the ID is in the examples found
Expand Down