Skip to content

Commit 9cf54bc

Browse files
authoredJan 12, 2021
fix: generated Stackblitz examples not working when forked to a repo (#901)
We weren't generating a full valid HTML file when creating the `index.html` for Stackblitz which meant that if somebody creates a repository out of it, it won't work. These changes resolve the issue by providing the full HTML file. Providing the full HTML also allows us to represent a real app better and to fix some issues like the one where the app background doesn't cover the whole page. Fixes #21461.
1 parent fa204ad commit 9cf54bc

File tree

3 files changed

+18
-9
lines changed

3 files changed

+18
-9
lines changed
 

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,10 @@ export class StackBlitzWriter {
241241
// Replace the component selector in `index,html`.
242242
// For example, <material-docs-example></material-docs-example> will be replaced as
243243
// <button-demo></button-demo>
244-
fileContent = fileContent.replace(/material-docs-example/g, data.selectorName);
245-
fileContent = fileContent.replace(/{{version}}/g, VERSION.full);
244+
fileContent = fileContent
245+
.replace(/material-docs-example/g, data.selectorName)
246+
.replace(/{{title}}/g, data.description)
247+
.replace(/{{version}}/g, VERSION.full);
246248
} else if (fileName === 'src/main.ts') {
247249
const joinedComponentNames = data.componentNames.join(', ');
248250
// Replace the component name in `main.ts`.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1-
<link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=block" rel="stylesheet">
2-
<div class="mat-app-background basic-container">
3-
<material-docs-example>loading</material-docs-example>
4-
</div>
5-
<span class="version-info">Current build: {{version}}</span>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons&display=block" rel="stylesheet">
7+
<title>{{title}}</title>
8+
</head>
9+
<body class="mat-app-background">
10+
<material-docs-example>Loading</material-docs-example>
11+
<span class="version-info">Current build: {{version}}</span>
12+
</body>
13+
</html>

‎material.angular.io/src/assets/stack-blitz/src/styles.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
body {
44
font-family: Roboto, Arial, sans-serif;
55
margin: 0;
6-
}
7-
.basic-container {
86
padding: 30px;
97
}
8+
109
.version-info {
1110
font-size: 8pt;
1211
float: right;

0 commit comments

Comments
 (0)
Please sign in to comment.