-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsdoc.ts
More file actions
198 lines (176 loc) · 7.72 KB
/
Copy pathtsdoc.ts
File metadata and controls
198 lines (176 loc) · 7.72 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
import { doc, DocNode, JsDoc, JsDocTag, JsDocTagKind, Location } from "./deps/deno_doc.ts";
import { DOMParser } from "./deps/deno_dom.ts";
import { MarkdownIt } from "./deps/markdown-it/mod.ts";
import { blue } from "./deps/std/fmt.ts";
import { transformURL } from "./fetch.ts";
import { findGroupedLinksIssues, GroupedLinksResolved, groupLinks, resolveGroupedLinks } from "./group_links.ts";
import { ExternalLinkIssue, Issue, MissingGithubCommentIssue } from "./types.ts";
import { parseLink, parseMarkdownContent } from "./utilities.ts";
import { checkExternalUrl } from "./fetch.ts";
export interface TSDocLink {
location: Location;
anchor?: string;
tag?: JsDocTagKind;
name?: string;
}
interface WithJSDoc {
jsDoc?: JsDoc;
location: Location;
name?: string;
}
export type TSDocLinkIssue =
| (Issue & { loc: TSDocLink })
| (ExternalLinkIssue & { loc: Set<TSDocLink> });
const domParser = new DOMParser();
const mdit = MarkdownIt({ html: true, linkify: true });
export async function findIssues(module: string) {
const issues: TSDocLinkIssue[] = [];
const linkLocations = await findLinks(module);
const allAnchors: Record<string, Set<string>> = {};
const resolvedGroupableLinks: GroupedLinksResolved = {
githubRenderableFiles: {},
};
for (const href in linkLocations) {
const { root, anchor } = parseLink(href);
if (allAnchors[root] != null) {
if (anchor != null && !allAnchors[root].has(anchor)) {
const url = new URL(root);
const isGithubIssue = url.hostname === "github.com" && /\/[^/]+\/[^/]+\/issues\/\d+/.test(url.pathname);
if (isGithubIssue && anchor.startsWith("issuecomment-")) {
const missing: MissingGithubCommentIssue & { loc: Set<TSDocLink> } = {
type: "missing_github_comment",
commentId: anchor.replace("issuecomment-", ""),
issueUrl: root,
reference: root,
loc: linkLocations[href],
};
issues.push(missing as unknown as TSDocLinkIssue);
} else {
issues.push({
type: "missing_anchor",
anchor,
loc: linkLocations[href],
reference: root,
allAnchors: allAnchors[root],
});
}
}
continue;
}
const groupedLink = groupLinks(new Set([href])); // single!
await resolveGroupedLinks(groupedLink, resolvedGroupableLinks, { domParser });
for (const issue of findGroupedLinksIssues(groupedLink, resolvedGroupableLinks)) {
issues.push({ ...issue, loc: linkLocations[href] });
}
if (groupedLink.other.size === 0) continue; // it was a groupable special link.
console.log(blue("fetch"), decodeURIComponent(transformURL(root)));
const checkedLink = await checkExternalUrl(root, { domParser });
if (checkedLink.issues.length > 0) {
issues.push(...checkedLink.issues.map((issue) => {
return { ...issue, loc: linkLocations[href] };
}));
}
allAnchors[root] = checkedLink.anchors ?? new Set();
if (anchor != null && !allAnchors[root].has(anchor)) {
const url = new URL(root);
const isGithubIssue = url.hostname === "github.com" && /\/[^/]+\/[^/]+\/issues\/\d+/.test(url.pathname);
for (const location of linkLocations[href]) {
if (isGithubIssue && anchor.startsWith("issuecomment-")) {
const missing: MissingGithubCommentIssue & { loc: TSDocLink } = {
type: "missing_github_comment",
commentId: anchor.replace("issuecomment-", ""),
issueUrl: root,
reference: root,
loc: location,
};
issues.push(missing as unknown as TSDocLinkIssue);
} else {
issues.push({ type: "missing_anchor", loc: location, reference: root, anchor, allAnchors: allAnchors[root] });
}
}
}
}
return issues;
}
async function findLinks(module: string) {
const docNodes = await doc([module]);
const jsDocNodes = stripSymbolsWithJSDocs(docNodes[module]);
const linkLocations: Record<string, Set<TSDocLink>> = {};
for (const { jsDoc, location } of jsDocNodes) {
if (jsDoc == null) continue;
for (const href of stripLinksFromJSDoc(jsDoc.doc ?? "")) {
linkLocations[href] ??= new Set();
linkLocations[href].add({ location });
}
for (const { tag, href, name } of stripLinksFromJSDocTags(jsDoc.tags ?? [])) {
linkLocations[href] ??= new Set();
linkLocations[href].add({ location, tag, name });
}
}
return linkLocations;
}
function stripLinksFromJSDoc(doc: string) {
return parseMarkdownContent(mdit, doc).links;
}
function stripLinksFromJSDocTags(tags: JsDocTag[]) {
const links = new Set<{ tag: JsDocTagKind; href: string; name?: string }>();
for (const tag of tags) {
switch (tag.kind) {
case "category":
case "deprecated":
case "example":
case "callback":
case "template":
case "default":
case "enum":
case "extends":
case "this":
case "type":
case "property":
case "typedef":
case "param":
case "return": {
if (tag.doc == null || tag.doc.trim() === "") break;
const strippedLinks = stripLinksFromJSDoc(tag.doc);
for (const href of strippedLinks) {
let name: string | undefined = undefined;
if (
tag.kind === "property" || tag.kind === "callback" || tag.kind === "template" || tag.kind === "typedef" ||
tag.kind === "param"
) {
name = tag.name;
} else if (tag.kind === "enum" || tag.kind === "extends" || tag.kind === "this" || tag.kind === "type") {
name = tag.type;
}
links.add({ tag: tag.kind, href, name });
}
}
}
}
return links;
}
function stripSymbolsWithJSDocs(docNodes: DocNode[]) {
let jsDocNodes: WithJSDoc[] = [];
for (const node of docNodes) {
if (node.kind === "import") continue;
if (node.jsDoc != null) jsDocNodes.push(node);
if (node.kind === "interface") {
jsDocNodes = jsDocNodes.concat(
node.interfaceDef.methods.filter((method) => method.jsDoc != null),
node.interfaceDef.properties.filter((prop) => prop.jsDoc != null),
node.interfaceDef.callSignatures.filter((sig) => sig.jsDoc != null),
);
} else if (node.kind === "enum") {
jsDocNodes = jsDocNodes.concat(node.enumDef.members.filter((member) => member.jsDoc != null));
} else if (node.kind === "class") {
jsDocNodes = jsDocNodes.concat(
node.classDef.constructors.filter((constructor) => constructor.jsDoc != null),
node.classDef.methods.filter((method) => method.jsDoc != null),
node.classDef.properties.filter((prop) => prop.jsDoc != null),
);
} else if (node.kind === "namespace") {
jsDocNodes = jsDocNodes.concat(stripSymbolsWithJSDocs(node.namespaceDef.elements));
}
}
return jsDocNodes;
}