Skip to content

Commit 1ee6973

Browse files
authoredSep 26, 2021
fix: use more lenient version when generating stackblitz (#1075)
Reworks the logic that stamps out the required version in Stackblitz to be more lenient so that we don't get weird errors between releases. Also removes the shared `materialVersion` constant since it's redundant.
1 parent b0984ec commit 1ee6973

File tree

4 files changed

+34
-27
lines changed

4 files changed

+34
-27
lines changed
 

‎material.angular.io/src/app/shared/footer/footer.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import {Component, NgModule} from '@angular/core';
2-
import {materialVersion} from '../version/version';
2+
import {VERSION} from '@angular/material/core';
33

44
@Component({
55
selector: 'app-footer',
@@ -8,8 +8,7 @@ import {materialVersion} from '../version/version';
88
})
99
export class Footer {
1010
isNextVersion = location.hostname.startsWith('next.material.angular.io');
11-
12-
version = materialVersion;
11+
version = VERSION.full;
1312
}
1413

1514

‎material.angular.io/src/app/shared/stack-blitz/stack-blitz-writer.ts

+24-12
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
import {HttpClient} from '@angular/common/http';
2-
import {Injectable, NgZone} from '@angular/core';
3-
import {VERSION} from '@angular/material/core';
2+
import {Injectable, NgZone, Version, VERSION as NG_VERSION} from '@angular/core';
3+
import {VERSION as MAT_VERSION} from '@angular/material/core';
44
import {EXAMPLE_COMPONENTS, ExampleData} from '@angular/components-examples';
55
import {Observable} from 'rxjs';
66
import {shareReplay, take} from 'rxjs/operators';
77

8-
import {materialVersion} from '../version/version';
98

109
const STACKBLITZ_URL = 'https://run.stackblitz.com/api/angular/v1';
1110

@@ -56,18 +55,19 @@ const TEST_TEMPLATE_FILES = [
5655
'src/test/jasmine-setup.ts'
5756
];
5857

59-
const TAGS: string[] = ['angular', 'material', 'example'];
60-
const angularVersion = '^13.0.0-next.0';
58+
const TAGS = ['angular', 'material', 'example'];
59+
const angularVersion = getVersionString(NG_VERSION);
60+
const componentsVersion = getVersionString(MAT_VERSION);
6161

6262
const dependencies = {
63-
'@angular/cdk': materialVersion,
63+
'@angular/cdk': componentsVersion,
6464
'@angular/animations': angularVersion,
6565
'@angular/common': angularVersion,
6666
'@angular/compiler': angularVersion,
6767
'@angular/core': angularVersion,
6868
'@angular/forms': angularVersion,
69-
'@angular/material': materialVersion,
70-
'@angular/material-moment-adapter': materialVersion,
69+
'@angular/material': componentsVersion,
70+
'@angular/material-moment-adapter': componentsVersion,
7171
'@angular/platform-browser': angularVersion,
7272
'@angular/platform-browser-dynamic': angularVersion,
7373
'@angular/router': angularVersion,
@@ -78,14 +78,14 @@ const dependencies = {
7878
};
7979

8080
const testDependencies = {
81-
'@angular/cdk': materialVersion,
81+
'@angular/cdk': componentsVersion,
8282
'@angular/animations': angularVersion,
8383
'@angular/common': angularVersion,
8484
'@angular/compiler': angularVersion,
8585
'@angular/core': angularVersion,
8686
'@angular/forms': angularVersion,
87-
'@angular/material': materialVersion,
88-
'@angular/material-moment-adapter': materialVersion,
87+
'@angular/material': componentsVersion,
88+
'@angular/material-moment-adapter': componentsVersion,
8989
'@angular/platform-browser': angularVersion,
9090
'@angular/platform-browser-dynamic': angularVersion,
9191
'@angular/router': angularVersion,
@@ -97,6 +97,18 @@ const testDependencies = {
9797
'zone.js': '^0.11.4',
9898
};
9999

100+
function getVersionString(version: Version): string {
101+
let suffix = '';
102+
103+
if (version.full.includes('-next')) {
104+
suffix = '-next.0';
105+
} else if (version.full.includes('-rc')) {
106+
suffix = '-rc.0';
107+
}
108+
109+
return `^${version.major}.${version.minor}.0${suffix}`;
110+
}
111+
100112
/**
101113
* StackBlitz writer, write example files to StackBlitz.
102114
*
@@ -252,7 +264,7 @@ export class StackBlitzWriter {
252264
fileContent = fileContent
253265
.replace(/material-docs-example/g, data.selectorName)
254266
.replace(/{{title}}/g, data.description)
255-
.replace(/{{version}}/g, VERSION.full);
267+
.replace(/{{version}}/g, MAT_VERSION.full);
256268
} else if (fileName === 'src/main.ts') {
257269
const joinedComponentNames = data.componentNames.join(', ');
258270
// Replace the component name in `main.ts`.

‎material.angular.io/src/app/shared/version-picker/version-picker.ts

+8-2
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,24 @@ import {CommonModule} from '@angular/common';
44
import {MatButtonModule} from '@angular/material/button';
55
import {MatIconModule} from '@angular/material/icon';
66
import {MatMenuModule} from '@angular/material/menu';
7-
import {materialVersion, VersionInfo} from '../version/version';
7+
import {VERSION} from '@angular/material/core';
88
import {MatTooltipModule} from '@angular/material/tooltip';
99

1010
const versionUrl = 'assets/versions.json';
1111

12+
/** Version information with title and redirect url */
13+
interface VersionInfo {
14+
url: string;
15+
title: string;
16+
}
17+
1218
@Component({
1319
selector: 'version-picker',
1420
templateUrl: './version-picker.html'
1521
})
1622
export class VersionPicker {
1723
/** The currently running version of Material. */
18-
materialVersion = materialVersion;
24+
materialVersion = VERSION.full;
1925
/** The possible versions of the doc site. */
2026
docVersions = this.http.get<VersionInfo[]>(versionUrl);
2127

‎material.angular.io/src/app/shared/version/version.ts

-10
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.