1
1
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' ;
4
4
import { EXAMPLE_COMPONENTS , ExampleData } from '@angular/components-examples' ;
5
5
import { Observable } from 'rxjs' ;
6
6
import { shareReplay , take } from 'rxjs/operators' ;
7
7
8
- import { materialVersion } from '../version/version' ;
9
8
10
9
const STACKBLITZ_URL = 'https://run.stackblitz.com/api/angular/v1' ;
11
10
@@ -56,18 +55,19 @@ const TEST_TEMPLATE_FILES = [
56
55
'src/test/jasmine-setup.ts'
57
56
] ;
58
57
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 ) ;
61
61
62
62
const dependencies = {
63
- '@angular/cdk' : materialVersion ,
63
+ '@angular/cdk' : componentsVersion ,
64
64
'@angular/animations' : angularVersion ,
65
65
'@angular/common' : angularVersion ,
66
66
'@angular/compiler' : angularVersion ,
67
67
'@angular/core' : angularVersion ,
68
68
'@angular/forms' : angularVersion ,
69
- '@angular/material' : materialVersion ,
70
- '@angular/material-moment-adapter' : materialVersion ,
69
+ '@angular/material' : componentsVersion ,
70
+ '@angular/material-moment-adapter' : componentsVersion ,
71
71
'@angular/platform-browser' : angularVersion ,
72
72
'@angular/platform-browser-dynamic' : angularVersion ,
73
73
'@angular/router' : angularVersion ,
@@ -78,14 +78,14 @@ const dependencies = {
78
78
} ;
79
79
80
80
const testDependencies = {
81
- '@angular/cdk' : materialVersion ,
81
+ '@angular/cdk' : componentsVersion ,
82
82
'@angular/animations' : angularVersion ,
83
83
'@angular/common' : angularVersion ,
84
84
'@angular/compiler' : angularVersion ,
85
85
'@angular/core' : angularVersion ,
86
86
'@angular/forms' : angularVersion ,
87
- '@angular/material' : materialVersion ,
88
- '@angular/material-moment-adapter' : materialVersion ,
87
+ '@angular/material' : componentsVersion ,
88
+ '@angular/material-moment-adapter' : componentsVersion ,
89
89
'@angular/platform-browser' : angularVersion ,
90
90
'@angular/platform-browser-dynamic' : angularVersion ,
91
91
'@angular/router' : angularVersion ,
@@ -97,6 +97,18 @@ const testDependencies = {
97
97
'zone.js' : '^0.11.4' ,
98
98
} ;
99
99
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
+
100
112
/**
101
113
* StackBlitz writer, write example files to StackBlitz.
102
114
*
@@ -252,7 +264,7 @@ export class StackBlitzWriter {
252
264
fileContent = fileContent
253
265
. replace ( / m a t e r i a l - d o c s - e x a m p l e / g, data . selectorName )
254
266
. replace ( / { { title} } / g, data . description )
255
- . replace ( / { { version} } / g, VERSION . full ) ;
267
+ . replace ( / { { version} } / g, MAT_VERSION . full ) ;
256
268
} else if ( fileName === 'src/main.ts' ) {
257
269
const joinedComponentNames = data . componentNames . join ( ', ' ) ;
258
270
// Replace the component name in `main.ts`.
0 commit comments