File size: 8,397 Bytes
1e92f2d |
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
import { bold, red, yellow } from '../../lib/picocolors'
import stripAnsi from 'next/dist/compiled/strip-ansi'
import textTable from 'next/dist/compiled/text-table'
import createStore from 'next/dist/compiled/unistore'
import formatWebpackMessages from '../../shared/lib/format-webpack-messages'
import { store as consoleStore } from './store'
import type { OutputState } from './store'
import type { webpack } from 'next/dist/compiled/webpack/webpack'
import { COMPILER_NAMES } from '../../shared/lib/constants'
import type { CompilerNameValues } from '../../shared/lib/constants'
type CompilerDiagnostics = {
totalModulesCount: number
errors: string[] | null
warnings: string[] | null
}
type WebpackStatus =
| { loading: true }
| ({ loading: false } & CompilerDiagnostics)
type AmpStatus = {
message: string
line: number
col: number
specUrl: string | null
code: string
}
export type AmpPageStatus = {
[page: string]: { errors: AmpStatus[]; warnings: AmpStatus[] }
}
type BuildStatusStore = {
client: WebpackStatus
server: WebpackStatus
edgeServer: WebpackStatus
trigger: string | undefined
url: string | undefined
amp: AmpPageStatus
}
export function formatAmpMessages(amp: AmpPageStatus) {
let output = bold('Amp Validation') + '\n\n'
let messages: string[][] = []
const chalkError = red('error')
function ampError(page: string, error: AmpStatus) {
messages.push([page, chalkError, error.message, error.specUrl || ''])
}
const chalkWarn = yellow('warn')
function ampWarn(page: string, warn: AmpStatus) {
messages.push([page, chalkWarn, warn.message, warn.specUrl || ''])
}
for (const page in amp) {
let { errors, warnings } = amp[page]
const devOnlyFilter = (err: AmpStatus) => err.code !== 'DEV_MODE_ONLY'
errors = errors.filter(devOnlyFilter)
warnings = warnings.filter(devOnlyFilter)
if (!(errors.length || warnings.length)) {
// Skip page with no non-dev warnings
continue
}
if (errors.length) {
ampError(page, errors[0])
for (let index = 1; index < errors.length; ++index) {
ampError('', errors[index])
}
}
if (warnings.length) {
ampWarn(errors.length ? '' : page, warnings[0])
for (let index = 1; index < warnings.length; ++index) {
ampWarn('', warnings[index])
}
}
messages.push(['', '', '', ''])
}
if (!messages.length) {
return ''
}
output += textTable(messages, {
align: ['l', 'l', 'l', 'l'],
stringLength(str: string) {
return stripAnsi(str).length
},
})
return output
}
const buildStore = createStore<BuildStatusStore>({
// @ts-expect-error initial value
client: {},
// @ts-expect-error initial value
server: {},
// @ts-expect-error initial value
edgeServer: {},
})
let buildWasDone = false
let clientWasLoading = true
let serverWasLoading = true
let edgeServerWasLoading = false
buildStore.subscribe((state) => {
const { amp, client, server, edgeServer, trigger, url } = state
const { appUrl } = consoleStore.getState()
if (client.loading || server.loading || edgeServer?.loading) {
consoleStore.setState(
{
bootstrap: false,
appUrl: appUrl!,
// If it takes more than 3 seconds to compile, mark it as loading status
loading: true,
trigger,
url,
} as OutputState,
true
)
clientWasLoading = (!buildWasDone && clientWasLoading) || client.loading
serverWasLoading = (!buildWasDone && serverWasLoading) || server.loading
edgeServerWasLoading =
(!buildWasDone && edgeServerWasLoading) || edgeServer.loading
buildWasDone = false
return
}
buildWasDone = true
let partialState: Partial<OutputState> = {
bootstrap: false,
appUrl: appUrl!,
loading: false,
typeChecking: false,
totalModulesCount:
(clientWasLoading ? client.totalModulesCount : 0) +
(serverWasLoading ? server.totalModulesCount : 0) +
(edgeServerWasLoading ? edgeServer?.totalModulesCount || 0 : 0),
hasEdgeServer: !!edgeServer,
}
if (client.errors && clientWasLoading) {
// Show only client errors
consoleStore.setState(
{
...partialState,
errors: client.errors,
warnings: null,
} as OutputState,
true
)
} else if (server.errors && serverWasLoading) {
consoleStore.setState(
{
...partialState,
errors: server.errors,
warnings: null,
} as OutputState,
true
)
} else if (edgeServer.errors && edgeServerWasLoading) {
consoleStore.setState(
{
...partialState,
errors: edgeServer.errors,
warnings: null,
} as OutputState,
true
)
} else {
// Show warnings from all of them
const warnings = [
...(client.warnings || []),
...(server.warnings || []),
...(edgeServer.warnings || []),
].concat(formatAmpMessages(amp) || [])
consoleStore.setState(
{
...partialState,
errors: null,
warnings: warnings.length === 0 ? null : warnings,
} as OutputState,
true
)
}
})
export function ampValidation(
page: string,
errors: AmpStatus[],
warnings: AmpStatus[]
) {
const { amp } = buildStore.getState()
if (!(errors.length || warnings.length)) {
buildStore.setState({
amp: Object.keys(amp)
.filter((k) => k !== page)
.sort()
// eslint-disable-next-line no-sequences
.reduce((a, c) => ((a[c] = amp[c]), a), {} as AmpPageStatus),
})
return
}
const newAmp: AmpPageStatus = { ...amp, [page]: { errors, warnings } }
buildStore.setState({
amp: Object.keys(newAmp)
.sort()
// eslint-disable-next-line no-sequences
.reduce((a, c) => ((a[c] = newAmp[c]), a), {} as AmpPageStatus),
})
}
export function watchCompilers(
client: webpack.Compiler,
server: webpack.Compiler,
edgeServer: webpack.Compiler
) {
buildStore.setState({
client: { loading: true },
server: { loading: true },
edgeServer: { loading: true },
trigger: 'initial',
url: undefined,
})
function tapCompiler(
key: CompilerNameValues,
compiler: webpack.Compiler,
onEvent: (status: WebpackStatus) => void
) {
compiler.hooks.invalid.tap(`NextJsInvalid-${key}`, () => {
onEvent({ loading: true })
})
compiler.hooks.done.tap(`NextJsDone-${key}`, (stats: webpack.Stats) => {
buildStore.setState({ amp: {} })
const { errors, warnings } = formatWebpackMessages(
stats.toJson({
preset: 'errors-warnings',
moduleTrace: true,
})
)
const hasErrors = !!errors?.length
const hasWarnings = !!warnings?.length
onEvent({
loading: false,
totalModulesCount: stats.compilation.modules.size,
errors: hasErrors ? errors : null,
warnings: hasWarnings ? warnings : null,
})
})
}
tapCompiler(COMPILER_NAMES.client, client, (status) => {
if (
!status.loading &&
!buildStore.getState().server.loading &&
!buildStore.getState().edgeServer.loading &&
status.totalModulesCount > 0
) {
buildStore.setState({
client: status,
trigger: undefined,
url: undefined,
})
} else {
buildStore.setState({
client: status,
})
}
})
tapCompiler(COMPILER_NAMES.server, server, (status) => {
if (
!status.loading &&
!buildStore.getState().client.loading &&
!buildStore.getState().edgeServer.loading &&
status.totalModulesCount > 0
) {
buildStore.setState({
server: status,
trigger: undefined,
url: undefined,
})
} else {
buildStore.setState({
server: status,
})
}
})
tapCompiler(COMPILER_NAMES.edgeServer, edgeServer, (status) => {
if (
!status.loading &&
!buildStore.getState().client.loading &&
!buildStore.getState().server.loading &&
status.totalModulesCount > 0
) {
buildStore.setState({
edgeServer: status,
trigger: undefined,
url: undefined,
})
} else {
buildStore.setState({
edgeServer: status,
})
}
})
}
export function reportTrigger(trigger: string, url?: string) {
buildStore.setState({
trigger,
url,
})
}
|