@u1f992/vivliostyle-index 0.2.4 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +230 -24
- package/dist/document-renderer.d.ts +7 -0
- package/dist/document-renderer.d.ts.map +1 -0
- package/dist/document-renderer.js +86 -0
- package/dist/document-renderer.js.map +1 -0
- package/dist/file-system.d.ts +11 -0
- package/dist/file-system.d.ts.map +1 -0
- package/dist/file-system.js +93 -0
- package/dist/file-system.js.map +1 -0
- package/dist/html.d.ts +4 -0
- package/dist/html.d.ts.map +1 -0
- package/dist/html.js +9 -0
- package/dist/html.js.map +1 -0
- package/dist/id.d.ts +5 -0
- package/dist/id.d.ts.map +1 -0
- package/dist/id.js +30 -0
- package/dist/id.js.map +1 -0
- package/dist/index-builder.d.ts +15 -0
- package/dist/index-builder.d.ts.map +1 -0
- package/dist/index-builder.js +138 -0
- package/dist/index-builder.js.map +1 -0
- package/dist/index-state.d.ts +29 -0
- package/dist/index-state.d.ts.map +1 -0
- package/dist/index-state.js +95 -0
- package/dist/index-state.js.map +1 -0
- package/dist/index.d.ts +45 -15
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +53 -122
- package/dist/index.js.map +1 -1
- package/dist/instruction.d.ts +37 -0
- package/dist/instruction.d.ts.map +1 -0
- package/dist/instruction.js +267 -0
- package/dist/instruction.js.map +1 -0
- package/dist/location.d.ts +2 -0
- package/dist/location.d.ts.map +1 -0
- package/dist/location.js +17 -0
- package/dist/location.js.map +1 -0
- package/dist/messages.d.ts +24 -0
- package/dist/messages.d.ts.map +1 -0
- package/dist/messages.js +114 -0
- package/dist/messages.js.map +1 -0
- package/dist/model.d.ts +77 -36
- package/dist/model.d.ts.map +1 -1
- package/dist/model.js +112 -148
- package/dist/model.js.map +1 -1
- package/dist/platform.d.ts +4 -0
- package/dist/platform.d.ts.map +1 -0
- package/dist/platform.js +13 -0
- package/dist/platform.js.map +1 -0
- package/dist/profile.d.ts +11 -0
- package/dist/profile.d.ts.map +1 -0
- package/dist/profile.js +17 -0
- package/dist/profile.js.map +1 -0
- package/dist/render.d.ts +175 -0
- package/dist/render.d.ts.map +1 -0
- package/dist/render.js +285 -0
- package/dist/render.js.map +1 -0
- package/dist/sort.d.ts +22 -16
- package/dist/sort.d.ts.map +1 -1
- package/dist/sort.js +91 -53
- package/dist/sort.js.map +1 -1
- package/dist/source-snapshot.d.ts +21 -0
- package/dist/source-snapshot.d.ts.map +1 -0
- package/dist/source-snapshot.js +76 -0
- package/dist/source-snapshot.js.map +1 -0
- package/dist/target.d.ts +9 -0
- package/dist/target.d.ts.map +1 -0
- package/dist/target.js +17 -0
- package/dist/target.js.map +1 -0
- package/dist/template.d.ts +4 -0
- package/dist/template.d.ts.map +1 -0
- package/dist/template.js +15 -0
- package/dist/template.js.map +1 -0
- package/package.json +25 -17
- package/dist/command/expand.d.ts +0 -5
- package/dist/command/expand.d.ts.map +0 -1
- package/dist/command/expand.js +0 -193
- package/dist/command/expand.js.map +0 -1
- package/dist/command/insert-page.d.ts +0 -5
- package/dist/command/insert-page.d.ts.map +0 -1
- package/dist/command/insert-page.js +0 -32
- package/dist/command/insert-page.js.map +0 -1
- package/dist/command/insert-range.d.ts +0 -21
- package/dist/command/insert-range.d.ts.map +0 -1
- package/dist/command/insert-range.js +0 -61
- package/dist/command/insert-range.js.map +0 -1
- package/dist/command/insert-reference.d.ts +0 -4
- package/dist/command/insert-reference.d.ts.map +0 -1
- package/dist/command/insert-reference.js +0 -58
- package/dist/command/insert-reference.js.map +0 -1
- package/dist/command.d.ts +0 -25
- package/dist/command.d.ts.map +0 -1
- package/dist/command.js +0 -159
- package/dist/command.js.map +0 -1
- package/dist/resolve.d.ts +0 -3
- package/dist/resolve.d.ts.map +0 -1
- package/dist/resolve.js +0 -95
- package/dist/resolve.js.map +0 -1
- package/dist/util.d.ts +0 -10
- package/dist/util.d.ts.map +0 -1
- package/dist/util.js +0 -27
- package/dist/util.js.map +0 -1
package/dist/render.js
ADDED
|
@@ -0,0 +1,285 @@
|
|
|
1
|
+
import { parseFragment } from "./html.js";
|
|
2
|
+
import { createEntryId, createSubentryId } from "./id.js";
|
|
3
|
+
import { fillSlot } from "./template.js";
|
|
4
|
+
import { h } from "hastscript";
|
|
5
|
+
function errorProperties(error) {
|
|
6
|
+
return error === undefined ? {} : { dataIndexError: error };
|
|
7
|
+
}
|
|
8
|
+
const defaultHeading = ({ properties, contents }) => [
|
|
9
|
+
h("span", properties, contents),
|
|
10
|
+
];
|
|
11
|
+
const defaultGroupHeading = ({ properties, contents }) => [
|
|
12
|
+
h("h2", properties, contents),
|
|
13
|
+
];
|
|
14
|
+
const defaultLocationCompose = ({ properties, contents, }) => [h("a", properties, contents)];
|
|
15
|
+
const defaultPageNumber = ({ properties }) => [
|
|
16
|
+
h("span", properties),
|
|
17
|
+
];
|
|
18
|
+
const defaultRangeSeparator = ({ properties }) => [
|
|
19
|
+
h("span", properties),
|
|
20
|
+
];
|
|
21
|
+
const defaultLocatorCompose = ({ properties, contents, }) => [h("li", properties, contents)];
|
|
22
|
+
const defaultXrefTargetCompose = ({ properties, contents, }) => [h("a", properties, contents)];
|
|
23
|
+
const defaultXrefEntry = ({ properties, contents, }) => [h("span", properties, contents)];
|
|
24
|
+
const defaultXrefSubentrySeparator = ({ properties }) => [h("span", properties)];
|
|
25
|
+
const defaultXrefSubentry = ({ properties, contents, }) => [h("span", properties, contents)];
|
|
26
|
+
const defaultXrefCompose = ({ properties, contents, }) => [h("li", properties, contents)];
|
|
27
|
+
const defaultLocatorListCompose = ({ properties, locators, }) => [h("ul", properties, locators.flat())];
|
|
28
|
+
const defaultXrefPreferredListCompose = ({ properties, xrefPreferreds, }) => [h("ul", properties, xrefPreferreds.flat())];
|
|
29
|
+
const defaultXrefRelatedListCompose = ({ properties, xrefRelateds, }) => [h("ul", properties, xrefRelateds.flat())];
|
|
30
|
+
const defaultSubentryCompose = ({ properties, heading, locatorList, xrefPreferredList, xrefRelatedList, }) => [h("li", properties, [...heading, ...locatorList, ...xrefPreferredList, ...xrefRelatedList])];
|
|
31
|
+
const defaultSubentryListCompose = ({ properties, subentries, }) => [h("ul", properties, subentries.flat())];
|
|
32
|
+
const defaultEntryCompose = ({ properties, heading, locatorList, xrefPreferredList, xrefRelatedList, subentryList, }) => [
|
|
33
|
+
h("li", properties, [
|
|
34
|
+
...heading,
|
|
35
|
+
...locatorList,
|
|
36
|
+
...xrefPreferredList,
|
|
37
|
+
...xrefRelatedList,
|
|
38
|
+
...subentryList,
|
|
39
|
+
]),
|
|
40
|
+
];
|
|
41
|
+
const defaultEntryListCompose = ({ properties, entries, }) => [h("ul", properties, entries.flat())];
|
|
42
|
+
const defaultGroupCompose = ({ properties, heading, entryList, }) => [h("section", properties, [...heading, ...entryList])];
|
|
43
|
+
const defaultGroupListCompose = ({ properties, groups, }) => [h("div", properties, groups.flat())];
|
|
44
|
+
const defaultIndexCompose = ({ groupList }) => groupList;
|
|
45
|
+
const bindRendererMethod = (renderer, method, defaultMethod) => method === undefined ? defaultMethod : method.bind(renderer);
|
|
46
|
+
const resolveLocationRenderer = (renderer) => ({
|
|
47
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultLocationCompose),
|
|
48
|
+
pageNumber: bindRendererMethod(renderer, renderer.pageNumber, defaultPageNumber),
|
|
49
|
+
rangeSeparator: bindRendererMethod(renderer, renderer.rangeSeparator, defaultRangeSeparator),
|
|
50
|
+
});
|
|
51
|
+
const resolveLocatorRenderer = (renderer) => ({
|
|
52
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultLocatorCompose),
|
|
53
|
+
location: resolveLocationRenderer(renderer.location ?? {}),
|
|
54
|
+
});
|
|
55
|
+
const resolveXrefTargetRenderer = (renderer) => ({
|
|
56
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultXrefTargetCompose),
|
|
57
|
+
entry: bindRendererMethod(renderer, renderer.entry, defaultXrefEntry),
|
|
58
|
+
subentrySeparator: bindRendererMethod(renderer, renderer.subentrySeparator, defaultXrefSubentrySeparator),
|
|
59
|
+
subentry: bindRendererMethod(renderer, renderer.subentry, defaultXrefSubentry),
|
|
60
|
+
});
|
|
61
|
+
const resolveXrefRenderer = (renderer) => ({
|
|
62
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultXrefCompose),
|
|
63
|
+
target: resolveXrefTargetRenderer(renderer.target ?? {}),
|
|
64
|
+
});
|
|
65
|
+
const resolveLocatorListRenderer = (renderer) => ({
|
|
66
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultLocatorListCompose),
|
|
67
|
+
locator: (context) => resolveLocatorRenderer(renderer.locator?.call(renderer, context) ?? {}),
|
|
68
|
+
});
|
|
69
|
+
const resolveXrefPreferredListRenderer = (renderer) => ({
|
|
70
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultXrefPreferredListCompose),
|
|
71
|
+
xrefPreferred: (context) => resolveXrefRenderer(renderer.xrefPreferred?.call(renderer, context) ?? {}),
|
|
72
|
+
});
|
|
73
|
+
const resolveXrefRelatedListRenderer = (renderer) => ({
|
|
74
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultXrefRelatedListCompose),
|
|
75
|
+
xrefRelated: (context) => resolveXrefRenderer(renderer.xrefRelated?.call(renderer, context) ?? {}),
|
|
76
|
+
});
|
|
77
|
+
const resolveSubentryRenderer = (renderer) => ({
|
|
78
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultSubentryCompose),
|
|
79
|
+
heading: bindRendererMethod(renderer, renderer.heading, defaultHeading),
|
|
80
|
+
locatorList: resolveLocatorListRenderer(renderer.locatorList ?? {}),
|
|
81
|
+
xrefPreferredList: resolveXrefPreferredListRenderer(renderer.xrefPreferredList ?? {}),
|
|
82
|
+
xrefRelatedList: resolveXrefRelatedListRenderer(renderer.xrefRelatedList ?? {}),
|
|
83
|
+
});
|
|
84
|
+
const resolveSubentryListRenderer = (renderer) => ({
|
|
85
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultSubentryListCompose),
|
|
86
|
+
subentry: (context) => resolveSubentryRenderer(renderer.subentry?.call(renderer, context) ?? {}),
|
|
87
|
+
});
|
|
88
|
+
const resolveEntryRenderer = (renderer) => ({
|
|
89
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultEntryCompose),
|
|
90
|
+
heading: bindRendererMethod(renderer, renderer.heading, defaultHeading),
|
|
91
|
+
locatorList: resolveLocatorListRenderer(renderer.locatorList ?? {}),
|
|
92
|
+
xrefPreferredList: resolveXrefPreferredListRenderer(renderer.xrefPreferredList ?? {}),
|
|
93
|
+
xrefRelatedList: resolveXrefRelatedListRenderer(renderer.xrefRelatedList ?? {}),
|
|
94
|
+
subentryList: resolveSubentryListRenderer(renderer.subentryList ?? {}),
|
|
95
|
+
});
|
|
96
|
+
const resolveEntryListRenderer = (renderer) => ({
|
|
97
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultEntryListCompose),
|
|
98
|
+
entry: (context) => resolveEntryRenderer(renderer.entry?.call(renderer, context) ?? {}),
|
|
99
|
+
});
|
|
100
|
+
const resolveGroupRenderer = (renderer) => ({
|
|
101
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultGroupCompose),
|
|
102
|
+
heading: bindRendererMethod(renderer, renderer.heading, defaultGroupHeading),
|
|
103
|
+
entryList: resolveEntryListRenderer(renderer.entryList ?? {}),
|
|
104
|
+
});
|
|
105
|
+
const resolveGroupListRenderer = (renderer) => ({
|
|
106
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultGroupListCompose),
|
|
107
|
+
group: (context) => resolveGroupRenderer(renderer.group?.call(renderer, context) ?? {}),
|
|
108
|
+
});
|
|
109
|
+
const resolveIndexRenderer = (renderer) => ({
|
|
110
|
+
compose: bindRendererMethod(renderer, renderer.compose, defaultIndexCompose),
|
|
111
|
+
groupList: resolveGroupListRenderer(renderer.groupList ?? {}),
|
|
112
|
+
});
|
|
113
|
+
export const defaultRenderer = () => resolveIndexRenderer({});
|
|
114
|
+
export function renderIndex(index, target, indexId, renderer) {
|
|
115
|
+
const resolvedRenderer = resolveIndexRenderer(renderer);
|
|
116
|
+
const groupListProperties = { dataIndexRole: "group-list" };
|
|
117
|
+
const groupListRenderer = resolvedRenderer.groupList;
|
|
118
|
+
const groups = index.groups.map((group) => renderGroup(group, { dataIndexRole: "group" }, indexId, groupListRenderer.group({ group: group.key })));
|
|
119
|
+
const groupListParts = { properties: groupListProperties, groups };
|
|
120
|
+
const groupList = groupListRenderer.compose(groupListParts);
|
|
121
|
+
target.data = { ...target.data, indexResult: index };
|
|
122
|
+
const indexParts = { groupList };
|
|
123
|
+
target.children = resolvedRenderer.compose(indexParts);
|
|
124
|
+
}
|
|
125
|
+
const renderHeading = (key, renderer) => {
|
|
126
|
+
const properties = {};
|
|
127
|
+
const contents = parseFragment(key.html);
|
|
128
|
+
const headingParts = { properties, contents };
|
|
129
|
+
return renderer.heading(headingParts);
|
|
130
|
+
};
|
|
131
|
+
const renderGroup = (group, properties, indexId, renderer) => {
|
|
132
|
+
const heading = renderHeading(group.key, renderer);
|
|
133
|
+
const entryListProperties = { dataIndexRole: "entry-list" };
|
|
134
|
+
const entryListRenderer = renderer.entryList;
|
|
135
|
+
const entries = group.entries.map((entry) => renderEntry(entry, { id: createEntryId(indexId, group.key, entry.key) }, indexId, group.key, entryListRenderer.entry({ entry: entry.key })));
|
|
136
|
+
const entryListParts = { properties: entryListProperties, entries };
|
|
137
|
+
const entryList = entryListRenderer.compose(entryListParts);
|
|
138
|
+
const groupParts = { properties, heading, entryList };
|
|
139
|
+
return renderer.compose(groupParts);
|
|
140
|
+
};
|
|
141
|
+
const renderEntry = (entry, properties, indexId, groupKey, renderer) => {
|
|
142
|
+
const heading = renderHeading(entry.key, renderer);
|
|
143
|
+
const locatorList = renderLocatorList(entry.locators, renderer);
|
|
144
|
+
const xrefPreferredList = renderPreferredXrefList(entry.xrefPreferred, indexId, renderer);
|
|
145
|
+
const xrefRelatedList = renderRelatedXrefList(entry.xrefRelated, indexId, renderer);
|
|
146
|
+
const subentryListProperties = { dataIndexRole: "subentry-list" };
|
|
147
|
+
const subentryListRenderer = renderer.subentryList;
|
|
148
|
+
const subentries = entry.subentries.map((subentry) => renderSubentry(subentry, { id: createSubentryId(indexId, groupKey, entry.key, subentry.key) }, indexId, subentryListRenderer.subentry({ subentry: subentry.key })));
|
|
149
|
+
const subentryListParts = {
|
|
150
|
+
properties: subentryListProperties,
|
|
151
|
+
subentries,
|
|
152
|
+
};
|
|
153
|
+
const subentryList = subentryListRenderer.compose(subentryListParts);
|
|
154
|
+
const entryParts = {
|
|
155
|
+
properties,
|
|
156
|
+
heading,
|
|
157
|
+
locatorList,
|
|
158
|
+
xrefPreferredList,
|
|
159
|
+
xrefRelatedList,
|
|
160
|
+
subentryList,
|
|
161
|
+
};
|
|
162
|
+
return renderer.compose(entryParts);
|
|
163
|
+
};
|
|
164
|
+
const renderSubentry = (subentry, properties, indexId, renderer) => {
|
|
165
|
+
const heading = renderHeading(subentry.key, renderer);
|
|
166
|
+
const locatorList = renderLocatorList(subentry.locators, renderer);
|
|
167
|
+
const xrefPreferredList = renderPreferredXrefList(subentry.xrefPreferred, indexId, renderer);
|
|
168
|
+
const xrefRelatedList = renderRelatedXrefList(subentry.xrefRelated, indexId, renderer);
|
|
169
|
+
const subentryParts = {
|
|
170
|
+
properties,
|
|
171
|
+
heading,
|
|
172
|
+
locatorList,
|
|
173
|
+
xrefPreferredList,
|
|
174
|
+
xrefRelatedList,
|
|
175
|
+
};
|
|
176
|
+
return renderer.compose(subentryParts);
|
|
177
|
+
};
|
|
178
|
+
const renderLocatorList = (locators, renderer) => {
|
|
179
|
+
const properties = { dataIndexRole: "locator-list" };
|
|
180
|
+
const listRenderer = renderer.locatorList;
|
|
181
|
+
const renderedLocators = locators.map((locator) => renderLocator(locator, listRenderer));
|
|
182
|
+
const locatorListParts = { properties, locators: renderedLocators };
|
|
183
|
+
return listRenderer.compose(locatorListParts);
|
|
184
|
+
};
|
|
185
|
+
const renderPageNumber = (target, renderer) => {
|
|
186
|
+
const properties = { dataIndexRole: "page-number", dataIndexPageTarget: target };
|
|
187
|
+
const pageNumberParts = { properties };
|
|
188
|
+
return renderer.pageNumber(pageNumberParts);
|
|
189
|
+
};
|
|
190
|
+
const renderLocatorContents = ({ location }, renderer) => {
|
|
191
|
+
if (location.type === "page") {
|
|
192
|
+
return renderPageNumber(location.href, renderer);
|
|
193
|
+
}
|
|
194
|
+
const separatorProperties = { dataIndexRole: "range-separator" };
|
|
195
|
+
const rangeSeparatorParts = { properties: separatorProperties };
|
|
196
|
+
return [
|
|
197
|
+
...renderPageNumber(location.start, renderer),
|
|
198
|
+
...renderer.rangeSeparator(rangeSeparatorParts),
|
|
199
|
+
...renderPageNumber(location.end, renderer),
|
|
200
|
+
];
|
|
201
|
+
};
|
|
202
|
+
const renderLocator = (locator, listRenderer) => {
|
|
203
|
+
const { location } = locator;
|
|
204
|
+
const locationProperties = {
|
|
205
|
+
dataIndexRole: location.type,
|
|
206
|
+
href: location.type === "page" ? location.href : location.start,
|
|
207
|
+
...errorProperties(locator.error),
|
|
208
|
+
};
|
|
209
|
+
const renderer = listRenderer.locator({ locator });
|
|
210
|
+
const locationRenderer = renderer.location;
|
|
211
|
+
const locationParts = {
|
|
212
|
+
properties: locationProperties,
|
|
213
|
+
contents: renderLocatorContents(locator, locationRenderer),
|
|
214
|
+
};
|
|
215
|
+
const content = locationRenderer.compose(locationParts);
|
|
216
|
+
const contents = fillSlot(locator.template, content);
|
|
217
|
+
if (contents.length === 0) {
|
|
218
|
+
return [];
|
|
219
|
+
}
|
|
220
|
+
const locatorParts = { properties: {}, contents };
|
|
221
|
+
return renderer.compose(locatorParts);
|
|
222
|
+
};
|
|
223
|
+
const xrefId = (indexId, { group, entry, subentry }) => subentry === undefined
|
|
224
|
+
? createEntryId(indexId, group, entry)
|
|
225
|
+
: createSubentryId(indexId, group, entry, subentry);
|
|
226
|
+
const renderPreferredXrefList = (xrefPreferreds, indexId, renderer) => {
|
|
227
|
+
const properties = { dataIndexRole: "xref-preferred" };
|
|
228
|
+
const listRenderer = renderer.xrefPreferredList;
|
|
229
|
+
const renderedXrefPreferreds = xrefPreferreds.map((xrefPreferred) => renderXref("preferred", xrefPreferred, indexId, listRenderer.xrefPreferred({ xrefPreferred })));
|
|
230
|
+
const xrefPreferredListParts = {
|
|
231
|
+
properties,
|
|
232
|
+
xrefPreferreds: renderedXrefPreferreds,
|
|
233
|
+
};
|
|
234
|
+
return listRenderer.compose(xrefPreferredListParts);
|
|
235
|
+
};
|
|
236
|
+
const renderRelatedXrefList = (xrefRelateds, indexId, renderer) => {
|
|
237
|
+
const properties = { dataIndexRole: "xref-related" };
|
|
238
|
+
const listRenderer = renderer.xrefRelatedList;
|
|
239
|
+
const renderedXrefRelateds = xrefRelateds.map((xrefRelated) => renderXref("related", xrefRelated, indexId, listRenderer.xrefRelated({ xrefRelated })));
|
|
240
|
+
const xrefRelatedListParts = {
|
|
241
|
+
properties,
|
|
242
|
+
xrefRelateds: renderedXrefRelateds,
|
|
243
|
+
};
|
|
244
|
+
return listRenderer.compose(xrefRelatedListParts);
|
|
245
|
+
};
|
|
246
|
+
const xrefProperties = ({ target, error }, indexId) => ({
|
|
247
|
+
href: `#${xrefId(indexId, target)}`,
|
|
248
|
+
...errorProperties(error),
|
|
249
|
+
});
|
|
250
|
+
const renderXrefContents = (type, { target }, renderer) => {
|
|
251
|
+
const entryProperties = { dataIndexRole: `xref-${type}-entry` };
|
|
252
|
+
const entryContents = parseFragment(target.entry.html);
|
|
253
|
+
const entryParts = { properties: entryProperties, contents: entryContents };
|
|
254
|
+
const entry = renderer.entry(entryParts);
|
|
255
|
+
if (target.subentry === undefined) {
|
|
256
|
+
return entry;
|
|
257
|
+
}
|
|
258
|
+
const separatorProperties = {
|
|
259
|
+
dataIndexRole: `xref-${type}-subentry-separator`,
|
|
260
|
+
};
|
|
261
|
+
const subentryProperties = { dataIndexRole: `xref-${type}-subentry` };
|
|
262
|
+
const subentryContents = parseFragment(target.subentry.html);
|
|
263
|
+
const subentrySeparatorParts = { properties: separatorProperties };
|
|
264
|
+
const subentryParts = { properties: subentryProperties, contents: subentryContents };
|
|
265
|
+
return [
|
|
266
|
+
...entry,
|
|
267
|
+
...renderer.subentrySeparator(subentrySeparatorParts),
|
|
268
|
+
...renderer.subentry(subentryParts),
|
|
269
|
+
];
|
|
270
|
+
};
|
|
271
|
+
const renderXref = (type, xref, indexId, renderer) => {
|
|
272
|
+
const targetRenderer = renderer.target;
|
|
273
|
+
const targetParts = {
|
|
274
|
+
properties: xrefProperties(xref, indexId),
|
|
275
|
+
contents: renderXrefContents(type, xref, targetRenderer),
|
|
276
|
+
};
|
|
277
|
+
const content = targetRenderer.compose(targetParts);
|
|
278
|
+
const contents = fillSlot(xref.template, content);
|
|
279
|
+
if (contents.length === 0) {
|
|
280
|
+
return [];
|
|
281
|
+
}
|
|
282
|
+
const xrefParts = { properties: {}, contents };
|
|
283
|
+
return renderer.compose(xrefParts);
|
|
284
|
+
};
|
|
285
|
+
//# sourceMappingURL=render.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render.js","sourceRoot":"","sources":["../src/render.ts"],"names":[],"mappings":"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"}
|
package/dist/sort.d.ts
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
|
-
import {
|
|
2
|
-
type Locator = MainEntry<ResolvedKey>["locators"][0];
|
|
3
|
-
type Reference = MainEntry<ResolvedKey>["see"][0];
|
|
1
|
+
import type { Entry, Group, HasKey, Index, Key, Subentry, Xref } from "./model.ts";
|
|
4
2
|
type Comparator<T> = NonNullable<Parameters<Array<T>["sort"]>[0]>;
|
|
5
|
-
export type
|
|
6
|
-
group: Comparator<Group
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
3
|
+
export type IndexComparator = {
|
|
4
|
+
group: Comparator<Group>;
|
|
5
|
+
entry: Comparator<Entry>;
|
|
6
|
+
entryXrefPreferred: Comparator<Xref>;
|
|
7
|
+
entryXrefRelated: Comparator<Xref>;
|
|
8
|
+
subentry: Comparator<Subentry>;
|
|
9
|
+
subentryXrefPreferred: Comparator<Xref>;
|
|
10
|
+
subentryXrefRelated: Comparator<Xref>;
|
|
11
|
+
};
|
|
12
|
+
export type KeyComparator = Comparator<Key>;
|
|
13
|
+
export type CreateKeyComparator = (locales: Intl.LocalesArgument) => KeyComparator;
|
|
14
|
+
export type EntryComparator = Comparator<HasKey> & Comparator<Xref>;
|
|
15
|
+
export type CreateIndexComparator = (locales: Intl.LocalesArgument) => IndexComparator;
|
|
16
|
+
export declare function byKeys(compareKeys: KeyComparator): EntryComparator;
|
|
17
|
+
export type ListedKey = string | Readonly<{
|
|
18
|
+
html: string;
|
|
19
|
+
reading: string;
|
|
15
20
|
}>;
|
|
16
|
-
export declare
|
|
17
|
-
export declare function
|
|
18
|
-
export declare function sort(
|
|
21
|
+
export declare function byLocales(locales: Intl.LocalesArgument): KeyComparator;
|
|
22
|
+
export declare function byListedOrder(order: readonly ListedKey[], fallback?: CreateKeyComparator): CreateKeyComparator;
|
|
23
|
+
export declare function sort(index: Index, comparator: IndexComparator): Index;
|
|
24
|
+
export declare function defaultComparator(locales: Intl.LocalesArgument): IndexComparator;
|
|
19
25
|
export {};
|
|
20
26
|
//# sourceMappingURL=sort.d.ts.map
|
package/dist/sort.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sort.d.ts","sourceRoot":"","sources":["../src/sort.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"sort.d.ts","sourceRoot":"","sources":["../src/sort.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,KAAK,EAAE,MAAM,EAAE,KAAK,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AAEnF,KAAK,UAAU,CAAC,CAAC,IAAI,WAAW,CAAC,UAAU,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;AAClE,MAAM,MAAM,eAAe,GAAG;IAC5B,KAAK,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;IACzB,KAAK,EAAE,UAAU,CAAC,KAAK,CAAC,CAAC;IACzB,kBAAkB,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACrC,gBAAgB,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACnC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC;IAC/B,qBAAqB,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxC,mBAAmB,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;AAC5C,MAAM,MAAM,mBAAmB,GAAG,CAAC,OAAO,EAAE,IAAI,CAAC,eAAe,KAAK,aAAa,CAAC;AACnF,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,MAAM,CAAC,GAAG,UAAU,CAAC,IAAI,CAAC,CAAC;AACpE,MAAM,MAAM,qBAAqB,GAAG,CAAC,OAAO,EAAE,IAAI,CAAC,eAAe,KAAK,eAAe,CAAC;AAUvF,wBAAgB,MAAM,CAAC,WAAW,EAAE,aAAa,GAAG,eAAe,CAYlE;AAED,MAAM,MAAM,SAAS,GAAG,MAAM,GAAG,QAAQ,CAAC;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAO7E,wBAAgB,SAAS,CAAC,OAAO,EAAE,IAAI,CAAC,eAAe,GAAG,aAAa,CAkBtE;AAaD,wBAAgB,aAAa,CAC3B,KAAK,EAAE,SAAS,SAAS,EAAE,EAC3B,QAAQ,GAAE,mBAA+B,GACxC,mBAAmB,CAarB;AAED,wBAAgB,IAAI,CAAC,KAAK,EAAE,KAAK,EAAE,UAAU,EAAE,eAAe,GAAG,KAAK,CAkBrE;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,IAAI,CAAC,eAAe,GAAG,eAAe,CAWhF"}
|
package/dist/sort.js
CHANGED
|
@@ -1,62 +1,100 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
if (
|
|
16
|
-
return
|
|
17
|
-
}
|
|
18
|
-
if (a[3] && !b[3]) {
|
|
19
|
-
return 1;
|
|
20
|
-
}
|
|
21
|
-
else if (!a[3] && b[3]) {
|
|
22
|
-
return -1;
|
|
23
|
-
}
|
|
24
|
-
else {
|
|
25
|
-
return 0;
|
|
1
|
+
import { fragmentToText } from "./html.js";
|
|
2
|
+
function keysOf(value) {
|
|
3
|
+
if (!("target" in value)) {
|
|
4
|
+
return [value.key];
|
|
5
|
+
}
|
|
6
|
+
const { group, entry, subentry } = value.target;
|
|
7
|
+
return subentry === undefined ? [group, entry] : [group, entry, subentry];
|
|
8
|
+
}
|
|
9
|
+
export function byKeys(compareKeys) {
|
|
10
|
+
return (a, b) => {
|
|
11
|
+
const aKeys = keysOf(a);
|
|
12
|
+
const bKeys = keysOf(b);
|
|
13
|
+
for (let depth = 0; depth < Math.min(aKeys.length, bKeys.length); depth++) {
|
|
14
|
+
const keyCompare = compareKeys(aKeys[depth], bKeys[depth]);
|
|
15
|
+
if (keyCompare !== 0) {
|
|
16
|
+
return keyCompare;
|
|
26
17
|
}
|
|
27
18
|
}
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
19
|
+
return aKeys.length - bKeys.length;
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
const listedKeyIdentity = (key) => {
|
|
23
|
+
const { html, reading } = typeof key === "string" ? { html: key, reading: key } : key;
|
|
24
|
+
return JSON.stringify([html.normalize("NFC"), reading.normalize("NFC")]);
|
|
25
|
+
};
|
|
26
|
+
export function byLocales(locales) {
|
|
27
|
+
const collator = new Intl.Collator(locales);
|
|
28
|
+
const htmlTexts = new Map();
|
|
29
|
+
const htmlText = (html) => {
|
|
30
|
+
const cached = htmlTexts.get(html);
|
|
31
|
+
if (cached !== undefined) {
|
|
32
|
+
return cached;
|
|
33
33
|
}
|
|
34
|
-
|
|
34
|
+
const text = fragmentToText(html);
|
|
35
|
+
htmlTexts.set(html, text);
|
|
36
|
+
return text;
|
|
37
|
+
};
|
|
38
|
+
return (a, b) => {
|
|
39
|
+
const readingCompare = collator.compare(a.reading, b.reading);
|
|
40
|
+
return readingCompare !== 0
|
|
41
|
+
? readingCompare
|
|
42
|
+
: collator.compare(htmlText(a.html), htmlText(b.html));
|
|
35
43
|
};
|
|
36
44
|
}
|
|
37
|
-
|
|
38
|
-
const
|
|
39
|
-
|
|
40
|
-
const
|
|
41
|
-
if (!
|
|
42
|
-
|
|
45
|
+
function listedKeyPositions(order) {
|
|
46
|
+
const positions = new Map();
|
|
47
|
+
order.forEach((key, position) => {
|
|
48
|
+
const identity = listedKeyIdentity(key);
|
|
49
|
+
if (!positions.has(identity)) {
|
|
50
|
+
positions.set(identity, position);
|
|
43
51
|
}
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
}
|
|
52
|
+
});
|
|
53
|
+
return positions;
|
|
54
|
+
}
|
|
55
|
+
export function byListedOrder(order, fallback = byLocales) {
|
|
56
|
+
const positions = listedKeyPositions(order);
|
|
57
|
+
return (locales) => {
|
|
58
|
+
const compareUnlisted = fallback(locales);
|
|
59
|
+
return (a, b) => {
|
|
60
|
+
const aPosition = positions.get(listedKeyIdentity(a));
|
|
61
|
+
const bPosition = positions.get(listedKeyIdentity(b));
|
|
62
|
+
if (aPosition === undefined || bPosition === undefined) {
|
|
63
|
+
return aPosition === bPosition ? compareUnlisted(a, b) : aPosition === undefined ? 1 : -1;
|
|
57
64
|
}
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
65
|
+
return aPosition - bPosition;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
export function sort(index, comparator) {
|
|
70
|
+
return {
|
|
71
|
+
groups: index.groups.toSorted(comparator.group).map((group) => ({
|
|
72
|
+
key: group.key,
|
|
73
|
+
entries: group.entries.toSorted(comparator.entry).map((entry) => ({
|
|
74
|
+
key: entry.key,
|
|
75
|
+
locators: entry.locators,
|
|
76
|
+
xrefPreferred: entry.xrefPreferred.toSorted(comparator.entryXrefPreferred),
|
|
77
|
+
xrefRelated: entry.xrefRelated.toSorted(comparator.entryXrefRelated),
|
|
78
|
+
subentries: entry.subentries.toSorted(comparator.subentry).map((subentry) => ({
|
|
79
|
+
key: subentry.key,
|
|
80
|
+
locators: subentry.locators,
|
|
81
|
+
xrefPreferred: subentry.xrefPreferred.toSorted(comparator.subentryXrefPreferred),
|
|
82
|
+
xrefRelated: subentry.xrefRelated.toSorted(comparator.subentryXrefRelated),
|
|
83
|
+
})),
|
|
84
|
+
})),
|
|
85
|
+
})),
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
export function defaultComparator(locales) {
|
|
89
|
+
const compare = byKeys(byLocales(locales));
|
|
90
|
+
return {
|
|
91
|
+
group: compare,
|
|
92
|
+
entry: compare,
|
|
93
|
+
entryXrefPreferred: compare,
|
|
94
|
+
entryXrefRelated: compare,
|
|
95
|
+
subentry: compare,
|
|
96
|
+
subentryXrefPreferred: compare,
|
|
97
|
+
subentryXrefRelated: compare,
|
|
98
|
+
};
|
|
61
99
|
}
|
|
62
100
|
//# sourceMappingURL=sort.js.map
|
package/dist/sort.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sort.js","sourceRoot":"","sources":["../src/sort.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"sort.js","sourceRoot":"","sources":["../src/sort.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type * as hast from "hast";
|
|
2
|
+
import { type ParsedInstruction } from "./instruction.ts";
|
|
3
|
+
import { type MessageArguments } from "./messages.ts";
|
|
4
|
+
import { type Target, type TargetKey } from "./target.ts";
|
|
5
|
+
type AttachmentBase = Readonly<{
|
|
6
|
+
sourcePath: string;
|
|
7
|
+
sourceId: string;
|
|
8
|
+
target: Target;
|
|
9
|
+
targetKey: TargetKey;
|
|
10
|
+
locationHref: string;
|
|
11
|
+
}>;
|
|
12
|
+
export type Attachment = AttachmentBase & Readonly<{
|
|
13
|
+
instruction: ParsedInstruction;
|
|
14
|
+
}>;
|
|
15
|
+
export type SourceSnapshot = Readonly<{
|
|
16
|
+
attachments: readonly Attachment[];
|
|
17
|
+
messages: readonly MessageArguments[];
|
|
18
|
+
}>;
|
|
19
|
+
export declare function collectSourceSnapshot(root: hast.Root, sourcePath: string): SourceSnapshot;
|
|
20
|
+
export {};
|
|
21
|
+
//# sourceMappingURL=source-snapshot.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"source-snapshot.d.ts","sourceRoot":"","sources":["../src/source-snapshot.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,IAAI,MAAM,MAAM,CAAC;AAKlC,OAAO,EAAoB,KAAK,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AAG5E,OAAO,EAAY,KAAK,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAEhE,OAAO,EAAiC,KAAK,MAAM,EAAE,KAAK,SAAS,EAAE,MAAM,aAAa,CAAC;AAEzF,KAAK,cAAc,GAAG,QAAQ,CAAC;IAC7B,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,SAAS,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;CACtB,CAAC,CAAC;AAEH,MAAM,MAAM,UAAU,GAAG,cAAc,GAAG,QAAQ,CAAC;IAAE,WAAW,EAAE,iBAAiB,CAAA;CAAE,CAAC,CAAC;AAEvF,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC;IACpC,WAAW,EAAE,SAAS,UAAU,EAAE,CAAC;IACnC,QAAQ,EAAE,SAAS,gBAAgB,EAAE,CAAC;CACvC,CAAC,CAAC;AAsBH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,UAAU,EAAE,MAAM,GAAG,cAAc,CAmDzF"}
|