forked from LambdaTest/smartui-storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorybook.js
164 lines (148 loc) · 7.32 KB
/
storybook.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
const { default: axios } = require('axios')
const fs = require('fs')
const { sendDoM } = require('./utils/dom')
const { validateStorybookUrl, validateStorybookDir } = require('./utils/validate')
const { defaultSmartUIConfig } = require('./utils/config')
const { skipStory } = require('./utils/story')
const { getLastCommit } = require('./utils/git')
const static = require('./utils/static')
var { constants } = require('./utils/constants');
const { shortPolling } = require('./utils/polling');
async function storybook(serve, options) {
let type = /^https?:\/\//.test(serve) ? 'url' : 'dir';
let storybookConfig = options.config ? options.config : defaultSmartUIConfig.storybook;
if (type === 'url') {
await validateStorybookUrl(serve);
let url = serve;
// Convert browsers and resolutions arrays to string
let resolutions = [];
storybookConfig.resolutions.forEach(element => {
resolutions.push(element.join('x'));
});
storybookConfig.resolutions = (!resolutions.length) ? 'all' : resolutions.toString();
storybookConfig.browsers = (!storybookConfig.browsers.length) ? 'all' : storybookConfig.browsers.map(x => x.toLowerCase()).toString();
// Get stories object from stories.json and add url corresponding to every story ID
await axios.get(new URL('stories.json', url).href)
.then(async function (response) {
let stories = {}
for (const [storyId, storyInfo] of Object.entries(response.data.stories)) {
if (!skipStory(storyInfo, storybookConfig)) {
stories[storyId] = {
name: storyInfo.name,
kind: storyInfo.kind,
url: new URL('/iframe.html?id=' + storyId + '&viewMode=story', url).href
}
}
}
if (Object.keys(stories).length === 0) {
console.log('[smartui] Error: No stories found');
process.exit(constants.ERROR_CATCHALL);
}
console.log('[smartui] Stories found: ', Object.keys(stories).length);
// Capture DoM of every story and send it to renderer API
await sendDoM(url, stories, storybookConfig, options);
})
.catch(function (error) {
process.exitCode = constants.ERROR_CATCHALL;
if (error.response) {
console.log('[smartui] Cannot fetch stories. Error: ', error.message);
} else if (error.request) {
console.log('[smartui] Cannot fetch stories. Error: ', error.message);
} else {
console.log('[smartui] Cannot fetch stories. Error: ', error.message);
}
});
} else {
let dirPath = serve;
await validateStorybookDir(dirPath);
// Get storyIds to be rendered
let storyIds = static.filterStories(dirPath, storybookConfig)
// Upload Storybook static
await static.getSignedUrl(options)
.then(async function (response) {
let { url, uploadId } = response.data.data;
// Compress static build
await static.compress(dirPath, uploadId)
.then(function () {
console.log(`[smartui] ${dirPath} compressed.`)
})
.catch(function (err) {
console.log(`[smartui] Cannot compress ${dirPath}. Error: ${err.message}`);
process.exit(constants.ERROR_CATCHALL);
});
// Upload to S3
const zipData = fs.readFileSync('storybook-static.zip');
console.log('[smartui] Upload in progress...')
await axios.put(url, zipData, {
headers: {
'Content-Type': 'application/zip',
'Content-Length': zipData.length
}})
.then(function (response) {
console.log(`[smartui] ${dirPath} uploaded.`);
fs.rmSync('storybook-static.zip');
})
.catch(function (error) {
console.log(`[smartui] Cannot upload ${dirPath}. Error: ${error.message}`);
fs.rmSync('storybook-static.zip');
process.exit(constants.ERROR_CATCHALL);
});
// Prepare payload data
let browsers = []
let resolutions = []
storybookConfig.browsers.forEach(element => {
browsers.push(element.toLowerCase());
});
let rs = storybookConfig.resolutions || storybookConfig.viewports
if (rs && rs.length){
rs.forEach(element => {
resolutions.push({ width: element[0], height: element[1] });
});
}
let commit = await getLastCommit();
let payload = {
downloadURL: url.substring(url.search(/.com/)+5, url.search(/.zip/)+4),
uploadId: uploadId,
projectToken: process.env.PROJECT_TOKEN,
storybookConfig: {
browsers: browsers,
resolutions: resolutions,
storyIds: storyIds,
waitForTimeout: storybookConfig.waitForTimeout,
customViewports: storybookConfig.customViewports
},
git: {
branch: commit.branch,
commitId: commit.shortHash,
commitAuthor: commit.author.name,
commitMessage: commit.subject,
githubURL: process.env.GITHUB_URL || '',
}
}
// Call static render API
await axios.post(new URL(constants[options.env].STATIC_RENDER_PATH, constants[options.env].BASE_URL).href, payload)
.then(async function (response) {
console.log('[smartui] Build URL: ', response.data.data.buildURL);
console.log('[smartui] Build in progress...');
await shortPolling(response.data.data.buildId, 0, options);
})
.catch(function (error) {
if (error.response) {
console.log('[smartui] Build failed: Error: ', error.response.data.error?.message);
} else {
console.log('[smartui] Build failed: Error: ', error.message);
}
process.exitCode = constants.ERROR_CATCHALL;
});
})
.catch(function (error) {
if (error.response) {
console.log('[smartui] Error: ', error.response.data.error?.message);
} else {
console.log('[smartui] Error: ', error.message);
}
process.exitCode = constants.ERROR_CATCHALL;
});
}
};
module.exports = { storybook };