Skip to content

Commit fa16c09

Browse files
committed
feat(documents): pull documents during build
1 parent f850920 commit fa16c09

File tree

7 files changed

+128
-69
lines changed

7 files changed

+128
-69
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,9 @@ ui/styles/global-variables.pcss
107107
# We don't want to commit built icons files
108108
ui/icons/dist/
109109

110+
# We don't want to commit built document files either
111+
clients/web/public/static/docs/legal
112+
110113
# TS Terraform build
111114
.terraform/
112115
node_modules/

clients/web/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"he": "1.2.0",
3333
"intersection-observer": "0.12.2",
3434
"jsonwebtoken": "9.0.2",
35-
"legal-docs": "github:mozilla/legal-docs#74eccbd6e11b762ca706f31734ab6c5192273de4",
3635
"marked": "14.1.2",
3736
"match-sorter": "6.3.4",
3837
"mousetrap": "1.6.5",

clients/web/src/pages/privacy/index.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { LOCALE_COMMON } from 'common/constants'
44
import { readFileSync } from 'node:fs'
55
import { marked } from 'marked'
66
import { overrideDateTime, customHeadingId } from 'common/utilities/marked-formatters'
7+
import { join } from 'node:path'
78

89
// Types
910
import type { LocalizedProps } from '@common/types'
@@ -61,9 +62,9 @@ async function getMDContent(locale: string, isEU: boolean): Promise<string> {
6162
let mdContent: string
6263
const docToUse = isEU ? 'pocket_privacy_policy_eu.md' : 'pocket_privacy_policy.md'
6364
try {
64-
mdContent = readFileSync(`node_modules/legal-docs/${locale}/${docToUse}`, 'utf8')
65+
mdContent = readFileSync(join(process.cwd(), `public/static/docs/legal/${locale}/${docToUse}`), 'utf8') //prettier-ignore
6566
} catch {
66-
mdContent = readFileSync(`node_modules/legal-docs/en/${docToUse}`, 'utf8')
67+
mdContent = readFileSync(join(process.cwd(), `public/static/docs/legal/en/${docToUse}`), 'utf8')
6768
}
6869

6970
const mdContentModified = mdContent.replace(/\{:\s?\#(.+\S)\s?\}/gi, '{#$1}')

clients/web/src/pages/tos/index.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { LOCALE_COMMON } from 'common/constants'
44
import { readFileSync } from 'node:fs'
55
import { marked } from 'marked'
66
import { overrideDateTime, customHeadingId } from 'common/utilities/marked-formatters'
7+
import { join } from 'node:path'
78

89
// Types
910
import type { LocalizedProps } from '@common/types'
@@ -31,9 +32,9 @@ async function getMDContent(locale: string): Promise<string> {
3132
let mdContent: string
3233

3334
try {
34-
mdContent = readFileSync(`node_modules/legal-docs/${locale}/pocket_tos.md`, 'utf8')
35+
mdContent = readFileSync(join(process.cwd(), `public/static/docs/legal/${locale}/pocket_tos.md`), 'utf8') //prettier-ignore
3536
} catch {
36-
mdContent = readFileSync(`node_modules/legal-docs/en/pocket_tos.md`, 'utf8')
37+
mdContent = readFileSync(join(process.cwd(), `public/static/docs/legal/en/pocket_tos.md`), 'utf8') //prettier-ignore
3738
}
3839

3940
const mdContentModified = mdContent.replace(/\{:\s?\#(.+\S)\s?\}/gi, '{#$1}')

config/document-config/index.js

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import { globby } from 'globby'
2+
import { ensureDir, copy } from 'fs-extra'
3+
import { join, basename, dirname } from 'node:path'
4+
5+
// Source and destination directories
6+
const sourceDir = 'node_modules/legal-docs/'
7+
const destinationDir = join(process.cwd(), '../../clients/web/public/static/docs/legal/')
8+
9+
async function copyLegalDocs() {
10+
const paths = await globby([`${sourceDir}/**/pocket_*`])
11+
12+
try {
13+
for (const filePath of paths) {
14+
const destinationFolder = join(destinationDir, basename(dirname(filePath)))
15+
const fileDestination = basename(filePath)
16+
const copyPath = `${destinationFolder}/${fileDestination}`
17+
console.log(copyPath)
18+
19+
await ensureDir(destinationFolder)
20+
await copy(filePath, copyPath)
21+
}
22+
console.log('Legal Docs Copied')
23+
} catch (err) {
24+
console.log('There was an issue copying legal documents over', err)
25+
}
26+
}
27+
28+
copyLegalDocs()

config/document-config/package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "@config/document-config",
3+
"version": "0.0.0",
4+
"description": "",
5+
"main": "index.js",
6+
"type": "module",
7+
"scripts": {
8+
"build": "node index.js"
9+
},
10+
"keywords": [],
11+
"author": "",
12+
"license": "ISC",
13+
"dependencies": {
14+
"legal-docs": "github:mozilla/legal-docs#74eccbd6e11b762ca706f31734ab6c5192273de4",
15+
"fs-extra": "11.2.0",
16+
"globby": "14.0.2"
17+
}
18+
}

0 commit comments

Comments
 (0)