-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[create-astro] Finalize developer experience... with gradients 🚀 (#3313)
* wip: port gradient helpers from sandbox ideas * feat: wire up rocket gradient 🚀 * feat: wire up rocket gradient on install step * refactor: update "next steps" wording * deps: add chalk (for rendering gradient) * chore: changeset * chore: clean up sstray template string
- Loading branch information
1 parent
f40705d
commit 1a5335e
Showing
5 changed files
with
123 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'create-astro': patch | ||
--- | ||
|
||
Update "next steps" with more informative text on each CLI command. Oh, and gradients. A lot more gradients. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import chalk from 'chalk'; | ||
import ora from 'ora'; | ||
import type { Ora } from 'ora'; | ||
|
||
const gradientColors = [ | ||
`#ff5e00`, | ||
`#ff4c29`, | ||
`#ff383f`, | ||
`#ff2453`, | ||
`#ff0565`, | ||
`#ff007b`, | ||
`#f5008b`, | ||
`#e6149c`, | ||
`#d629ae`, | ||
`#c238bd`, | ||
]; | ||
|
||
export const rocketAscii = '■■▶'; | ||
|
||
// get a reference to scroll through while loading | ||
// visual representation of what this generates: | ||
// gradientColors: "..xxXX" | ||
// referenceGradient: "..xxXXXXxx....xxXX" | ||
const referenceGradient = [ | ||
...gradientColors, | ||
// draw the reverse of the gradient without | ||
// accidentally mutating the gradient (ugh, reverse()) | ||
...[...gradientColors].reverse(), | ||
...gradientColors, | ||
]; | ||
|
||
// async-friendly setTimeout | ||
const sleep = (time: number) => | ||
new Promise((resolve) => { | ||
setTimeout(resolve, time); | ||
}); | ||
|
||
function getGradientAnimFrames() { | ||
const frames = []; | ||
for (let start = 0; start < gradientColors.length * 2; start++) { | ||
const end = start + gradientColors.length - 1; | ||
frames.push( | ||
referenceGradient | ||
.slice(start, end) | ||
.map((g) => chalk.bgHex(g)(' ')) | ||
.join('') | ||
); | ||
} | ||
return frames; | ||
} | ||
|
||
function getIntroAnimFrames() { | ||
const frames = []; | ||
for (let end = 1; end <= gradientColors.length; end++) { | ||
const leadingSpacesArr = Array.from( | ||
new Array(Math.abs(gradientColors.length - end - 1)), | ||
() => ' ' | ||
); | ||
const gradientArr = gradientColors.slice(0, end).map((g) => chalk.bgHex(g)(' ')); | ||
frames.push([...leadingSpacesArr, ...gradientArr].join('')); | ||
} | ||
return frames; | ||
} | ||
|
||
/** | ||
* Generate loading spinner with rocket flames! | ||
* @param text display text next to rocket | ||
* @returns Ora spinner for running .stop() | ||
*/ | ||
export async function loadWithRocketGradient(text: string): Promise<Ora> { | ||
const frames = getIntroAnimFrames(); | ||
const intro = ora({ | ||
spinner: { | ||
interval: 30, | ||
frames, | ||
}, | ||
text: `${rocketAscii} ${text}`, | ||
}); | ||
intro.start(); | ||
await sleep((frames.length - 1) * intro.interval); | ||
intro.stop(); | ||
const spinner = ora({ | ||
spinner: { | ||
interval: 80, | ||
frames: getGradientAnimFrames(), | ||
}, | ||
text: `${rocketAscii} ${text}`, | ||
}).start(); | ||
|
||
return spinner; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.