Skip to content

Commit 12aecb5

Browse files
authored
Merge pull request #1704 from navikt/server-improvements
Diverse forbedringer for logging, server-bygg ++
2 parents aa7aac8 + 2a197c1 commit 12aecb5

File tree

207 files changed

+3610
-1392
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

207 files changed

+3610
-1392
lines changed

.env.development

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ NODE_ENV=development
22
ENV=localhost
33
SERVICE_SECRET=dummyToken
44
DOCKER_HOST_ADDRESS=host.docker.internal
5-
PAGE_CACHE_DIR=./.next/page-cache
6-
IMAGE_CACHE_DIR=./.next/image-cache
5+
PAGE_CACHE_DIR=../.next/page-cache
6+
IMAGE_CACHE_DIR=../.next/image-cache
77
ADMIN_ORIGIN=http://localhost:8080
88
APP_ORIGIN=http://localhost:3000
99
DECORATOR_URL=http://localhost:8100/dekoratoren
@@ -12,8 +12,8 @@ INNLOGGINGSSTATUS_URL=http://localhost:8095/nav-dekoratoren-api/auth
1212
REVALIDATOR_PROXY_ORIGIN=http://localhost:3002
1313
XP_ORIGIN=http://localhost:8080
1414
IS_FAILOVER_INSTANCE='false'
15-
BUILD_ID=development
1615
RELEASE_TAG=development
1716
ASSET_PREFIX=http://localhost:3000
1817
TELEMETRY_URL=http://localhost:12347/collect
1918
NAVNO_API_URL=https://www.nav.no/person/navno-api
19+
NEXT_TELEMETRY_DISABLED=1

.env.prod-local

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ NODE_ENV=production
22
ENV=localhost
33
SERVICE_SECRET=dummyToken
44
DOCKER_HOST_ADDRESS=host.docker.internal
5-
PAGE_CACHE_DIR=./.next/page-cache
6-
IMAGE_CACHE_DIR=./.next/image-cache
5+
PAGE_CACHE_DIR=../.next/page-cache
6+
IMAGE_CACHE_DIR=../.next/image-cache
77
ADMIN_ORIGIN=http://localhost:8080
88
APP_ORIGIN=http://localhost:3000
99
DECORATOR_URL=http://localhost:8100/dekoratoren
@@ -12,8 +12,8 @@ INNLOGGINGSSTATUS_URL=http://localhost:8095/nav-dekoratoren-api/auth
1212
REVALIDATOR_PROXY_ORIGIN=http://localhost:3002
1313
XP_ORIGIN=http://localhost:8080
1414
IS_FAILOVER_INSTANCE='false'
15-
BUILD_ID=prodLocal
1615
RELEASE_TAG=prodLocal
1716
ASSET_PREFIX=http://localhost:3000
1817
TELEMETRY_URL=http://localhost:12347/collect
1918
NAVNO_API_URL=https://www.nav.no/person/navno-api
19+
NEXT_TELEMETRY_DISABLED=1

.eslintrc.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"plugins": ["css-modules"],
33
"extends": ["next/core-web-vitals", "plugin:css-modules/recommended"],
4+
"ignorePatterns": ["next.config.js"],
45
"rules": {
56
"@next/next/no-img-element": 0,
67
"css-modules/no-unused-class": [1, { "camelCase": true }],
7-
"css-modules/no-undef-class": [2, { "camelCase": true }]
8+
"css-modules/no-undef-class": [2, { "camelCase": true }],
9+
"no-console": "error"
810
}
911
}

.github/workflows/build-and-test.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,5 @@ jobs:
2121
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
2222
- name: Build application
2323
run: npm run build-local
24-
- name: Run server tests
25-
run: npm run test-server
26-
- name: Run client tests
27-
run: npm run test-client
24+
- name: Run tests
25+
run: npm run test

.github/workflows/build-image.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696
ASSET_PREFIX=https://cdn.nav.no/personbruker/nav-enonicxp-frontend
9797
PAGE_CACHE_DIR=/tmp/pages
9898
IMAGE_CACHE_DIR=/tmp/images
99+
NEXT_TELEMETRY_DISABLED=1
99100
EOF
100101
- name: Nextjs cache
101102
uses: actions/cache@v3
@@ -106,10 +107,8 @@ jobs:
106107
run: npm ci
107108
env:
108109
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
109-
- name: Run server tests
110-
run: npm run test-server
111-
- name: Run client tests
112-
run: npm run test-client
110+
- name: Run tests
111+
run: npm run test
113112
- name: Build application
114113
run: npm run build
115114
env:

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ yarn-error.log*
3232
.env
3333
.env.local
3434
.env.development.local
35+
.env.prod-local.local
3536

3637
/.idea/
3738
/nav-enonicxp-frontend.iml
@@ -45,7 +46,7 @@ yarn-error.log*
4546
/image-manifest
4647
/benchmark.mjs
4748

48-
/.serverDist/
49+
/server/.dist/
4950
/server/tsconfig.tsbuildinfo
5051
/server/__next-test-dummy/.next/
5152

.vscode/launch.json

-15
This file was deleted.

Dockerfile

+5-6
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ RUN adduser --system --uid 1001 nextjs
55

66
WORKDIR /app
77

8-
COPY package*.json /app/
9-
COPY node_modules /app/node_modules/
10-
8+
COPY package*.json next.config.js .env /app/
119
COPY .next /app/.next/
1210
COPY public /app/public/
11+
COPY node_modules /app/node_modules/
1312

14-
COPY next.config.js .env /app/
15-
COPY .serverDist /app/.serverDist/
13+
COPY /server/package*.json /app/server/
14+
COPY /server/.dist /app/server/.dist/
1615

1716
USER nextjs
1817

1918
EXPOSE 3000
20-
CMD ["npm", "run", "start"]
19+
CMD ["npm", "start"]

failover/.env-dev1

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NODE_ENV=production
33
ADMIN_ORIGIN=https://portal-admin-dev.oera.no
44
APP_ORIGIN=https://www.ekstern.dev.nav.no
55
DECORATOR_URL=https://dekoratoren.ekstern.dev.nav.no
6-
XP_ORIGIN=https://portal-admin-dev.oera.no
6+
XP_ORIGIN=https://www.dev.nav.no
77
TELEMETRY_URL: https://telemetry.ekstern.dev.nav.no/collect
88
REVALIDATOR_PROXY_ORIGIN=http://nav-enonicxp-frontend-revalidator-proxy-dev1
99
FAILOVER_ORIGIN=https://www-failover.intern.dev.nav.no

failover/.env-dev2

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ NODE_ENV=production
33
ADMIN_ORIGIN=https://portal-admin-q6.oera.no
44
APP_ORIGIN=https://www-2.ekstern.dev.nav.no
55
DECORATOR_URL=https://dekoratoren.ekstern.dev.nav.no
6-
XP_ORIGIN=https://portal-admin-q6.oera.no
6+
XP_ORIGIN=https://www-q6.nav.no
77
TELEMETRY_URL: https://telemetry.ekstern.dev.nav.no/collect
88
REVALIDATOR_PROXY_ORIGIN=http://nav-enonicxp-frontend-revalidator-proxy-dev2
99
FAILOVER_ORIGIN=https://www-2-failover.intern.dev.nav.no

failover/Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ ARG SERVICE_SECRET
1313
ARG ENV_FILE
1414

1515
COPY package*.json /failover/.npmrc /app/
16+
COPY server /app/server/
17+
1618
RUN npm ci --ignore-scripts
1719
RUN rm -f .npmrc
1820

1921
COPY public /app/public/
20-
COPY server /app/server/
2122
COPY src /app/src/
23+
COPY srcCommon /app/srcCommon/
2224
COPY next.config.js tsconfig.json .eslintrc.json /app/
2325
COPY "/failover/$ENV_FILE" /app/.env
2426

@@ -35,4 +37,4 @@ COPY --from=0 /tmp/images/image-manifest /tmp/images/image-manifest
3537
USER nextjs
3638

3739
EXPOSE 3000
38-
CMD ["npm", "run", "start"]
40+
CMD ["npm", "start"]

next.config.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -117,19 +117,19 @@ const corsHeaders = [
117117
];
118118

119119
console.log(
120-
`Env: ${process.env.ENV} - Node env: ${process.env.NODE_ENV} - Failover: ${isFailover}`
120+
`Env: ${process.env.ENV} - Node env: ${process.env.NODE_ENV} - Is failover instance? ${isFailover}`
121121
);
122122

123123
const config = {
124-
experimental: {
125-
// Set this to 0 to disable the next.js built-in memory cache for the ISR page cache
126-
// We implement our own in the customCacheHandler to allow us to invalidate the memory cache on demand
127-
isrMemoryCacheSize: 0,
128-
incrementalCacheHandlerPath: path.resolve(
124+
...(!isFailover && {
125+
cacheHandler: path.resolve(
129126
__dirname,
130-
'.serverDist/custom-cache-handler'
127+
'server',
128+
'.dist',
129+
'custom-cache-handler.cjs'
131130
),
132-
},
131+
cacheMaxMemorySize: 0,
132+
}),
133133
productionBrowserSourceMaps: true,
134134
distDir: isFailover && isLocal ? '.next-static' : '.next',
135135
assetPrefix: process.env.ASSET_PREFIX,

src/nodeenv.d.ts nodeenv.d.ts

-8
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,6 @@ declare global {
2222
}
2323
}
2424

25-
interface Window {
26-
GoBrain?: {
27-
create: (element: HTMLElement, config: Record<string, any>) => any;
28-
destroy: (widgetId: string, deleteElement?: boolean) => any;
29-
widgets: (widgetId: string) => any;
30-
};
31-
}
32-
3325
var cacheKey: string | undefined;
3426
}
3527

0 commit comments

Comments
 (0)