Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade workspace to Angular 17 #2087

Merged
merged 10 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,22 +137,6 @@ jobs:
name: Run integration tests for the SSR build application
command: yarn test:ci:integration:ssr

integration_ng15_tests:
<<: *job_defaults
steps:
- *attach_workspace
# https://github.com/CircleCI-Public/browser-tools-orb/issues/75
- browser-tools/install-browser-tools:
chrome-version: '116.0.5845.96'
replace-existing-chrome: true
- run:
name: Run integration tests for ng15 application
command: yarn integration:ng15
- persist_to_workspace:
root: ~/workspace
paths:
- app/integrations/hello-world-ng15/dist-integration

integration_ng16_tests:
<<: *job_defaults
steps:
Expand Down
13 changes: 10 additions & 3 deletions .github/actions/download-integration-test-artifacts/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - ./.github/actions/download-integration-test-artifacts

name: download-integration-test-artifact
description: Downloads all integration test artifacts with names such as 'hello-world-ng15'.
description: Downloads all integration test artifacts with names such as 'hello-world-ng16'.

inputs:
path:
Expand All @@ -18,8 +18,15 @@ inputs:
runs:
using: 'composite'
steps:
- name: Download hello-world-ng15 artifacts
- name: Download hello-world-ng16 artifacts
uses: actions/download-artifact@v3
with:
name: hello-world-ng15
name: hello-world-ng16
path: ${{ inputs.path }}
arturovt marked this conversation as resolved.
Show resolved Hide resolved

- name: Download hello-world-ng17 artifacts
uses: actions/download-artifact@v3
with:
name: hello-world-ng17
path: ${{ inputs.path }}

1 change: 0 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ runs:
~/.cache
./node_modules
./@ngxs
./integrations/hello-world-ng15/dist-integration
./integrations/hello-world-ng16/dist-integration
./integrations/hello-world-ng17/dist-integration
key: ${{ runner.os }}-node-${{ inputs.node-version }}-yarn-${{ hashFiles('**/yarn.lock') }}-branch-${{ inputs.github-ref-name }}-sha-${{ inputs.github-sha }}
Expand Down
6 changes: 3 additions & 3 deletions .github/actions/upload-integration-test-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
# - ./.github/actions/upload-integration-test-artifact

name: upload-integration-test-artifact
description: Upload an integration test artifact with a name such as 'hello-world-ng15'.
description: Upload an integration test artifact with a name such as 'hello-world-ng16'.

inputs:
script:
description: A script with a name such as 'integration:ng15' that generates an integration test artifact.
description: A script with a name such as 'integration:ng16' that generates an integration test artifact.
required: true

runs:
Expand All @@ -21,7 +21,7 @@ runs:
id: artifact-name
shell: bash
run: |
echo "Replace colons with dashes, substring 'integration' with a substring 'hello-world'. Example result: hello-world-ng15"
echo "Replace colons with dashes, substring 'integration' with a substring 'hello-world'. Example result: hello-world-ng16"
echo "value=$(echo ${SCRIPT} | sed -r "s/:/-/g" | sed -r "s/integration/hello-world/g")" >> $GITHUB_OUTPUT
env:
SCRIPT: ${{ inputs.script }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ jobs:
strategy:
matrix:
script:
- 'integration:ng15'
- 'integration:ng16'
- 'integration:ng17'
- 'test:types'
Expand All @@ -106,7 +105,7 @@ jobs:
run: yarn ${{ matrix.script }}

- name: Upload an integration test artifact
if: ${{ matrix.script == 'integration:ng15' }}
if: ${{ startsWith( matrix.script, 'integration:' ) }}
uses: ./.github/actions/upload-integration-test-artifact
with:
script: ${{ matrix.script }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
strategy:
matrix:
script:
- 'integration:ng15'
- 'integration:ng16'
arturovt marked this conversation as resolved.
Show resolved Hide resolved
- 'integration:ng17'
- 'test:types'

steps:
Expand All @@ -96,7 +97,7 @@ jobs:
run: yarn ${{ matrix.script }}

- name: Upload an integration test artifact
if: ${{ matrix.script == 'integration:ng15' }}
if: ${{ startsWith( matrix.script, 'integration:' ) }}
uses: ./.github/actions/upload-integration-test-artifact
with:
script: ${{ matrix.script }}
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,8 @@ jobs:
strategy:
matrix:
script:
- 'integration:ng15'
- 'integration:ng16'
arturovt marked this conversation as resolved.
Show resolved Hide resolved
- 'integration:ng17'
- 'test:types'

steps:
Expand All @@ -96,7 +97,7 @@ jobs:
run: yarn ${{ matrix.script }}

- name: Upload an integration test artifact
if: ${{ matrix.script == 'integration:ng15' }}
if: ${{ startsWith( matrix.script, 'integration:' ) }}
uses: ./.github/actions/upload-integration-test-artifact
with:
script: ${{ matrix.script }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,5 @@ yarn-error.log
package-lock.json
dist-integration-server/
.cache
migrations.json
.nx/cache
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ build/**
coverage/**
@ngxs/**
**/dist/**

/.nx/cache
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ $ npm install @ngxs/store@dev
- Fix: Show error when state initialization order is invalid [#2066](https://github.com/ngxs/store/pull/2066), [#2067](https://github.com/ngxs/store/pull/2067)
- Fix: Change `instanceof Promise` to `isPromise` to allow any promisable object [#2093](https://github.com/ngxs/store/pull/2093)
- Fix: Router Plugin - Expose `NGXS_ROUTER_PLUGIN_OPTIONS` privately [#2037](https://github.com/ngxs/store/pull/2037)
- Build: Upgrade to NX 17 [#2087](https://github.com/ngxs/store/pull/2087)

# 3.8.2 2023-11-30

Expand Down
9 changes: 0 additions & 9 deletions integration/app/app-browser.config.ts

This file was deleted.

9 changes: 0 additions & 9 deletions integration/app/app-server.config.ts

This file was deleted.

8 changes: 8 additions & 0 deletions integration/app/app.config.browser.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { mergeApplicationConfig } from '@angular/core';
import { provideAnimations } from '@angular/platform-browser/animations';

import { appConfig } from './app.config';

export const appBrowserConfig = mergeApplicationConfig(appConfig, {
providers: [provideAnimations()]
});
8 changes: 8 additions & 0 deletions integration/app/app.config.server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { mergeApplicationConfig } from '@angular/core';
import { provideServerRendering } from '@angular/platform-server';

import { appConfig } from './app.config';

export const appServerConfig = mergeApplicationConfig(appConfig, {
providers: [provideServerRendering()]
});
18 changes: 10 additions & 8 deletions integration/jest.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { pathsToModuleNameMapper: resolver } = require('ts-jest/utils');
const { pathsToModuleNameMapper: resolver } = require('ts-jest');
const { compilerOptions } = require('../tsconfig.base');
const CI = process.env['CI'] === 'true';

Expand All @@ -12,16 +12,18 @@ module.exports = {
displayName: 'integration',
preset: '../jest.preset.js',
setupFilesAfterEnv: ['<rootDir>/test-setup.ts'],
globals: {
'ts-jest': {
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$'
}
},
globals: {},
moduleNameMapper,
coverageDirectory: '../coverage/integration',
transform: {
'^.+\\.(ts|js|html)$': 'jest-preset-angular'
'^.+\\.(ts|mjs|js|html)$': [
'jest-preset-angular',
{
isolatedModules: true,
tsconfig: '<rootDir>/tsconfig.spec.json',
stringifyContentPathRegex: '\\.(html|svg)$'
}
markwhitfeld marked this conversation as resolved.
Show resolved Hide resolved
]
},
snapshotSerializers: [
'jest-preset-angular/build/serializers/no-ng-attributes',
Expand Down
10 changes: 7 additions & 3 deletions integration/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export { AppComponent } from './app/app.component';
export { appServerConfig } from './app/app-server.config';
export { APP_ID_VALUE } from './app/app.config';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app/app.component';
import { appServerConfig } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, appServerConfig);
export default bootstrap;
2 changes: 1 addition & 1 deletion integration/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { enableProdMode } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app/app.component';
import { appBrowserConfig } from './app/app-browser.config';
import { appBrowserConfig } from './app/app.config.browser';
import { environment } from './environments/environment';

if (environment.production) {
Expand Down
6 changes: 2 additions & 4 deletions integration/project.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "integration",
"$schema": "../node_modules/nx/schemas/project-schema.json",
"root": "integration/",
"sourceRoot": "integration",
"projectType": "application",
"prefix": "app",
Expand Down Expand Up @@ -100,10 +99,9 @@
"dependsOn": ["^build"]
},
"test": {
"executor": "@nrwl/jest:jest",
"executor": "@nx/jest:jest",
"options": {
"jestConfig": "integration/jest.config.js",
"passWithNoTests": true
"jestConfig": "integration/jest.config.js"
},
"dependsOn": ["^build"]
}
Expand Down
69 changes: 22 additions & 47 deletions integration/server.ts
Original file line number Diff line number Diff line change
@@ -1,73 +1,48 @@
import 'zone.js/node';

import { readFile } from 'fs/promises';
import { join } from 'path';
import * as path from 'node:path';
import * as url from 'node:url';
import * as express from 'express';
import { Provider } from '@angular/core';
import { APP_BASE_HREF } from '@angular/common';
import { renderApplication } from '@angular/platform-server';
import { REQUEST, RESPONSE } from '@nguniversal/express-engine/tokens';

import { APP_ID_VALUE, AppComponent, appServerConfig } from './main.server';
import { CommonEngine } from '@angular/ssr';

interface RenderOptions {
req: express.Request;
providers: Provider[];
}
import bootstrap from './main.server';

// The Express app is exported so that it can be used by serverless Functions.
export function app() {
const server = express();
const distFolder = join(process.cwd(), 'dist-integration');
let indexHtmlContent: string | null = null;

// TODO: use `ngExpressEngine({bootstrap})` in v16.
server.engine(
'html',
async (
path: string,
options: object,
callback: (error: Error | null, content: string) => void
) => {
const { req, providers } = options as RenderOptions;

indexHtmlContent ||= await readFile(path, { encoding: 'utf-8' });

const html = await renderApplication(AppComponent, {
providers,
appId: APP_ID_VALUE,
document: indexHtmlContent,
url: `${req.baseUrl}${req.url}`
});

callback(null, html);
}
);
const browserDistFolder = path.join(process.cwd(), 'dist-integration');
const indexHtml = path.join(browserDistFolder, 'index.html');
const commonEngine = new CommonEngine();

server.set('view engine', 'html');
server.set('views', distFolder);
server.set('views', browserDistFolder);

// Example Express Rest API endpoints
// app.get('/api/**', (req, res) => { });
// Serve static files from /browser
server.get(
'*.*',
express.static(distFolder, {
express.static(browserDistFolder, {
maxAge: '1y'
})
);

// All regular routes use the Universal engine
server.get('*', (req, res) => {
res.render('index', {
req,
providers: [
...appServerConfig.providers,
{ provide: APP_BASE_HREF, useValue: req.baseUrl },
{ provide: REQUEST, useValue: req },
{ provide: RESPONSE, useValue: res }
]
});
server.get('*', (req, res, next) => {
const { protocol, originalUrl, baseUrl, headers } = req;

commonEngine
.render({
bootstrap,
documentFilePath: indexHtml,
url: `${protocol}://${headers.host}${originalUrl}`,
publicPath: browserDistFolder,
providers: [{ provide: APP_BASE_HREF, useValue: req.baseUrl }]
})
.then(html => res.send(html))
.catch(next);
});

return server;
Expand Down
Loading
Loading