|
| 1 | +import { IDataSource } from '@data-source/.'; |
| 2 | +import { Pagination } from '@route/.'; |
| 3 | + |
1 | 4 | import { find, isEmpty } from 'lodash';
|
2 | 5 | import {
|
3 | 6 | ComparisonPredicate,
|
@@ -177,6 +180,8 @@ export interface SQLClauseOperation {
|
177 | 180 | export interface IDataQueryBuilder {
|
178 | 181 | readonly statement: string;
|
179 | 182 | readonly operations: SQLClauseOperation;
|
| 183 | + readonly dataSource: IDataSource; |
| 184 | + |
180 | 185 | // Select clause methods
|
181 | 186 | select(...columns: Array<SelectedColumn | string>): DataQueryBuilder;
|
182 | 187 | distinct(...columns: Array<SelectedColumn | string>): DataQueryBuilder;
|
@@ -386,21 +391,29 @@ export interface IDataQueryBuilder {
|
386 | 391 | limit(size: number): DataQueryBuilder;
|
387 | 392 | offset(move: number): DataQueryBuilder;
|
388 | 393 | take(size: number, move: number): DataQueryBuilder;
|
| 394 | + // paginate |
| 395 | + paginate(pagination: Pagination): void; |
| 396 | + value(): Promise<object>; |
| 397 | + clone(): IDataQueryBuilder; |
389 | 398 | }
|
390 | 399 |
|
391 | 400 | export class DataQueryBuilder implements IDataQueryBuilder {
|
392 | 401 | public readonly statement: string;
|
393 | 402 | // record all operations for different SQL clauses
|
394 | 403 | public readonly operations: SQLClauseOperation;
|
395 |
| - |
| 404 | + public readonly dataSource: IDataSource; |
| 405 | + public pagination?: Pagination; |
396 | 406 | constructor({
|
397 | 407 | statement,
|
398 | 408 | operations,
|
| 409 | + dataSource, |
399 | 410 | }: {
|
400 | 411 | statement: string;
|
401 | 412 | operations?: SQLClauseOperation;
|
| 413 | + dataSource: IDataSource; |
402 | 414 | }) {
|
403 | 415 | this.statement = statement;
|
| 416 | + this.dataSource = dataSource; |
404 | 417 | this.operations = operations || {
|
405 | 418 | select: null,
|
406 | 419 | where: [],
|
@@ -601,6 +614,7 @@ export class DataQueryBuilder implements IDataQueryBuilder {
|
601 | 614 | public whereWrapped(builderCallback: BuilderClauseCallback) {
|
602 | 615 | const wrappedBuilder = new DataQueryBuilder({
|
603 | 616 | statement: '',
|
| 617 | + dataSource: this.dataSource, |
604 | 618 | });
|
605 | 619 | builderCallback(wrappedBuilder);
|
606 | 620 | this.recordWhere({
|
@@ -1043,6 +1057,33 @@ export class DataQueryBuilder implements IDataQueryBuilder {
|
1043 | 1057 | return this;
|
1044 | 1058 | }
|
1045 | 1059 |
|
| 1060 | + public clone() { |
| 1061 | + return new DataQueryBuilder({ |
| 1062 | + statement: this.statement, |
| 1063 | + dataSource: this.dataSource, |
| 1064 | + operations: this.operations, |
| 1065 | + }); |
| 1066 | + } |
| 1067 | + |
| 1068 | + // setup pagination if would like to do paginate |
| 1069 | + public paginate(pagination: Pagination) { |
| 1070 | + this.pagination = pagination; |
| 1071 | + } |
| 1072 | + |
| 1073 | + public async value() { |
| 1074 | + // call data source |
| 1075 | + const result = await this.dataSource.execute({ |
| 1076 | + statement: this.statement, |
| 1077 | + operations: this.operations, |
| 1078 | + pagination: this.pagination, |
| 1079 | + }); |
| 1080 | + |
| 1081 | + // Reset operations |
| 1082 | + await this.resetOperations(); |
| 1083 | + |
| 1084 | + return result; |
| 1085 | + } |
| 1086 | + |
1046 | 1087 | // record Select-On related operations
|
1047 | 1088 | private recordSelect({
|
1048 | 1089 | command,
|
@@ -1128,10 +1169,4 @@ export class DataQueryBuilder implements IDataQueryBuilder {
|
1128 | 1169 | this.operations.limit = null;
|
1129 | 1170 | this.operations.offset = null;
|
1130 | 1171 | }
|
1131 |
| - public value() { |
1132 |
| - // TODO: call Driver |
1133 |
| - |
1134 |
| - // Reset operations |
1135 |
| - this.resetOperations(); |
1136 |
| - } |
1137 | 1172 | }
|
0 commit comments