Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[website] Implement algolia redesign #28252

Merged
merged 47 commits into from
Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
e0688fb
Initial implementation using docsearch library
hbjORbj Sep 13, 2021
e630775
Display clickable search input that leads to modal and enable shortcuts
hbjORbj Sep 13, 2021
f30d024
Apply correct style for dark theme
hbjORbj Sep 13, 2021
528dece
Minor improvements in design
hbjORbj Sep 13, 2021
b2676ac
Fix lint error
hbjORbj Sep 13, 2021
b9c88bd
search styling and nav drawer/ app frame adjustments
danilo-leal Sep 13, 2021
13dfb92
more polishing
danilo-leal Sep 13, 2021
95ee639
Merge branch 'algolia-redesign' of https://github.com/hbjORbj/materia…
danilo-leal Sep 13, 2021
de39b54
Remove unused imports
hbjORbj Sep 14, 2021
62243a8
Refactor code
hbjORbj Sep 14, 2021
804e076
Use relative URL for search results
hbjORbj Sep 14, 2021
2c339f0
update styling
siriwatknp Sep 16, 2021
65c2e53
add onClose
siriwatknp Sep 16, 2021
e46a4d5
Merge branch 'master' into algolia-redesign
siriwatknp Sep 16, 2021
a6740b7
revert the code (unnecessary)
siriwatknp Sep 16, 2021
c5b8464
add @docsearch/css
siriwatknp Sep 16, 2021
3cfe1aa
wip
siriwatknp Sep 16, 2021
bc572bb
Merge branch 'algolia-redesign' of https://github.com/hbjORbj/materia…
siriwatknp Sep 16, 2021
33fe03f
done styling
siriwatknp Sep 16, 2021
1280c02
use lazy css
siriwatknp Sep 16, 2021
cdf09f1
remove unused @docsearch/css
siriwatknp Sep 16, 2021
47517f8
remove outdated css link
siriwatknp Sep 16, 2021
525c4aa
a bit less blur
danilo-leal Sep 16, 2021
3c7c7be
fix font weight
danilo-leal Sep 16, 2021
616f482
use pxToRem utility
danilo-leal Sep 16, 2021
14a326d
Change version to master for search api
hbjORbj Sep 16, 2021
bfc8222
some styles tweaking
danilo-leal Sep 16, 2021
875fd82
remove comment line
danilo-leal Sep 16, 2021
7f5671c
Merge branch 'master' into algolia-redesign
siriwatknp Sep 17, 2021
72838c7
revert the change
siriwatknp Sep 17, 2021
cd6583f
Insert StartScreen page for Danilo to play with styling
hbjORbj Sep 17, 2021
32db4e7
New structure for StartScreen element
hbjORbj Sep 17, 2021
0bc975c
Refactor code
hbjORbj Sep 17, 2021
10919b3
start screen tweaks
danilo-leal Sep 17, 2021
3b8f618
search input tweaks
danilo-leal Sep 17, 2021
c371eb6
use previous version code
siriwatknp Sep 18, 2021
4f92ec4
add fade in, out transition
siriwatknp Sep 18, 2021
d6e0a20
adjust fade duration
siriwatknp Sep 18, 2021
513fe18
Add custom start screen and display it when input is empty
hbjORbj Sep 19, 2021
c1c16b2
Add icons to start screen and refactor start screen
hbjORbj Sep 19, 2021
e008c24
Run prettier
hbjORbj Sep 19, 2021
6697fe2
adjust styling and use Link to leverage Nextjs prefetch
siriwatknp Sep 20, 2021
0c9029e
reduce fade duration time
danilo-leal Sep 20, 2021
cc4af29
use pxToRem utility
danilo-leal Sep 20, 2021
6ca674a
Merge branch 'master' into algolia-redesign
siriwatknp Sep 21, 2021
64d950e
simplify the code
siriwatknp Sep 21, 2021
d1e7ecc
Change a variable name
hbjORbj Sep 21, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"@babel/runtime-corejs2": "^7.15.4",
"@date-io/core": "^2.0.0",
"@date-io/date-fns-jalali": "^2.10.8",
"@docsearch/react": "^3.0.0-alpha.40",
"@emotion/cache": "^11.4.0",
"@emotion/react": "^11.4.1",
"@emotion/server": "^11.4.0",
Expand Down
5 changes: 0 additions & 5 deletions docs/src/modules/components/AppFrame.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,6 @@ export function DeferredAppSearch() {

return (
<React.Fragment>
<link
rel="preload"
href="https://cdn.jsdelivr.net/docsearch.js/2/docsearch.min.css"
as="style"
/>
{/* Suspense isn't supported for SSR yet */}
{mounted ? (
<React.Suspense fallback={null}>
Expand Down
Loading