🎯 MapView v2.0 - Global Deployment Ready

 MAJOR FEATURES:
• Auto-zoom intelligence với smart bounds fitting
• Enhanced 3D GPS markers với pulsing effects
• Professional route display với 6-layer rendering
• Status-based parking icons với availability indicators
• Production-ready build optimizations

🗺️ AUTO-ZOOM FEATURES:
• Smart bounds fitting cho GPS + selected parking
• Adaptive padding (50px) cho visual balance
• Max zoom control (level 16) để tránh quá gần
• Dynamic centering khi không có selection

🎨 ENHANCED VISUALS:
• 3D GPS marker với multi-layer pulse effects
• Advanced parking icons với status colors
• Selection highlighting với animation
• Dimming system cho non-selected items

🛣️ ROUTE SYSTEM:
• OpenRouteService API integration
• Multi-layer route rendering (glow, shadow, main, animated)
• Real-time distance & duration calculation
• Visual route info trong popup

📱 PRODUCTION READY:
• SSR safe với dynamic imports
• Build errors resolved
• Global deployment via Vercel
• Optimized performance

🌍 DEPLOYMENT:
• Vercel: https://whatever-ctk2auuxr-phong12hexdockworks-projects.vercel.app
• Bundle size: 22.8 kB optimized
• Global CDN distribution
• HTTPS enabled

💾 VERSION CONTROL:
• MapView-v2.0.tsx backup created
• MAPVIEW_VERSIONS.md documentation
• Full version history tracking
This commit is contained in:
2025-07-20 19:52:16 +07:00
parent 3203463a6a
commit c65cc97a33
64624 changed files with 7199453 additions and 6462 deletions

View File

@@ -0,0 +1,4 @@
import * as ts from 'typescript';
export declare class AbstractFileVisitor {
updateImports(sourceFile: ts.SourceFile, factory: ts.NodeFactory | undefined, program: ts.Program): ts.SourceFile;
}

View File

@@ -0,0 +1,31 @@
"use strict";
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AbstractFileVisitor = void 0;
const ts = require("typescript");
const plugin_constants_1 = require("../plugin-constants");
const [major, minor] = (_a = ts.versionMajorMinor) === null || _a === void 0 ? void 0 : _a.split('.').map((x) => +x);
class AbstractFileVisitor {
updateImports(sourceFile, factory, program) {
if (major <= 4 && minor < 8) {
throw new Error('Nest CLI plugin does not support TypeScript < v4.8');
}
const importEqualsDeclaration = factory.createImportEqualsDeclaration(undefined, false, factory.createIdentifier(plugin_constants_1.OPENAPI_NAMESPACE), factory.createExternalModuleReference(factory.createStringLiteral(plugin_constants_1.OPENAPI_PACKAGE_NAME)));
const compilerOptions = program.getCompilerOptions();
if (compilerOptions.module >= ts.ModuleKind.ES2015 &&
compilerOptions.module <= ts.ModuleKind.ESNext) {
const importAsDeclaration = factory.createImportDeclaration(undefined, factory.createImportClause(false, undefined, factory.createNamespaceImport(factory.createIdentifier(plugin_constants_1.OPENAPI_NAMESPACE))), factory.createStringLiteral(plugin_constants_1.OPENAPI_PACKAGE_NAME), undefined);
return factory.updateSourceFile(sourceFile, [
importAsDeclaration,
...sourceFile.statements
]);
}
else {
return factory.updateSourceFile(sourceFile, [
importEqualsDeclaration,
...sourceFile.statements
]);
}
}
}
exports.AbstractFileVisitor = AbstractFileVisitor;

View File

@@ -0,0 +1,23 @@
import * as ts from 'typescript';
import { PluginOptions } from '../merge-options';
import { AbstractFileVisitor } from './abstract.visitor';
type ClassMetadata = Record<string, ts.ObjectLiteralExpression>;
export declare class ControllerClassVisitor extends AbstractFileVisitor {
private readonly _collectedMetadata;
private readonly _typeImports;
get typeImports(): Record<string, string>;
get collectedMetadata(): Array<[
ts.CallExpression,
Record<string, ClassMetadata>
]>;
visit(sourceFile: ts.SourceFile, ctx: ts.TransformationContext, program: ts.Program, options: PluginOptions): ts.Node;
addDecoratorToNode(factory: ts.NodeFactory, compilerNode: ts.MethodDeclaration, typeChecker: ts.TypeChecker, options: PluginOptions, sourceFile: ts.SourceFile, metadata: ClassMetadata): ts.MethodDeclaration;
createApiOperationDecorator(factory: ts.NodeFactory, node: ts.MethodDeclaration, decorators: readonly ts.Decorator[], options: PluginOptions, sourceFile: ts.SourceFile, typeChecker: ts.TypeChecker, metadata: ClassMetadata): ts.Decorator[];
createApiResponseDecorator(factory: ts.NodeFactory, node: ts.MethodDeclaration, decorators: readonly ts.Decorator[], options: PluginOptions, sourceFile: ts.SourceFile, typeChecker: ts.TypeChecker, metadata: ClassMetadata): ts.Decorator[];
createDecoratorObjectLiteralExpr(factory: ts.NodeFactory, node: ts.MethodDeclaration, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray<ts.PropertyAssignment>, hostFilename: string, metadata: ClassMetadata, options: PluginOptions): ts.ObjectLiteralExpression;
createTypePropertyAssignment(factory: ts.NodeFactory, node: ts.MethodDeclaration, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray<ts.PropertyAssignment>, hostFilename: string, options: PluginOptions): ts.PropertyAssignment;
createStatusPropertyAssignment(factory: ts.NodeFactory, node: ts.MethodDeclaration, existingProperties: ts.NodeArray<ts.PropertyAssignment>): ts.PropertyAssignment;
getStatusCodeIdentifier(factory: ts.NodeFactory, node: ts.MethodDeclaration): any;
private normalizeImportPath;
}
export {};

View File

@@ -0,0 +1,266 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ControllerClassVisitor = void 0;
const lodash_1 = require("lodash");
const path_1 = require("path");
const ts = require("typescript");
const decorators_1 = require("../../decorators");
const plugin_constants_1 = require("../plugin-constants");
const ast_utils_1 = require("../utils/ast-utils");
const plugin_utils_1 = require("../utils/plugin-utils");
const type_reference_to_identifier_util_1 = require("../utils/type-reference-to-identifier.util");
const abstract_visitor_1 = require("./abstract.visitor");
class ControllerClassVisitor extends abstract_visitor_1.AbstractFileVisitor {
constructor() {
super(...arguments);
this._collectedMetadata = {};
this._typeImports = {};
}
get typeImports() {
return this._typeImports;
}
get collectedMetadata() {
const metadataWithImports = [];
Object.keys(this._collectedMetadata).forEach((filePath) => {
const metadata = this._collectedMetadata[filePath];
const path = filePath.replace(/\.[jt]s$/, '');
const importExpr = ts.factory.createCallExpression(ts.factory.createToken(ts.SyntaxKind.ImportKeyword), undefined, [ts.factory.createStringLiteral(path)]);
metadataWithImports.push([importExpr, metadata]);
});
return metadataWithImports;
}
visit(sourceFile, ctx, program, options) {
const typeChecker = program.getTypeChecker();
if (!options.readonly) {
sourceFile = this.updateImports(sourceFile, ctx.factory, program);
}
const visitNode = (node) => {
var _a;
if (ts.isMethodDeclaration(node)) {
try {
const metadata = {};
const updatedNode = this.addDecoratorToNode(ctx.factory, node, typeChecker, options, sourceFile, metadata);
if (!options.readonly) {
return updatedNode;
}
else {
const filePath = this.normalizeImportPath(options.pathToSource, sourceFile.fileName);
if (!this._collectedMetadata[filePath]) {
this._collectedMetadata[filePath] = {};
}
const parent = node.parent;
const clsName = (_a = parent.name) === null || _a === void 0 ? void 0 : _a.getText();
if (clsName) {
if (!this._collectedMetadata[filePath][clsName]) {
this._collectedMetadata[filePath][clsName] = {};
}
Object.assign(this._collectedMetadata[filePath][clsName], metadata);
}
}
}
catch (_b) {
if (!options.readonly) {
return node;
}
}
}
if (options.readonly) {
ts.forEachChild(node, visitNode);
}
else {
return ts.visitEachChild(node, visitNode, ctx);
}
};
return ts.visitNode(sourceFile, visitNode);
}
addDecoratorToNode(factory, compilerNode, typeChecker, options, sourceFile, metadata) {
var _a;
const hostFilename = sourceFile.fileName;
const decorators = ts.canHaveDecorators(compilerNode) && ts.getDecorators(compilerNode);
if (!decorators) {
return compilerNode;
}
const apiOperationDecoratorsArray = this.createApiOperationDecorator(factory, compilerNode, decorators, options, sourceFile, typeChecker, metadata);
const apiResponseDecoratorsArray = this.createApiResponseDecorator(factory, compilerNode, decorators, options, sourceFile, typeChecker, metadata);
const removeExistingApiOperationDecorator = apiOperationDecoratorsArray.length > 0;
const existingDecorators = removeExistingApiOperationDecorator
? decorators.filter((item) => (0, ast_utils_1.getDecoratorName)(item) !== decorators_1.ApiOperation.name)
: decorators;
const modifiers = (_a = ts.getModifiers(compilerNode)) !== null && _a !== void 0 ? _a : [];
const objectLiteralExpr = this.createDecoratorObjectLiteralExpr(factory, compilerNode, typeChecker, factory.createNodeArray(), hostFilename, metadata, options);
const updatedDecorators = [
...apiOperationDecoratorsArray,
...apiResponseDecoratorsArray,
...existingDecorators,
factory.createDecorator(factory.createCallExpression(factory.createIdentifier(`${plugin_constants_1.OPENAPI_NAMESPACE}.${decorators_1.ApiResponse.name}`), undefined, [factory.createObjectLiteralExpression(objectLiteralExpr.properties)]))
];
if (!options.readonly) {
return factory.updateMethodDeclaration(compilerNode, [...updatedDecorators, ...modifiers], compilerNode.asteriskToken, compilerNode.name, compilerNode.questionToken, compilerNode.typeParameters, compilerNode.parameters, compilerNode.type, compilerNode.body);
}
else {
return compilerNode;
}
}
createApiOperationDecorator(factory, node, decorators, options, sourceFile, typeChecker, metadata) {
if (!options.introspectComments) {
return [];
}
const keyToGenerate = options.controllerKeyOfComment;
const apiOperationDecorator = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)([decorators_1.ApiOperation.name], decorators, factory);
let apiOperationExistingProps = undefined;
if (apiOperationDecorator && !options.readonly) {
const apiOperationExpr = (0, lodash_1.head)((0, ast_utils_1.getDecoratorArguments)(apiOperationDecorator));
if (apiOperationExpr) {
apiOperationExistingProps =
apiOperationExpr.properties;
}
}
const extractedComments = (0, ast_utils_1.getMainCommentOfNode)(node, sourceFile);
if (!extractedComments) {
return [];
}
const tags = (0, ast_utils_1.getTsDocTagsOfNode)(node, typeChecker);
const properties = [
factory.createPropertyAssignment(keyToGenerate, factory.createStringLiteral(extractedComments)),
...(apiOperationExistingProps !== null && apiOperationExistingProps !== void 0 ? apiOperationExistingProps : factory.createNodeArray())
];
const hasRemarksKey = (0, plugin_utils_1.hasPropertyKey)('description', factory.createNodeArray(apiOperationExistingProps));
if (!hasRemarksKey && tags.remarks) {
const remarksPropertyAssignment = factory.createPropertyAssignment('description', (0, ast_utils_1.createLiteralFromAnyValue)(factory, tags.remarks));
properties.push(remarksPropertyAssignment);
}
const hasDeprecatedKey = (0, plugin_utils_1.hasPropertyKey)('deprecated', factory.createNodeArray(apiOperationExistingProps));
if (!hasDeprecatedKey && tags.deprecated) {
const deprecatedPropertyAssignment = factory.createPropertyAssignment('deprecated', (0, ast_utils_1.createLiteralFromAnyValue)(factory, tags.deprecated));
properties.push(deprecatedPropertyAssignment);
}
const objectLiteralExpr = factory.createObjectLiteralExpression((0, lodash_1.compact)(properties));
const apiOperationDecoratorArguments = factory.createNodeArray([objectLiteralExpr]);
const methodKey = node.name.getText();
if (metadata[methodKey]) {
const existingObjectLiteralExpr = metadata[methodKey];
const existingProperties = existingObjectLiteralExpr.properties;
const updatedProperties = factory.createNodeArray([
...existingProperties,
...(0, lodash_1.compact)(properties)
]);
const updatedObjectLiteralExpr = factory.createObjectLiteralExpression(updatedProperties);
metadata[methodKey] = updatedObjectLiteralExpr;
}
else {
metadata[methodKey] = objectLiteralExpr;
}
if (apiOperationDecorator) {
const expr = apiOperationDecorator.expression;
const updatedCallExpr = factory.updateCallExpression(expr, expr.expression, undefined, apiOperationDecoratorArguments);
return [factory.updateDecorator(apiOperationDecorator, updatedCallExpr)];
}
else {
return [
factory.createDecorator(factory.createCallExpression(factory.createIdentifier(`${plugin_constants_1.OPENAPI_NAMESPACE}.${decorators_1.ApiOperation.name}`), undefined, apiOperationDecoratorArguments))
];
}
}
createApiResponseDecorator(factory, node, decorators, options, sourceFile, typeChecker, metadata) {
if (!options.introspectComments) {
return [];
}
const apiResponseDecorator = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)([decorators_1.ApiResponse.name], decorators, factory);
let apiResponseExistingProps = undefined;
if (apiResponseDecorator && !options.readonly) {
const apiResponseExpr = (0, lodash_1.head)((0, ast_utils_1.getDecoratorArguments)(apiResponseDecorator));
if (apiResponseExpr) {
apiResponseExistingProps =
apiResponseExpr.properties;
}
}
const tags = (0, ast_utils_1.getTsDocErrorsOfNode)(node);
if (!tags.length) {
return [];
}
return tags.map((tag) => {
const properties = [
...(apiResponseExistingProps !== null && apiResponseExistingProps !== void 0 ? apiResponseExistingProps : factory.createNodeArray())
];
properties.push(factory.createPropertyAssignment('status', factory.createNumericLiteral(tag.status)));
properties.push(factory.createPropertyAssignment('description', factory.createNumericLiteral(tag.description)));
const objectLiteralExpr = factory.createObjectLiteralExpression((0, lodash_1.compact)(properties));
const methodKey = node.name.getText();
metadata[methodKey] = objectLiteralExpr;
const apiResponseDecoratorArguments = factory.createNodeArray([objectLiteralExpr]);
return factory.createDecorator(factory.createCallExpression(factory.createIdentifier(`${plugin_constants_1.OPENAPI_NAMESPACE}.${decorators_1.ApiResponse.name}`), undefined, apiResponseDecoratorArguments));
});
}
createDecoratorObjectLiteralExpr(factory, node, typeChecker, existingProperties = factory.createNodeArray(), hostFilename, metadata, options) {
let properties = [];
if (!options.readonly) {
properties = properties.concat(existingProperties, this.createStatusPropertyAssignment(factory, node, existingProperties));
}
properties = properties.concat([
this.createTypePropertyAssignment(factory, node, typeChecker, existingProperties, hostFilename, options)
]);
const objectLiteralExpr = factory.createObjectLiteralExpression((0, lodash_1.compact)(properties));
const methodKey = node.name.getText();
const existingExprOrUndefined = metadata[methodKey];
if (existingExprOrUndefined) {
const existingProperties = existingExprOrUndefined.properties;
const updatedProperties = factory.createNodeArray([
...existingProperties,
...(0, lodash_1.compact)(properties)
]);
const updatedObjectLiteralExpr = factory.createObjectLiteralExpression(updatedProperties);
metadata[methodKey] = updatedObjectLiteralExpr;
}
else {
metadata[methodKey] = objectLiteralExpr;
}
return objectLiteralExpr;
}
createTypePropertyAssignment(factory, node, typeChecker, existingProperties, hostFilename, options) {
if ((0, plugin_utils_1.hasPropertyKey)('type', existingProperties)) {
return undefined;
}
const signature = typeChecker.getSignatureFromDeclaration(node);
const type = typeChecker.getReturnTypeOfSignature(signature);
if (!type) {
return undefined;
}
const typeReferenceDescriptor = (0, plugin_utils_1.getTypeReferenceAsString)(type, typeChecker);
if (!typeReferenceDescriptor.typeName) {
return undefined;
}
if (typeReferenceDescriptor.typeName.includes('node_modules')) {
return undefined;
}
const identifier = (0, type_reference_to_identifier_util_1.typeReferenceToIdentifier)(typeReferenceDescriptor, hostFilename, options, factory, type, this._typeImports);
return factory.createPropertyAssignment('type', identifier);
}
createStatusPropertyAssignment(factory, node, existingProperties) {
if ((0, plugin_utils_1.hasPropertyKey)('status', existingProperties)) {
return undefined;
}
const statusNode = this.getStatusCodeIdentifier(factory, node);
return factory.createPropertyAssignment('status', statusNode);
}
getStatusCodeIdentifier(factory, node) {
const decorators = ts.canHaveDecorators(node) && ts.getDecorators(node);
const httpCodeDecorator = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)(['HttpCode'], decorators, factory);
if (httpCodeDecorator) {
const argument = (0, lodash_1.head)((0, ast_utils_1.getDecoratorArguments)(httpCodeDecorator));
if (argument) {
return argument;
}
}
const postDecorator = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)(['Post'], decorators, factory);
if (postDecorator) {
return factory.createIdentifier('201');
}
return factory.createIdentifier('200');
}
normalizeImportPath(pathToSource, path) {
let relativePath = path_1.posix.relative((0, plugin_utils_1.convertPath)(pathToSource), (0, plugin_utils_1.convertPath)(path));
relativePath = relativePath[0] !== '.' ? './' + relativePath : relativePath;
return relativePath;
}
}
exports.ControllerClassVisitor = ControllerClassVisitor;

View File

@@ -0,0 +1,37 @@
import * as ts from 'typescript';
import { PropertyAssignment } from 'typescript';
import { PluginOptions } from '../merge-options';
import { AbstractFileVisitor } from './abstract.visitor';
type ClassMetadata = Record<string, ts.ObjectLiteralExpression>;
export declare class ModelClassVisitor extends AbstractFileVisitor {
private readonly _typeImports;
private readonly _collectedMetadata;
get typeImports(): Record<string, string>;
get collectedMetadata(): Array<[
ts.CallExpression,
Record<string, ClassMetadata>
]>;
visit(sourceFile: ts.SourceFile, ctx: ts.TransformationContext, program: ts.Program, options: PluginOptions): ts.Node;
visitPropertyNodeDeclaration(node: ts.PropertyDeclaration, ctx: ts.TransformationContext, typeChecker: ts.TypeChecker, options: PluginOptions, sourceFile: ts.SourceFile, metadata: ClassMetadata): ts.PropertyDeclaration;
visitConstructorDeclarationNode(constructorNode: ts.ConstructorDeclaration, typeChecker: ts.TypeChecker, options: PluginOptions, sourceFile: ts.SourceFile, metadata: ClassMetadata): void;
addMetadataFactory(factory: ts.NodeFactory, node: ts.ClassDeclaration, classMetadata: ClassMetadata, sourceFile: ts.SourceFile, options: PluginOptions): ts.ClassDeclaration;
inspectPropertyDeclaration(factory: ts.NodeFactory, compilerNode: ts.PropertyDeclaration, typeChecker: ts.TypeChecker, options: PluginOptions, hostFilename: string, sourceFile: ts.SourceFile, metadata: ClassMetadata): void;
createDecoratorObjectLiteralExpr(factory: ts.NodeFactory, node: ts.PropertyDeclaration | ts.PropertySignature | ts.ParameterDeclaration, typeChecker: ts.TypeChecker, existingProperties?: ts.NodeArray<ts.PropertyAssignment>, options?: PluginOptions, hostFilename?: string, sourceFile?: ts.SourceFile): ts.ObjectLiteralExpression;
private createTypePropertyAssignments;
createInitializerForTypeLiteralNode(node: ts.TypeLiteralNode, factory: ts.NodeFactory, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray<ts.PropertyAssignment>, hostFilename: string, options: PluginOptions): ts.ArrowFunction;
isNullableUnion(node: ts.UnionTypeNode): {
nullableType: ts.TypeNode;
isNullable: boolean;
};
createEnumPropertyAssignment(factory: ts.NodeFactory, node: ts.PropertyDeclaration | ts.PropertySignature | ts.ParameterDeclaration, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray<ts.PropertyAssignment>, hostFilename: string, options: PluginOptions): ts.PropertyAssignment | ts.PropertyAssignment[];
createDefaultPropertyAssignment(factory: ts.NodeFactory, node: ts.PropertyDeclaration | ts.PropertySignature | ts.ParameterDeclaration, existingProperties: ts.NodeArray<ts.PropertyAssignment>, options: PluginOptions): ts.PropertyAssignment;
createValidationPropertyAssignments(factory: ts.NodeFactory, node: ts.PropertyDeclaration | ts.PropertySignature, options: PluginOptions): ts.PropertyAssignment[];
addPropertyByValidationDecorator(factory: ts.NodeFactory, decoratorName: string, propertyKey: string, decorators: readonly ts.Decorator[], assignments: ts.PropertyAssignment[], options: PluginOptions): void;
addPropertiesByValidationDecorator(factory: ts.NodeFactory, decoratorName: string, decorators: readonly ts.Decorator[], assignments: ts.PropertyAssignment[], addPropertyAssignments: (decoratorRef: ts.Decorator) => PropertyAssignment[]): void;
addClassMetadata(node: ts.PropertyDeclaration, objectLiteral: ts.ObjectLiteralExpression, sourceFile: ts.SourceFile, metadata: ClassMetadata): void;
createDescriptionAndTsDocTagPropertyAssignments(factory: ts.NodeFactory, node: ts.PropertyDeclaration | ts.PropertySignature | ts.ParameterDeclaration, typeChecker: ts.TypeChecker, existingProperties?: ts.NodeArray<ts.PropertyAssignment>, options?: PluginOptions, sourceFile?: ts.SourceFile): ts.PropertyAssignment[];
private normalizeImportPath;
private clonePrimitiveLiteral;
private getInitializerPrimitiveTypeName;
}
export {};

View File

@@ -0,0 +1,426 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModelClassVisitor = void 0;
const lodash_1 = require("lodash");
const path_1 = require("path");
const ts = require("typescript");
const typescript_1 = require("typescript");
const decorators_1 = require("../../decorators");
const plugin_constants_1 = require("../plugin-constants");
const plugin_debug_logger_1 = require("../plugin-debug-logger");
const ast_utils_1 = require("../utils/ast-utils");
const plugin_utils_1 = require("../utils/plugin-utils");
const type_reference_to_identifier_util_1 = require("../utils/type-reference-to-identifier.util");
const abstract_visitor_1 = require("./abstract.visitor");
class ModelClassVisitor extends abstract_visitor_1.AbstractFileVisitor {
constructor() {
super(...arguments);
this._typeImports = {};
this._collectedMetadata = {};
}
get typeImports() {
return this._typeImports;
}
get collectedMetadata() {
const metadataWithImports = [];
Object.keys(this._collectedMetadata).forEach((filePath) => {
const metadata = this._collectedMetadata[filePath];
const path = filePath.replace(/\.[jt]s$/, '');
const importExpr = ts.factory.createCallExpression(ts.factory.createToken(ts.SyntaxKind.ImportKeyword), undefined, [ts.factory.createStringLiteral(path)]);
metadataWithImports.push([importExpr, metadata]);
});
return metadataWithImports;
}
visit(sourceFile, ctx, program, options) {
const typeChecker = program.getTypeChecker();
sourceFile = this.updateImports(sourceFile, ctx.factory, program);
const propertyNodeVisitorFactory = (metadata) => (node) => {
const visit = () => {
if (ts.isPropertyDeclaration(node)) {
this.visitPropertyNodeDeclaration(node, ctx, typeChecker, options, sourceFile, metadata);
}
else if (options.parameterProperties &&
ts.isConstructorDeclaration(node)) {
this.visitConstructorDeclarationNode(node, typeChecker, options, sourceFile, metadata);
}
return node;
};
const visitedNode = visit();
if (!options.readonly) {
return visitedNode;
}
};
const visitClassNode = (node) => {
var _a;
if (ts.isClassDeclaration(node)) {
const metadata = {};
const isExported = (_a = node.modifiers) === null || _a === void 0 ? void 0 : _a.some((modifier) => modifier.kind === ts.SyntaxKind.ExportKeyword);
if (options.readonly) {
if (isExported) {
ts.forEachChild(node, propertyNodeVisitorFactory(metadata));
}
else {
if (options.debug) {
plugin_debug_logger_1.pluginDebugLogger.debug(`Skipping class "${node.name.getText()}" because it's not exported.`);
}
}
}
else {
node = ts.visitEachChild(node, propertyNodeVisitorFactory(metadata), ctx);
}
if ((isExported && options.readonly) || !options.readonly) {
const declaration = this.addMetadataFactory(ctx.factory, node, metadata, sourceFile, options);
if (!options.readonly) {
return declaration;
}
}
}
if (options.readonly) {
ts.forEachChild(node, visitClassNode);
}
else {
return ts.visitEachChild(node, visitClassNode, ctx);
}
};
return ts.visitNode(sourceFile, visitClassNode);
}
visitPropertyNodeDeclaration(node, ctx, typeChecker, options, sourceFile, metadata) {
const isPropertyStatic = (node.modifiers || []).some((modifier) => modifier.kind === ts.SyntaxKind.StaticKeyword);
if (isPropertyStatic) {
return node;
}
const decorators = ts.canHaveDecorators(node) && ts.getDecorators(node);
const classTransformerShim = options.classTransformerShim;
const hidePropertyDecoratorExists = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)(classTransformerShim
? [decorators_1.ApiHideProperty.name, 'Exclude']
: [decorators_1.ApiHideProperty.name], decorators, typescript_1.factory);
const annotatePropertyDecoratorExists = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)(classTransformerShim ? [decorators_1.ApiProperty.name, 'Expose'] : [decorators_1.ApiProperty.name], decorators, typescript_1.factory);
if (!annotatePropertyDecoratorExists &&
(hidePropertyDecoratorExists || classTransformerShim === 'exclusive')) {
return node;
}
else if (annotatePropertyDecoratorExists && hidePropertyDecoratorExists) {
plugin_debug_logger_1.pluginDebugLogger.debug(`"${node.parent.name.getText()}->${node.name.getText()}" has conflicting decorators, excluding as @ApiHideProperty() takes priority.`);
return node;
}
try {
this.inspectPropertyDeclaration(ctx.factory, node, typeChecker, options, sourceFile.fileName, sourceFile, metadata);
}
catch (err) {
return node;
}
}
visitConstructorDeclarationNode(constructorNode, typeChecker, options, sourceFile, metadata) {
constructorNode.forEachChild((node) => {
if (ts.isParameter(node) &&
node.modifiers != null &&
node.modifiers.some((modifier) => modifier.kind === ts.SyntaxKind.ReadonlyKeyword ||
modifier.kind === ts.SyntaxKind.PrivateKeyword ||
modifier.kind === ts.SyntaxKind.PublicKeyword ||
modifier.kind === ts.SyntaxKind.ProtectedKeyword)) {
const objectLiteralExpr = this.createDecoratorObjectLiteralExpr(typescript_1.factory, node, typeChecker, typescript_1.factory.createNodeArray(), options, sourceFile.fileName, sourceFile);
const propertyName = node.name.getText();
metadata[propertyName] = objectLiteralExpr;
}
});
}
addMetadataFactory(factory, node, classMetadata, sourceFile, options) {
const returnValue = factory.createObjectLiteralExpression(Object.keys(classMetadata).map((key) => factory.createPropertyAssignment(factory.createIdentifier(key), classMetadata[key])));
if (options.readonly) {
const filePath = this.normalizeImportPath(options.pathToSource, sourceFile.fileName);
if (!this._collectedMetadata[filePath]) {
this._collectedMetadata[filePath] = {};
}
const attributeKey = node.name.getText();
this._collectedMetadata[filePath][attributeKey] = returnValue;
return;
}
const method = factory.createMethodDeclaration([factory.createModifier(ts.SyntaxKind.StaticKeyword)], undefined, factory.createIdentifier(plugin_constants_1.METADATA_FACTORY_NAME), undefined, undefined, [], undefined, factory.createBlock([factory.createReturnStatement(returnValue)], true));
return factory.updateClassDeclaration(node, node.modifiers, node.name, node.typeParameters, node.heritageClauses, [...node.members, method]);
}
inspectPropertyDeclaration(factory, compilerNode, typeChecker, options, hostFilename, sourceFile, metadata) {
const objectLiteralExpr = this.createDecoratorObjectLiteralExpr(factory, compilerNode, typeChecker, factory.createNodeArray(), options, hostFilename, sourceFile);
this.addClassMetadata(compilerNode, objectLiteralExpr, sourceFile, metadata);
}
createDecoratorObjectLiteralExpr(factory, node, typeChecker, existingProperties = factory.createNodeArray(), options = {}, hostFilename = '', sourceFile) {
const isRequired = !node.questionToken;
const properties = [
...existingProperties,
!(0, plugin_utils_1.hasPropertyKey)('required', existingProperties) &&
factory.createPropertyAssignment('required', (0, ast_utils_1.createBooleanLiteral)(factory, isRequired)),
...this.createTypePropertyAssignments(factory, node.type, typeChecker, existingProperties, hostFilename, options),
...this.createDescriptionAndTsDocTagPropertyAssignments(factory, node, typeChecker, existingProperties, options, sourceFile),
this.createDefaultPropertyAssignment(factory, node, existingProperties, options),
this.createEnumPropertyAssignment(factory, node, typeChecker, existingProperties, hostFilename, options)
];
if ((ts.isPropertyDeclaration(node) || ts.isPropertySignature(node)) &&
options.classValidatorShim) {
properties.push(this.createValidationPropertyAssignments(factory, node, options));
}
return factory.createObjectLiteralExpression((0, lodash_1.compact)((0, lodash_1.flatten)(properties)));
}
createTypePropertyAssignments(factory, node, typeChecker, existingProperties, hostFilename, options) {
const key = 'type';
if ((0, plugin_utils_1.hasPropertyKey)(key, existingProperties)) {
return [];
}
if (node) {
if (ts.isTypeLiteralNode(node)) {
const initializer = this.createInitializerForTypeLiteralNode(node, factory, typeChecker, existingProperties, hostFilename, options);
return [factory.createPropertyAssignment(key, initializer)];
}
else if (ts.isUnionTypeNode(node)) {
const { nullableType, isNullable } = this.isNullableUnion(node);
const remainingTypes = node.types.filter((item) => item !== nullableType);
if (remainingTypes.length === 1) {
const propertyAssignments = this.createTypePropertyAssignments(factory, remainingTypes[0], typeChecker, existingProperties, hostFilename, options);
if (!isNullable) {
return propertyAssignments;
}
return [
...propertyAssignments,
factory.createPropertyAssignment('nullable', (0, ast_utils_1.createBooleanLiteral)(factory, true))
];
}
}
}
const type = typeChecker.getTypeAtLocation(node);
if (!type) {
return [];
}
const typeReferenceDescriptor = (0, plugin_utils_1.getTypeReferenceAsString)(type, typeChecker);
if (!typeReferenceDescriptor.typeName) {
return [];
}
const identifier = (0, type_reference_to_identifier_util_1.typeReferenceToIdentifier)(typeReferenceDescriptor, hostFilename, options, factory, type, this._typeImports);
const initializer = factory.createArrowFunction(undefined, undefined, [], undefined, undefined, identifier);
return [factory.createPropertyAssignment(key, initializer)];
}
createInitializerForTypeLiteralNode(node, factory, typeChecker, existingProperties, hostFilename, options) {
const propertyAssignments = Array.from(node.members || []).map((member) => {
const literalExpr = this.createDecoratorObjectLiteralExpr(factory, member, typeChecker, existingProperties, options, hostFilename);
return factory.createPropertyAssignment(factory.createIdentifier(member.name.getText()), literalExpr);
});
const initializer = factory.createArrowFunction(undefined, undefined, [], undefined, undefined, factory.createParenthesizedExpression(factory.createObjectLiteralExpression(propertyAssignments)));
return initializer;
}
isNullableUnion(node) {
const nullableType = node.types.find((type) => type.kind === ts.SyntaxKind.NullKeyword ||
(ts.SyntaxKind.LiteralType && type.getText() === 'null'));
const isNullable = !!nullableType;
return { nullableType, isNullable };
}
createEnumPropertyAssignment(factory, node, typeChecker, existingProperties, hostFilename, options) {
const key = 'enum';
if ((0, plugin_utils_1.hasPropertyKey)(key, existingProperties)) {
return undefined;
}
let type = typeChecker.getTypeAtLocation(node);
if (!type) {
return undefined;
}
if ((0, plugin_utils_1.isAutoGeneratedTypeUnion)(type)) {
const types = type.types;
type = types[types.length - 1];
}
const typeIsArrayTuple = (0, plugin_utils_1.extractTypeArgumentIfArray)(type);
if (!typeIsArrayTuple) {
return undefined;
}
let isArrayType = typeIsArrayTuple.isArray;
type = typeIsArrayTuple.type;
const isEnumMember = type.symbol && type.symbol.flags === ts.SymbolFlags.EnumMember;
if (!(0, ast_utils_1.isEnum)(type) || isEnumMember) {
if (!isEnumMember) {
type = (0, plugin_utils_1.isAutoGeneratedEnumUnion)(type, typeChecker);
}
if (!type) {
return undefined;
}
const typeIsArrayTuple = (0, plugin_utils_1.extractTypeArgumentIfArray)(type);
if (!typeIsArrayTuple) {
return undefined;
}
isArrayType = typeIsArrayTuple.isArray;
type = typeIsArrayTuple.type;
}
const typeReferenceDescriptor = { typeName: (0, ast_utils_1.getText)(type, typeChecker) };
const enumIdentifier = (0, type_reference_to_identifier_util_1.typeReferenceToIdentifier)(typeReferenceDescriptor, hostFilename, options, factory, type, this._typeImports);
const enumProperty = factory.createPropertyAssignment(key, enumIdentifier);
if (isArrayType) {
const isArrayKey = 'isArray';
const isArrayProperty = factory.createPropertyAssignment(isArrayKey, factory.createIdentifier('true'));
return [enumProperty, isArrayProperty];
}
return enumProperty;
}
createDefaultPropertyAssignment(factory, node, existingProperties, options) {
var _a;
const key = 'default';
if ((0, plugin_utils_1.hasPropertyKey)(key, existingProperties)) {
return undefined;
}
if (ts.isPropertySignature(node)) {
return undefined;
}
if (node.initializer == null) {
return undefined;
}
let initializer = node.initializer;
if (ts.isAsExpression(initializer)) {
initializer = initializer.expression;
}
initializer =
(_a = this.clonePrimitiveLiteral(factory, initializer)) !== null && _a !== void 0 ? _a : initializer;
if (!(0, plugin_utils_1.canReferenceNode)(initializer, options)) {
const parentFilePath = node.getSourceFile().fileName;
const propertyName = node.name.getText();
plugin_debug_logger_1.pluginDebugLogger.debug(`Skipping registering default value for "${propertyName}" property in "${parentFilePath}" file because it is not a referenceable value ("${initializer.getText()}").`);
return undefined;
}
return factory.createPropertyAssignment(key, initializer);
}
createValidationPropertyAssignments(factory, node, options) {
const assignments = [];
const decorators = ts.canHaveDecorators(node) && ts.getDecorators(node);
if (!options.readonly) {
this.addPropertyByValidationDecorator(factory, 'IsIn', 'enum', decorators, assignments, options);
}
this.addPropertyByValidationDecorator(factory, 'Min', 'minimum', decorators, assignments, options);
this.addPropertyByValidationDecorator(factory, 'Max', 'maximum', decorators, assignments, options);
this.addPropertyByValidationDecorator(factory, 'MinLength', 'minLength', decorators, assignments, options);
this.addPropertyByValidationDecorator(factory, 'MaxLength', 'maxLength', decorators, assignments, options);
this.addPropertiesByValidationDecorator(factory, 'IsPositive', decorators, assignments, () => {
return [
factory.createPropertyAssignment('minimum', (0, ast_utils_1.createPrimitiveLiteral)(factory, 1))
];
});
this.addPropertiesByValidationDecorator(factory, 'IsNegative', decorators, assignments, () => {
return [
factory.createPropertyAssignment('maximum', (0, ast_utils_1.createPrimitiveLiteral)(factory, -1))
];
});
this.addPropertiesByValidationDecorator(factory, 'Length', decorators, assignments, (decoratorRef) => {
var _a, _b;
const decoratorArguments = (0, ast_utils_1.getDecoratorArguments)(decoratorRef);
const result = [];
const minLength = (0, lodash_1.head)(decoratorArguments);
if (!(0, plugin_utils_1.canReferenceNode)(minLength, options)) {
return result;
}
const clonedMinLength = (_a = this.clonePrimitiveLiteral(factory, minLength)) !== null && _a !== void 0 ? _a : minLength;
if (clonedMinLength) {
result.push(factory.createPropertyAssignment('minLength', clonedMinLength));
}
if (decoratorArguments.length > 1) {
const maxLength = decoratorArguments[1];
if (!(0, plugin_utils_1.canReferenceNode)(maxLength, options)) {
return result;
}
const clonedMaxLength = (_b = this.clonePrimitiveLiteral(factory, maxLength)) !== null && _b !== void 0 ? _b : maxLength;
if (clonedMaxLength) {
result.push(factory.createPropertyAssignment('maxLength', clonedMaxLength));
}
}
return result;
});
this.addPropertiesByValidationDecorator(factory, 'Matches', decorators, assignments, (decoratorRef) => {
const decoratorArguments = (0, ast_utils_1.getDecoratorArguments)(decoratorRef);
return [
factory.createPropertyAssignment('pattern', (0, ast_utils_1.createPrimitiveLiteral)(factory, (0, lodash_1.head)(decoratorArguments).text))
];
});
return assignments;
}
addPropertyByValidationDecorator(factory, decoratorName, propertyKey, decorators, assignments, options) {
this.addPropertiesByValidationDecorator(factory, decoratorName, decorators, assignments, (decoratorRef) => {
var _a;
const argument = (0, lodash_1.head)((0, ast_utils_1.getDecoratorArguments)(decoratorRef));
const assignment = (_a = this.clonePrimitiveLiteral(factory, argument)) !== null && _a !== void 0 ? _a : argument;
if (!(0, plugin_utils_1.canReferenceNode)(assignment, options)) {
return [];
}
return [factory.createPropertyAssignment(propertyKey, assignment)];
});
}
addPropertiesByValidationDecorator(factory, decoratorName, decorators, assignments, addPropertyAssignments) {
const decoratorRef = (0, plugin_utils_1.getDecoratorOrUndefinedByNames)([decoratorName], decorators, factory);
if (!decoratorRef) {
return;
}
assignments.push(...addPropertyAssignments(decoratorRef));
}
addClassMetadata(node, objectLiteral, sourceFile, metadata) {
const hostClass = node.parent;
const className = hostClass.name && hostClass.name.getText();
if (!className) {
return;
}
const propertyName = node.name && node.name.getText(sourceFile);
if (!propertyName ||
(node.name && node.name.kind === ts.SyntaxKind.ComputedPropertyName)) {
return;
}
metadata[propertyName] = objectLiteral;
}
createDescriptionAndTsDocTagPropertyAssignments(factory, node, typeChecker, existingProperties = factory.createNodeArray(), options = {}, sourceFile) {
var _a;
if (!options.introspectComments || !sourceFile) {
return [];
}
const propertyAssignments = [];
const comments = (0, ast_utils_1.getMainCommentOfNode)(node, sourceFile);
const tags = (0, ast_utils_1.getTsDocTagsOfNode)(node, typeChecker);
const keyOfComment = options.dtoKeyOfComment;
if (!(0, plugin_utils_1.hasPropertyKey)(keyOfComment, existingProperties) && comments) {
const descriptionPropertyAssignment = factory.createPropertyAssignment(keyOfComment, factory.createStringLiteral(comments));
propertyAssignments.push(descriptionPropertyAssignment);
}
const hasExampleOrExamplesKey = (0, plugin_utils_1.hasPropertyKey)('example', existingProperties) ||
(0, plugin_utils_1.hasPropertyKey)('examples', existingProperties);
if (!hasExampleOrExamplesKey && ((_a = tags.example) === null || _a === void 0 ? void 0 : _a.length)) {
if (tags.example.length === 1) {
const examplePropertyAssignment = factory.createPropertyAssignment('example', (0, ast_utils_1.createLiteralFromAnyValue)(factory, tags.example[0]));
propertyAssignments.push(examplePropertyAssignment);
}
else {
const examplesPropertyAssignment = factory.createPropertyAssignment('examples', (0, ast_utils_1.createLiteralFromAnyValue)(factory, tags.example));
propertyAssignments.push(examplesPropertyAssignment);
}
}
const hasDeprecatedKey = (0, plugin_utils_1.hasPropertyKey)('deprecated', existingProperties);
if (!hasDeprecatedKey && tags.deprecated) {
const deprecatedPropertyAssignment = factory.createPropertyAssignment('deprecated', (0, ast_utils_1.createLiteralFromAnyValue)(factory, tags.deprecated));
propertyAssignments.push(deprecatedPropertyAssignment);
}
return propertyAssignments;
}
normalizeImportPath(pathToSource, path) {
let relativePath = path_1.posix.relative((0, plugin_utils_1.convertPath)(pathToSource), (0, plugin_utils_1.convertPath)(path));
relativePath = relativePath[0] !== '.' ? './' + relativePath : relativePath;
return relativePath;
}
clonePrimitiveLiteral(factory, node) {
var _a;
const primitiveTypeName = this.getInitializerPrimitiveTypeName(node);
if (!primitiveTypeName) {
return undefined;
}
const text = (_a = node.text) !== null && _a !== void 0 ? _a : node.getText();
return (0, ast_utils_1.createPrimitiveLiteral)(factory, text, primitiveTypeName);
}
getInitializerPrimitiveTypeName(node) {
if (ts.isIdentifier(node) &&
(node.text === 'true' || node.text === 'false')) {
return 'boolean';
}
if (ts.isNumericLiteral(node) || ts.isPrefixUnaryExpression(node)) {
return 'number';
}
if (ts.isStringLiteral(node)) {
return 'string';
}
return undefined;
}
}
exports.ModelClassVisitor = ModelClassVisitor;

View File

@@ -0,0 +1,21 @@
import * as ts from 'typescript';
import { PluginOptions } from '../merge-options';
export declare class ReadonlyVisitor {
private readonly options;
readonly key = "@nestjs/swagger";
private readonly modelClassVisitor;
private readonly controllerClassVisitor;
get typeImports(): {
[x: string]: string;
};
constructor(options: PluginOptions);
visit(program: ts.Program, sf: ts.SourceFile): ts.Node;
collect(): {
models: [ts.CallExpression, Record<string, {
[x: string]: ts.ObjectLiteralExpression;
}>][];
controllers: [ts.CallExpression, Record<string, {
[x: string]: ts.ObjectLiteralExpression;
}>][];
};
}

View File

@@ -0,0 +1,40 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReadonlyVisitor = void 0;
const ts = require("typescript");
const merge_options_1 = require("../merge-options");
const is_filename_matched_util_1 = require("../utils/is-filename-matched.util");
const controller_class_visitor_1 = require("./controller-class.visitor");
const model_class_visitor_1 = require("./model-class.visitor");
class ReadonlyVisitor {
get typeImports() {
return Object.assign(Object.assign({}, this.modelClassVisitor.typeImports), this.controllerClassVisitor.typeImports);
}
constructor(options) {
this.options = options;
this.key = '@nestjs/swagger';
this.modelClassVisitor = new model_class_visitor_1.ModelClassVisitor();
this.controllerClassVisitor = new controller_class_visitor_1.ControllerClassVisitor();
options.readonly = true;
if (!options.pathToSource) {
throw new Error(`"pathToSource" must be defined in plugin options`);
}
}
visit(program, sf) {
const factoryHost = { factory: ts.factory };
const parsedOptions = (0, merge_options_1.mergePluginOptions)(this.options);
if ((0, is_filename_matched_util_1.isFilenameMatched)(parsedOptions.dtoFileNameSuffix, sf.fileName)) {
return this.modelClassVisitor.visit(sf, factoryHost, program, parsedOptions);
}
if ((0, is_filename_matched_util_1.isFilenameMatched)(parsedOptions.controllerFileNameSuffix, sf.fileName)) {
return this.controllerClassVisitor.visit(sf, factoryHost, program, parsedOptions);
}
}
collect() {
return {
models: this.modelClassVisitor.collectedMetadata,
controllers: this.controllerClassVisitor.collectedMetadata
};
}
}
exports.ReadonlyVisitor = ReadonlyVisitor;