|
1 | 1 | /* eslint no-console: 0 */
|
2 | 2 |
|
3 |
| -import type { AddressInfo, Server } from 'node:net' |
4 |
| -import os from 'node:os' |
5 | 3 | import readline from 'readline'
|
6 | 4 | import colors from 'picocolors'
|
7 | 5 | import type { RollupError } from 'rollup'
|
8 |
| -import type { CommonServerOptions } from './http' |
9 |
| -import type { Hostname } from './utils' |
10 |
| -import { resolveHostname } from './utils' |
11 |
| -import { loopbackHosts } from './constants' |
12 |
| -import type { ResolvedConfig } from '.' |
| 6 | +import type { ResolvedServerUrls } from './server' |
13 | 7 |
|
14 | 8 | export type LogType = 'error' | 'warn' | 'info'
|
15 | 9 | export type LogLevel = LogType | 'silent'
|
@@ -145,94 +139,23 @@ export function createLogger(
|
145 | 139 | return logger
|
146 | 140 | }
|
147 | 141 |
|
148 |
| -export async function printCommonServerUrls( |
149 |
| - server: Server, |
150 |
| - options: CommonServerOptions, |
151 |
| - config: ResolvedConfig |
152 |
| -): Promise<void> { |
153 |
| - const address = server.address() |
154 |
| - const isAddressInfo = (x: any): x is AddressInfo => x?.address |
155 |
| - if (isAddressInfo(address)) { |
156 |
| - const hostname = await resolveHostname(options.host) |
157 |
| - const protocol = options.https ? 'https' : 'http' |
158 |
| - const base = config.base === './' || config.base === '' ? '/' : config.base |
159 |
| - printServerUrls(hostname, protocol, address.port, base, config.logger.info) |
160 |
| - } |
161 |
| -} |
162 |
| - |
163 |
| -function printServerUrls( |
164 |
| - hostname: Hostname, |
165 |
| - protocol: string, |
166 |
| - port: number, |
167 |
| - base: string, |
| 142 | +export function printServerUrls( |
| 143 | + urls: ResolvedServerUrls, |
| 144 | + optionsHost: string | boolean | undefined, |
168 | 145 | info: Logger['info']
|
169 | 146 | ): void {
|
170 |
| - const urls: Array<{ label: string; url: string; disabled?: boolean }> = [] |
171 |
| - const notes: Array<{ label: string; message: string }> = [] |
172 |
| - |
173 |
| - if (hostname.host && loopbackHosts.has(hostname.host)) { |
174 |
| - let hostnameName = hostname.name |
175 |
| - if ( |
176 |
| - hostnameName === '::1' || |
177 |
| - hostnameName === '0000:0000:0000:0000:0000:0000:0000:0001' |
178 |
| - ) { |
179 |
| - hostnameName = `[${hostnameName}]` |
180 |
| - } |
181 |
| - |
182 |
| - urls.push({ |
183 |
| - label: 'Local', |
184 |
| - url: colors.cyan( |
185 |
| - `${protocol}://${hostnameName}:${colors.bold(port)}${base}` |
186 |
| - ) |
187 |
| - }) |
188 |
| - |
189 |
| - if (hostname.implicit) { |
190 |
| - urls.push({ |
191 |
| - label: 'Network', |
192 |
| - url: `use ${colors.white(colors.bold('--host'))} to expose`, |
193 |
| - disabled: true |
194 |
| - }) |
195 |
| - } |
196 |
| - } else { |
197 |
| - Object.values(os.networkInterfaces()) |
198 |
| - .flatMap((nInterface) => nInterface ?? []) |
199 |
| - .filter( |
200 |
| - (detail) => |
201 |
| - detail && |
202 |
| - detail.address && |
203 |
| - // Node < v18 |
204 |
| - ((typeof detail.family === 'string' && detail.family === 'IPv4') || |
205 |
| - // Node >= v18 |
206 |
| - (typeof detail.family === 'number' && detail.family === 4)) |
207 |
| - ) |
208 |
| - .forEach((detail) => { |
209 |
| - const host = detail.address.replace('127.0.0.1', hostname.name) |
210 |
| - const url = `${protocol}://${host}:${colors.bold(port)}${base}` |
211 |
| - const label = detail.address.includes('127.0.0.1') ? 'Local' : 'Network' |
212 |
| - |
213 |
| - urls.push({ label, url: colors.cyan(url) }) |
214 |
| - }) |
| 147 | + const colorUrl = (url: string) => |
| 148 | + colors.cyan(url.replace(/:(\d+)\//, (_, port) => `:${colors.bold(port)}/`)) |
| 149 | + for (const url of urls.local) { |
| 150 | + info(` ${colors.green('➜')} ${colors.bold('Local')}: ${colorUrl(url)}`) |
215 | 151 | }
|
216 |
| - |
217 |
| - const length = Math.max( |
218 |
| - ...[...urls, ...notes].map(({ label }) => label.length) |
219 |
| - ) |
220 |
| - const print = ( |
221 |
| - iconWithColor: string, |
222 |
| - label: string, |
223 |
| - messageWithColor: string, |
224 |
| - disabled?: boolean |
225 |
| - ) => { |
226 |
| - const message = ` ${iconWithColor} ${ |
227 |
| - label ? colors.bold(label) + ':' : ' ' |
228 |
| - } ${' '.repeat(length - label.length)}${messageWithColor}` |
229 |
| - info(disabled ? colors.dim(message) : message) |
| 152 | + for (const url of urls.network) { |
| 153 | + info(` ${colors.green('➜')} ${colors.bold('Network')}: ${colorUrl(url)}`) |
| 154 | + } |
| 155 | + if (urls.network.length === 0 && optionsHost === undefined) { |
| 156 | + const note = `use ${colors.white(colors.bold('--host'))} to expose` |
| 157 | + info( |
| 158 | + colors.dim(` ${colors.green('➜')} ${colors.bold('Network')}: ${note}`) |
| 159 | + ) |
230 | 160 | }
|
231 |
| - |
232 |
| - urls.forEach(({ label, url: text, disabled }) => { |
233 |
| - print(colors.green('➜'), label, text, disabled) |
234 |
| - }) |
235 |
| - notes.forEach(({ label, message: text }) => { |
236 |
| - print(colors.white('❖'), label, text) |
237 |
| - }) |
238 | 161 | }
|
1 commit comments
charbelnicolas commentedon Aug 19, 2022
Hello, It would have be nice if you'd chosen a unicode character that has more coverage in popular terminal fonts:
from logger.ts:
Not many fonts have the HEAVY ROUND-TIPPED RIGHTWARDS ARROW (➜) character...
I would even argue that the arrow character is not even necessary but everyone wants new shiny icons nowadays for everything...