erudit 3.0.0-dev.11 → 3.0.0-dev.12
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/app/components/SiteMain.vue +1 -1
- package/app/components/aside/major/panes/nav/Nav.vue +11 -6
- package/app/components/aside/major/panes/nav/fnav/FNavFlags.vue +1 -1
- package/app/components/aside/minor/Contribute.vue +2 -2
- package/app/components/aside/minor/content/AsideMinorContent.vue +1 -1
- package/app/components/aside/minor/topic/AsideMinorTopic.vue +1 -1
- package/app/components/aside/minor/topic/TopicContributors.vue +2 -2
- package/app/components/aside/minor/topic/TopicToc.vue +1 -6
- package/app/components/aside/minor/topic/TopicTocItem.vue +3 -1
- package/app/components/main/utils/Breadcrumb.vue +1 -1
- package/app/components/preview/PreviewScreen.vue +2 -2
- package/app/components/preview/display/PageLink.vue +1 -1
- package/app/composables/bitranContent.ts +3 -3
- package/app/composables/contentPage.ts +8 -7
- package/app/composables/formatText.ts +21 -8
- package/app/composables/phrases.ts +0 -16
- package/app/plugins/prerender.server.ts +22 -0
- package/app/scripts/preview/build.ts +1 -5
- package/app/scripts/preview/data/pageLink.ts +1 -0
- package/app/styles/normalize.scss +0 -14
- package/globals/content.ts +5 -0
- package/module/imports.ts +1 -0
- package/nuxt.config.ts +1 -5
- package/package.json +8 -8
- package/server/api/aside/minor/path.ts +19 -11
- package/server/api/bitran/content/[...location].ts +4 -2
- package/server/api/bitran/toc/[...location].ts +4 -2
- package/server/api/content/data.ts +5 -2
- package/server/api/prerender.ts +120 -0
- package/server/api/preview/page/[...parts].ts +30 -4
- package/server/api/preview/unique/{[location].ts → [...location].ts} +4 -3
- package/server/plugin/bitran/content.ts +3 -16
- package/server/plugin/bitran/elements/include.ts +13 -16
- package/server/plugin/bitran/location.ts +24 -10
- package/server/plugin/bitran/toc.ts +7 -2
- package/server/plugin/bitran/transpiler.ts +10 -1
- package/server/plugin/build/jobs/content/generic.ts +10 -5
- package/server/plugin/build/jobs/content/type/group.ts +2 -2
- package/server/plugin/build/jobs/content/type/topic.ts +2 -2
- package/server/plugin/build/jobs/nav.ts +8 -11
- package/server/plugin/content/context.ts +4 -1
- package/server/plugin/db/entities/Content.ts +0 -4
- package/server/plugin/db/entities/ContentId.ts +11 -0
- package/server/plugin/db/setup.ts +3 -1
- package/server/plugin/importer.ts +5 -1
- package/server/plugin/nav/utils.ts +4 -4
- package/server/plugin/repository/content.ts +4 -12
- package/server/plugin/repository/contentId.ts +26 -0
- package/server/plugin/repository/frontNav.ts +4 -4
- package/server/plugin/repository/topic.ts +4 -1
- package/shared/aside/minor.ts +2 -2
- package/shared/bitran/contentId.ts +4 -4
- package/shared/content/bookId.ts +11 -0
- package/shared/frontNav.ts +1 -1
|
@@ -7,6 +7,8 @@ import {
|
|
|
7
7
|
navBookVisible,
|
|
8
8
|
} from '@app/scripts/aside/major/nav';
|
|
9
9
|
|
|
10
|
+
import { detectContentBookId } from '@shared/content/bookId';
|
|
11
|
+
|
|
10
12
|
import NavGlobal from './NavGlobal.vue';
|
|
11
13
|
import NavBook from './NavBook.vue';
|
|
12
14
|
|
|
@@ -23,12 +25,15 @@ asideMajorNav.globalNav ||= (await $fetch('/api/aside/major/nav/global', {
|
|
|
23
25
|
|
|
24
26
|
const checkIfInsideBook = () => {
|
|
25
27
|
if (contentRoute.value) {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
28
|
+
const bookId = detectContentBookId(
|
|
29
|
+
contentRoute.value.contentId,
|
|
30
|
+
asideMajorNav.booksIds
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
if (bookId) {
|
|
34
|
+
navBookId.value = bookId;
|
|
35
|
+
insideNavBook.value = true;
|
|
36
|
+
return;
|
|
32
37
|
}
|
|
33
38
|
}
|
|
34
39
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import type { ContentFlag } from '@erudit-js/cog/schema';
|
|
3
3
|
import { flagsData } from '@app/scripts/flag';
|
|
4
4
|
|
|
5
|
-
defineProps<{ flags: Record<ContentFlag, boolean
|
|
5
|
+
defineProps<{ flags: Partial<Record<ContentFlag, boolean>> }>();
|
|
6
6
|
|
|
7
7
|
const phrases = Object.values(flagsData).map((data) => data.title);
|
|
8
8
|
const phrase = await usePhrases(...phrases);
|
|
@@ -3,7 +3,7 @@ import eruditConfig from '#erudit/config';
|
|
|
3
3
|
|
|
4
4
|
import AsideOverlayPane from '../utils/AsideOverlayPane.vue';
|
|
5
5
|
|
|
6
|
-
const props = defineProps<{
|
|
6
|
+
const props = defineProps<{ contentId: string }>();
|
|
7
7
|
const phrase = await usePhrases(
|
|
8
8
|
'make_contribution',
|
|
9
9
|
'material_improvement',
|
|
@@ -23,7 +23,7 @@ const issueLink = computed(() => {
|
|
|
23
23
|
const editPageLink = computed(() => {
|
|
24
24
|
const ghRepository = eruditConfig.repository;
|
|
25
25
|
return ghRepository
|
|
26
|
-
? `https://github.com/${ghRepository.name}/tree/${ghRepository.branch}/content/${props.
|
|
26
|
+
? `https://github.com/${ghRepository.name}/tree/${ghRepository.branch}/content/${props.contentId}`
|
|
27
27
|
: null;
|
|
28
28
|
});
|
|
29
29
|
</script>
|
|
@@ -40,7 +40,7 @@ watch(contentData, () => (contributePaneVisible.value = false));
|
|
|
40
40
|
{{ phrase.no_contributors }}
|
|
41
41
|
</section>
|
|
42
42
|
<AsideMinorContribute
|
|
43
|
-
:
|
|
43
|
+
:contentId="contentData.contentId"
|
|
44
44
|
v-model:pane="contributePaneVisible"
|
|
45
45
|
/>
|
|
46
46
|
</AsideMinorPane>
|
|
@@ -18,7 +18,7 @@ watch(topicData, () => (contributePaneVisible.value = false));
|
|
|
18
18
|
<TopicToc />
|
|
19
19
|
<TopicContributors v-if="topicData.contributors" />
|
|
20
20
|
<AsideMinorContribute
|
|
21
|
-
:
|
|
21
|
+
:contentId="topicData.topicId"
|
|
22
22
|
v-model:pane="contributePaneVisible"
|
|
23
23
|
/>
|
|
24
24
|
</AsideMinorPane>
|
|
@@ -27,9 +27,9 @@ onMounted(() => {
|
|
|
27
27
|
watch(
|
|
28
28
|
topicData,
|
|
29
29
|
() => {
|
|
30
|
-
if (previousFullId === topicData.value.
|
|
30
|
+
if (previousFullId === topicData.value.topicId) return;
|
|
31
31
|
|
|
32
|
-
previousFullId = topicData.value.
|
|
32
|
+
previousFullId = topicData.value.topicId;
|
|
33
33
|
showcase.value = [...topicData.value.contributors!]
|
|
34
34
|
.sort(() => 0.5 - Math.random())
|
|
35
35
|
.slice(0, counter.value.showcase);
|
|
@@ -174,12 +174,7 @@ onMounted(() => {
|
|
|
174
174
|
|
|
175
175
|
if (!topicData.value.location || !topicLocation.value) return;
|
|
176
176
|
|
|
177
|
-
|
|
178
|
-
stringifyBitranLocation(topicData.value.location) ===
|
|
179
|
-
stringifyBitranLocation(topicLocation.value)
|
|
180
|
-
) {
|
|
181
|
-
enableLiveToc();
|
|
182
|
-
}
|
|
177
|
+
enableLiveToc();
|
|
183
178
|
},
|
|
184
179
|
{ immediate: true },
|
|
185
180
|
);
|
|
@@ -6,6 +6,8 @@ const productName = props.tocItem.productName;
|
|
|
6
6
|
const productIcon = await useBitranElementIcon(productName);
|
|
7
7
|
const productPhrase = await useBitranElementLanguage(productName);
|
|
8
8
|
|
|
9
|
+
const pretty = useFormatText();
|
|
10
|
+
|
|
9
11
|
function tocItemClick(event: MouseEvent): void {
|
|
10
12
|
navigateTo({
|
|
11
13
|
query: {
|
|
@@ -20,7 +22,7 @@ function tocItemClick(event: MouseEvent): void {
|
|
|
20
22
|
|
|
21
23
|
<template>
|
|
22
24
|
<TreeItem
|
|
23
|
-
:label="tocItem.title || productPhrase('_element_title')"
|
|
25
|
+
:label="pretty(tocItem.title || productPhrase('_element_title'))"
|
|
24
26
|
:level="tocItem.level"
|
|
25
27
|
:link="`?element=${tocItem.id}`"
|
|
26
28
|
:svg="productIcon"
|
|
@@ -13,7 +13,7 @@ function getIcon(contextIcon: string) {
|
|
|
13
13
|
|
|
14
14
|
<template>
|
|
15
15
|
<section :class="$style.breadcrumb">
|
|
16
|
-
<template v-for="contextItem of context.slice(0, -1)">
|
|
16
|
+
<template v-for="contextItem of context.slice(0, -1).filter(item => !item.hidden)">
|
|
17
17
|
<Link :to="contextItem.href" :class="$style.breadcrumbItem">
|
|
18
18
|
<MyIcon :name="getIcon(contextItem.icon)" wrapper="span" />
|
|
19
19
|
{{ contextItem.title }}
|
|
@@ -5,7 +5,7 @@ import { buildPreviewData } from '@app/scripts/preview/build';
|
|
|
5
5
|
import { getPreviewDisplayComponent } from '@app/scripts/preview/display';
|
|
6
6
|
import { createPreviewError } from '@app/scripts/preview/data/alert';
|
|
7
7
|
|
|
8
|
-
import {
|
|
8
|
+
import { LazyPreviewDisplayAlert } from '#components';
|
|
9
9
|
|
|
10
10
|
const { request } = defineProps<{ request: PreviewRequest }>();
|
|
11
11
|
const height = defineModel<number>('height');
|
|
@@ -35,7 +35,7 @@ const setupDisplay = setTimeout(async () => {
|
|
|
35
35
|
message: error?.message || error,
|
|
36
36
|
});
|
|
37
37
|
|
|
38
|
-
DisplayComponent.value =
|
|
38
|
+
DisplayComponent.value = LazyPreviewDisplayAlert;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
await nextTick();
|
|
@@ -9,7 +9,7 @@ const phrase = await usePhrases('internal_link_warn');
|
|
|
9
9
|
|
|
10
10
|
<template>
|
|
11
11
|
<PreviewDisplay :footer="data.footer">
|
|
12
|
-
<div :class="$style.wrapper">{{ phrase.internal_link_warn }}</div>
|
|
12
|
+
<div :class="$style.wrapper">{{ data.description || phrase.internal_link_warn }}</div>
|
|
13
13
|
</PreviewDisplay>
|
|
14
14
|
</template>
|
|
15
15
|
|
|
@@ -29,8 +29,8 @@ export async function useBitranContent(
|
|
|
29
29
|
})();
|
|
30
30
|
}
|
|
31
31
|
|
|
32
|
-
const
|
|
33
|
-
nuxtApp.runWithContext(() => prerenderRoutes(
|
|
32
|
+
const contentApiRoute = `/api/bitran/content/${encodeBitranLocation(stringifyBitranLocation(location.value!))}`;
|
|
33
|
+
nuxtApp.runWithContext(() => prerenderRoutes(contentApiRoute));
|
|
34
34
|
|
|
35
35
|
// @ts-ignore
|
|
36
36
|
contentPromise = (async () => {
|
|
@@ -49,7 +49,7 @@ export async function useBitranContent(
|
|
|
49
49
|
if (payload.location === locationString) {
|
|
50
50
|
stringContent = payload;
|
|
51
51
|
} else {
|
|
52
|
-
stringContent = await $fetch(
|
|
52
|
+
stringContent = await $fetch(contentApiRoute, {
|
|
53
53
|
responseType: 'json',
|
|
54
54
|
});
|
|
55
55
|
|
|
@@ -62,17 +62,16 @@ export function useContentPage(contentData: Ref<ContentData>) {
|
|
|
62
62
|
contentData.value.generic.title ||
|
|
63
63
|
contentData.value.generic.contentId.split('/').pop();
|
|
64
64
|
|
|
65
|
-
if (contentData.value.type !== 'book') {
|
|
66
|
-
const bookTitle = contentData.value?.bookTitle;
|
|
67
|
-
title += bookTitle ? ` | ${bookTitle}` : '';
|
|
68
|
-
}
|
|
69
|
-
|
|
70
65
|
if (contentRoute.value!.type === 'topic') {
|
|
71
66
|
const topicPart = contentRoute.value!.topicPart;
|
|
72
|
-
|
|
73
67
|
if (topicPart !== 'article') title += ` | ${phrase[topicPart]}`;
|
|
74
68
|
}
|
|
75
69
|
|
|
70
|
+
if (contentData.value.type !== 'book') {
|
|
71
|
+
const bookTitle = contentData.value?.bookTitle;
|
|
72
|
+
title += bookTitle ? ` | ${bookTitle}` : '';
|
|
73
|
+
}
|
|
74
|
+
|
|
76
75
|
title +=
|
|
77
76
|
' - ' +
|
|
78
77
|
(eruditConfig.seo?.title ||
|
|
@@ -91,7 +90,9 @@ export function useContentPage(contentData: Ref<ContentData>) {
|
|
|
91
90
|
contentData.value.generic?.description;
|
|
92
91
|
|
|
93
92
|
if (customDescription) {
|
|
94
|
-
seo.description.value = customDescription
|
|
93
|
+
seo.description.value = customDescription
|
|
94
|
+
.trim()
|
|
95
|
+
.replace(/\n/g, ' ');
|
|
95
96
|
return;
|
|
96
97
|
}
|
|
97
98
|
|
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
import eruditConfig from '#erudit/config';
|
|
2
2
|
|
|
3
|
+
export interface FormatState {
|
|
4
|
+
quoteOpen: boolean;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
const defaultFormatState: FormatState = {
|
|
8
|
+
quoteOpen: false,
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export type FormatFunction = (text: string, state?: FormatState) => string;
|
|
12
|
+
export type FormatterFunction = (text: string, state: FormatState) => string;
|
|
13
|
+
|
|
3
14
|
let formatFunction: FormatFunction;
|
|
4
15
|
|
|
5
16
|
export function useFormatText() {
|
|
@@ -11,10 +22,8 @@ export function useFormatText() {
|
|
|
11
22
|
return formatFunction;
|
|
12
23
|
}
|
|
13
24
|
|
|
14
|
-
type FormatFunction = (text: string) => string;
|
|
15
|
-
|
|
16
25
|
function createFormatFunction(language?: string): FormatFunction {
|
|
17
|
-
const formatters:
|
|
26
|
+
const formatters: FormatterFunction[] = [];
|
|
18
27
|
|
|
19
28
|
//
|
|
20
29
|
// Em Dashes
|
|
@@ -36,10 +45,11 @@ function createFormatFunction(language?: string): FormatFunction {
|
|
|
36
45
|
}
|
|
37
46
|
})();
|
|
38
47
|
|
|
39
|
-
formatters.push((text) => {
|
|
40
|
-
let open = false;
|
|
48
|
+
formatters.push((text, state) => {
|
|
41
49
|
return text.replaceAll(/"/gm, () => {
|
|
42
|
-
return (
|
|
50
|
+
return (state.quoteOpen = !state.quoteOpen)
|
|
51
|
+
? quoteSymbols[0]
|
|
52
|
+
: quoteSymbols[1];
|
|
43
53
|
});
|
|
44
54
|
});
|
|
45
55
|
}
|
|
@@ -60,10 +70,13 @@ function createFormatFunction(language?: string): FormatFunction {
|
|
|
60
70
|
//
|
|
61
71
|
//
|
|
62
72
|
|
|
63
|
-
function formatText(
|
|
73
|
+
function formatText(
|
|
74
|
+
text: string,
|
|
75
|
+
state: FormatState = defaultFormatState,
|
|
76
|
+
): string {
|
|
64
77
|
if (!text) return text;
|
|
65
78
|
|
|
66
|
-
for (const formatter of formatters) text = formatter(text);
|
|
79
|
+
for (const formatter of formatters) text = formatter(text, state);
|
|
67
80
|
|
|
68
81
|
return text;
|
|
69
82
|
}
|
|
@@ -15,7 +15,6 @@ const functionPhrases: Record<string, Function> = {};
|
|
|
15
15
|
const phraseApiRoute = (phraseId: EruditPhraseId) =>
|
|
16
16
|
`/api/language/phrase/${phraseId}`;
|
|
17
17
|
const functionsApiRoute = '/api/language/functions';
|
|
18
|
-
const phraseIdsApiRoute = '/api/language/phraseIds';
|
|
19
18
|
|
|
20
19
|
export function usePhrases<T extends EruditPhraseId[]>(
|
|
21
20
|
...phraseIds: T
|
|
@@ -26,11 +25,9 @@ export function usePhrases<T extends EruditPhraseId[]>(
|
|
|
26
25
|
nuxt.payload.data[payloadKey] ||=
|
|
27
26
|
{});
|
|
28
27
|
|
|
29
|
-
const prerenderAllPromise = prerenderAllPhrases();
|
|
30
28
|
const prepareFunctionsPromise = prepareFunctions(payload);
|
|
31
29
|
|
|
32
30
|
return (async () => {
|
|
33
|
-
await prerenderAllPromise;
|
|
34
31
|
await prepareFunctionsPromise;
|
|
35
32
|
|
|
36
33
|
payload.strPhrases ||= {};
|
|
@@ -58,19 +55,6 @@ export function usePhrases<T extends EruditPhraseId[]>(
|
|
|
58
55
|
})();
|
|
59
56
|
}
|
|
60
57
|
|
|
61
|
-
async function prerenderAllPhrases() {
|
|
62
|
-
if (import.meta.dev) return;
|
|
63
|
-
|
|
64
|
-
if (import.meta.client) return;
|
|
65
|
-
|
|
66
|
-
const nuxt = useNuxtApp();
|
|
67
|
-
|
|
68
|
-
const phraseIds = await $fetch(phraseIdsApiRoute);
|
|
69
|
-
nuxt.runWithContext(() =>
|
|
70
|
-
prerenderRoutes(phraseIds.map((phraseId) => phraseApiRoute(phraseId))),
|
|
71
|
-
);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
58
|
async function prepareFunctions(payload: LanguagePayload) {
|
|
75
59
|
if (payload?.strFunctions) return;
|
|
76
60
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
let alreadyPrerendered = false;
|
|
2
|
+
let isPrerendering = false;
|
|
3
|
+
|
|
4
|
+
export default defineNuxtPlugin({
|
|
5
|
+
name: 'erudit-prerender',
|
|
6
|
+
async setup(_nuxt) {
|
|
7
|
+
if (import.meta.dev) {
|
|
8
|
+
return; // Server is available so no need to prerender in dev mode
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
if (alreadyPrerendered || isPrerendering) {
|
|
12
|
+
return;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
isPrerendering = true;
|
|
16
|
+
|
|
17
|
+
const routesToPrerender = await $fetch<string[]>('/api/prerender');
|
|
18
|
+
_nuxt.runWithContext(() => prerenderRoutes(routesToPrerender));
|
|
19
|
+
|
|
20
|
+
alreadyPrerendered = true;
|
|
21
|
+
},
|
|
22
|
+
});
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PreviewDataType, type PreviewData } from './data';
|
|
2
|
+
import { createPreviewError } from './data/alert';
|
|
2
3
|
import { PreviewRequestType, type PreviewRequest } from './request';
|
|
3
4
|
import { PreviewThemeName } from './state';
|
|
4
5
|
|
|
@@ -26,8 +27,6 @@ export async function buildPreviewData(
|
|
|
26
27
|
'expected_page_hash',
|
|
27
28
|
);
|
|
28
29
|
|
|
29
|
-
const { createPreviewError } = await import('./data/alert');
|
|
30
|
-
|
|
31
30
|
return createPreviewError({
|
|
32
31
|
title: phrase.preview_missing_title,
|
|
33
32
|
message: phrase.preview_missing_explain_mismatch,
|
|
@@ -40,8 +39,6 @@ export async function buildPreviewData(
|
|
|
40
39
|
'element_id',
|
|
41
40
|
);
|
|
42
41
|
|
|
43
|
-
const { createPreviewError } = await import('./data/alert');
|
|
44
|
-
|
|
45
42
|
return createPreviewError({
|
|
46
43
|
title: phrase.preview_missing_title,
|
|
47
44
|
message: phrase.preview_missing_explain,
|
|
@@ -72,7 +69,6 @@ export async function buildPreviewData(
|
|
|
72
69
|
if (result) return result;
|
|
73
70
|
}
|
|
74
71
|
|
|
75
|
-
const { createPreviewError } = await import('./data/alert');
|
|
76
72
|
throw createPreviewError({
|
|
77
73
|
message: `Unable to build preview data for request!`,
|
|
78
74
|
pre: JSON.stringify(request, null, 4),
|
package/globals/content.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type {
|
|
2
2
|
BookConfig,
|
|
3
3
|
ContentReferences,
|
|
4
|
+
ContentReferenceSource,
|
|
4
5
|
GroupConfig,
|
|
5
6
|
TopicConfig,
|
|
6
7
|
} from '@erudit-js/cog/schema';
|
|
@@ -20,3 +21,7 @@ export function defineTopic(topic: Partial<TopicConfig>) {
|
|
|
20
21
|
export function defineContentReferences(references: ContentReferences) {
|
|
21
22
|
return references;
|
|
22
23
|
}
|
|
24
|
+
|
|
25
|
+
export function defineContentSource(source: ContentReferenceSource) {
|
|
26
|
+
return source;
|
|
27
|
+
}
|
package/module/imports.ts
CHANGED
package/nuxt.config.ts
CHANGED
|
@@ -53,11 +53,6 @@ export default defineNuxtConfig({
|
|
|
53
53
|
projectPath(`contributors/${pattern}`),
|
|
54
54
|
),
|
|
55
55
|
],
|
|
56
|
-
esbuild: {
|
|
57
|
-
options: {
|
|
58
|
-
charset: 'utf8',
|
|
59
|
-
},
|
|
60
|
-
},
|
|
61
56
|
nitro: {
|
|
62
57
|
preset: 'github-pages',
|
|
63
58
|
plugins: [eruditPath('server/plugin')],
|
|
@@ -94,6 +89,7 @@ export default defineNuxtConfig({
|
|
|
94
89
|
],
|
|
95
90
|
esbuild: {
|
|
96
91
|
options: {
|
|
92
|
+
charset: 'utf8',
|
|
97
93
|
tsconfigRaw: {
|
|
98
94
|
compilerOptions: {
|
|
99
95
|
experimentalDecorators: true, // Make TypeORM work with Nuxt,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "erudit",
|
|
3
|
-
"version": "3.0.0-dev.
|
|
3
|
+
"version": "3.0.0-dev.12",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "🤓 CMS for perfect educational sites.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -15,14 +15,14 @@
|
|
|
15
15
|
"erudit": "bin/erudit.mjs"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
|
-
"@erudit-js/cog": "3.0.0-dev.
|
|
19
|
-
"@erudit-js/cli": "3.0.0-dev.
|
|
20
|
-
"@erudit-js/bitran-elements": "3.0.0-dev.
|
|
18
|
+
"@erudit-js/cog": "3.0.0-dev.12",
|
|
19
|
+
"@erudit-js/cli": "3.0.0-dev.12",
|
|
20
|
+
"@erudit-js/bitran-elements": "3.0.0-dev.12"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@bitran-js/core": "1.0.0-dev.
|
|
24
|
-
"@bitran-js/renderer-vue": "1.0.0-dev.
|
|
25
|
-
"@bitran-js/transpiler": "1.0.0-dev.
|
|
23
|
+
"@bitran-js/core": "1.0.0-dev.13",
|
|
24
|
+
"@bitran-js/renderer-vue": "1.0.0-dev.13",
|
|
25
|
+
"@bitran-js/transpiler": "1.0.0-dev.13",
|
|
26
26
|
"@floating-ui/vue": "^1.1.6",
|
|
27
27
|
"chalk": "^5.4.1",
|
|
28
28
|
"chokidar": "^4.0.3",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"glob": "^11.0.1",
|
|
31
31
|
"image-size": "^2.0.2",
|
|
32
32
|
"jiti": "^2.4.2",
|
|
33
|
-
"nuxt": "3.
|
|
33
|
+
"nuxt": "3.17.0",
|
|
34
34
|
"nuxt-my-icons": "1.0.2",
|
|
35
35
|
"sass": "^1.86.2",
|
|
36
36
|
"sqlite3": "^5.1.7",
|
|
@@ -1,22 +1,26 @@
|
|
|
1
1
|
import { isTopicPart, locationFromPath } from '@erudit-js/cog/schema';
|
|
2
2
|
|
|
3
3
|
import type { AsideMinorContent, AsideMinorTopic } from '@shared/aside/minor';
|
|
4
|
-
import { getBitranToc } from '@
|
|
4
|
+
import { getBitranToc } from '@server/bitran/toc';
|
|
5
5
|
import {
|
|
6
6
|
getContentContributors,
|
|
7
|
-
getFullContentId,
|
|
8
7
|
getPreviousNext,
|
|
9
|
-
} from '@
|
|
10
|
-
import { getTopicPartsLinks } from '@
|
|
8
|
+
} from '@server/repository/content';
|
|
9
|
+
import { getTopicPartsLinks } from '@server/repository/topic';
|
|
10
|
+
import {
|
|
11
|
+
getFullContentId,
|
|
12
|
+
getShortContentId,
|
|
13
|
+
} from '@server/repository/contentId';
|
|
11
14
|
|
|
12
15
|
export default defineEventHandler(async (event) => {
|
|
13
16
|
const query = getQuery<{ path: string }>(event);
|
|
14
17
|
|
|
15
|
-
if (!query.path)
|
|
18
|
+
if (!query.path) {
|
|
16
19
|
throw createError({
|
|
17
20
|
statusCode: 400,
|
|
18
21
|
statusText: 'Missing "path" query parameter!',
|
|
19
22
|
});
|
|
23
|
+
}
|
|
20
24
|
|
|
21
25
|
const path = query.path.substring(1);
|
|
22
26
|
const pathStart = path.split('/')[0];
|
|
@@ -32,14 +36,18 @@ export default defineEventHandler(async (event) => {
|
|
|
32
36
|
async function createTopicData(path: string): Promise<AsideMinorTopic> {
|
|
33
37
|
const location = locationFromPath(path);
|
|
34
38
|
|
|
35
|
-
if (!location)
|
|
39
|
+
if (!location) {
|
|
36
40
|
throw createError({
|
|
37
41
|
statusCode: 400,
|
|
38
42
|
statusText: `Provided path "${path}" is not a valid topic location!`,
|
|
39
43
|
});
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (location.path) {
|
|
47
|
+
location.path = await getFullContentId(location.path);
|
|
48
|
+
}
|
|
40
49
|
|
|
41
50
|
const contentId = location.path;
|
|
42
|
-
const fullContentId = (await getFullContentId(contentId))!;
|
|
43
51
|
|
|
44
52
|
const toc = await getBitranToc(location);
|
|
45
53
|
const previousNext = await getPreviousNext(contentId);
|
|
@@ -48,7 +56,7 @@ async function createTopicData(path: string): Promise<AsideMinorTopic> {
|
|
|
48
56
|
|
|
49
57
|
return {
|
|
50
58
|
type: 'topic',
|
|
51
|
-
|
|
59
|
+
topicId: contentId,
|
|
52
60
|
location,
|
|
53
61
|
toc,
|
|
54
62
|
nav: {
|
|
@@ -63,14 +71,14 @@ async function createContentData(
|
|
|
63
71
|
type: string,
|
|
64
72
|
path: string,
|
|
65
73
|
): Promise<AsideMinorContent> {
|
|
66
|
-
const
|
|
67
|
-
const
|
|
74
|
+
const rawContentId = path.split('/').slice(1).join('/');
|
|
75
|
+
const contentId = (await getFullContentId(rawContentId))!;
|
|
68
76
|
const previousNext = await getPreviousNext(contentId);
|
|
69
77
|
const contributors = await getContentContributors(contentId);
|
|
70
78
|
|
|
71
79
|
return {
|
|
72
80
|
type: type as any,
|
|
73
|
-
|
|
81
|
+
contentId,
|
|
74
82
|
nav: previousNext,
|
|
75
83
|
contributors,
|
|
76
84
|
};
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { parseClientBitranLocation } from '@server/bitran/location';
|
|
2
2
|
import { getBitranContent } from '@server/bitran/content';
|
|
3
3
|
|
|
4
4
|
export default defineEventHandler(async (event) => {
|
|
5
5
|
setResponseHeader(event, 'Content-Type', 'application/json; charset=utf-8');
|
|
6
|
-
const location =
|
|
6
|
+
const location = await parseClientBitranLocation(
|
|
7
|
+
event.context.params!.location,
|
|
8
|
+
);
|
|
7
9
|
return await getBitranContent(location);
|
|
8
10
|
});
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { parseClientBitranLocation } from '@server/bitran/location';
|
|
2
2
|
import { getBitranToc } from '@server/bitran/toc';
|
|
3
3
|
|
|
4
4
|
export default defineEventHandler(async (event) => {
|
|
5
|
-
const location =
|
|
5
|
+
const location = await parseClientBitranLocation(
|
|
6
|
+
event.context.params!.location,
|
|
7
|
+
);
|
|
6
8
|
return await getBitranToc(location);
|
|
7
9
|
});
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getTopicPartsLinks } from '@server/repository/topic';
|
|
2
2
|
import { getContentBookFor } from '@server/repository/book';
|
|
3
3
|
import { getContentGenericData } from '@server/repository/content';
|
|
4
|
+
import { getFullContentId } from '@server/repository/contentId';
|
|
4
5
|
|
|
5
6
|
import type { ContentGenericData } from '@shared/content/data/base';
|
|
6
7
|
import type { ContentTopicData } from '@shared/content/data/type/topic';
|
|
@@ -8,13 +9,15 @@ import type { ContentGroupData } from '@shared/content/data/type/group';
|
|
|
8
9
|
import type { ContentBookData } from '@shared/content/data/type/book';
|
|
9
10
|
|
|
10
11
|
export default defineEventHandler(async (event) => {
|
|
11
|
-
|
|
12
|
+
let contentId = getQuery(event)?.contentId as string;
|
|
13
|
+
contentId = await getFullContentId(contentId);
|
|
12
14
|
|
|
13
|
-
if (!contentId)
|
|
15
|
+
if (!contentId) {
|
|
14
16
|
throw createError({
|
|
15
17
|
statusCode: 400,
|
|
16
18
|
statusText: 'Missing content ID!',
|
|
17
19
|
});
|
|
20
|
+
}
|
|
18
21
|
|
|
19
22
|
const generic = await getContentGenericData(contentId);
|
|
20
23
|
|