-
Notifications
You must be signed in to change notification settings - Fork 12
/
typedocVersionCompatibility.ts
74 lines (64 loc) · 2.67 KB
/
typedocVersionCompatibility.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import * as ts from 'typescript';
import { Context } from 'typedoc/dist/lib/converter/context';
import { CommentPlugin } from 'typedoc/dist/lib/converter/plugins';
import { Comment, ProjectReflection } from 'typedoc/dist/lib/models';
import { memoize } from 'lodash';
import { satisfies } from 'semver';
import { Reflection } from 'typedoc/dist/lib/models/reflections';
import { ReflectionKind } from 'typedoc/dist/lib/models/reflections/abstract';
import { DeclarationReflection } from 'typedoc/dist/lib/models/reflections/declaration';
declare var require;
const typedocVersion = require('typedoc/package.json').version;
function checkTypedocVersion(semverString: string) {
return satisfies(typedocVersion, semverString);
}
export const isTypedocVersion = memoize(checkTypedocVersion);
export function removeTags(comment: Comment, tag: string) {
if (isTypedocVersion('< 0.17.0')) {
return CommentPlugin.removeTags(comment, tag);
} else {
comment.removeTags(tag);
}
}
export function removeReflection(project: ProjectReflection, reflection: Reflection) {
if (isTypedocVersion('< 0.17.0')) {
CommentPlugin.removeReflection(project, reflection);
} else {
project.removeReflection(reflection, true);
}
if (isTypedocVersion('>=0.16.0')) {
delete project.reflections[reflection.id];
}
}
export function createChildReflection(parent: Reflection, name: string) {
if (isTypedocVersion('< 0.14.0')) {
return new (DeclarationReflection as any)(parent, name, ReflectionKind.Module);
} else {
return new DeclarationReflection(name, ReflectionKind.Module, parent);
}
}
/**
* When we delete reflections, update the symbol mapping in order to fix:
* https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/313
* https://github.com/christopherthielen/typedoc-plugin-external-module-name/issues/193
*/
export function updateSymbolMapping(context: Context, symbol: ts.Symbol, reflection: Reflection) {
if (!symbol) {
return;
}
if (isTypedocVersion('< 0.16.0')) {
// (context as any).registerReflection(reflection, null, symbol);
(context.project as any).symbolMapping[(symbol as any).id] = reflection.id;
} else {
// context.registerReflection(reflection, symbol);
const fqn = context.checker.getFullyQualifiedName(symbol);
(context.project as any).fqnToReflectionIdMap.set(fqn, reflection.id);
}
}
export function isModuleOrNamespace(reflection: Reflection) {
if (isTypedocVersion('< 0.17.0')) {
return reflection.kindOf((ReflectionKind as any).ExternalModule) || reflection.kindOf(ReflectionKind.Module);
} else {
return reflection.kindOf(ReflectionKind.Module) || reflection.kindOf(ReflectionKind.Namespace);
}
}