Skip to content

Commit f1eb945

Browse files
authored
Merge pull request #1087 from trillium/themeswich_update_depricated
refactor: upgrade deprecated components from @headlessui/react
2 parents 38e80cf + fcb8f4d commit f1eb945

File tree

1 file changed

+31
-25
lines changed

1 file changed

+31
-25
lines changed

components/ThemeSwitch.tsx

+31-25
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
import { Fragment, useEffect, useState } from 'react'
44
import { useTheme } from 'next-themes'
5-
import { Menu, RadioGroup, Transition } from '@headlessui/react'
5+
import {
6+
Menu,
7+
MenuButton,
8+
MenuItem,
9+
MenuItems,
10+
Radio,
11+
RadioGroup,
12+
Transition,
13+
} from '@headlessui/react'
614

715
const Sun = () => (
816
<svg
@@ -57,9 +65,9 @@ const ThemeSwitch = () => {
5765
<div className="mr-5 flex items-center">
5866
<Menu as="div" className="relative inline-block text-left">
5967
<div className="flex items-center justify-center hover:text-primary-500 dark:hover:text-primary-400">
60-
<Menu.Button aria-label="Theme switcher">
68+
<MenuButton aria-label="Theme switcher">
6169
{mounted ? resolvedTheme === 'dark' ? <Moon /> : <Sun /> : <Blank />}
62-
</Menu.Button>
70+
</MenuButton>
6371
</div>
6472
<Transition
6573
as={Fragment}
@@ -70,31 +78,29 @@ const ThemeSwitch = () => {
7078
leaveFrom="transform opacity-100 scale-100"
7179
leaveTo="transform opacity-0 scale-95"
7280
>
73-
<Menu.Items className="absolute right-0 z-50 mt-2 w-32 origin-top-right divide-y divide-gray-100 rounded-md bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:bg-gray-800">
81+
<MenuItems className="absolute right-0 z-50 mt-2 w-32 origin-top-right divide-y divide-gray-100 rounded-md bg-white shadow-lg ring-1 ring-black ring-opacity-5 focus:outline-none dark:bg-gray-800">
7482
<RadioGroup value={theme} onChange={setTheme}>
7583
<div className="p-1">
76-
<RadioGroup.Option value="light">
77-
<Menu.Item>
78-
{({ active }) => (
84+
<Radio value="light">
85+
<MenuItem>
86+
{({ focus }) => (
7987
<button
80-
className={`${
81-
active ? 'bg-primary-600 text-white' : ''
82-
} group flex w-full items-center rounded-md px-2 py-2 text-sm`}
88+
className={`${focus ? 'bg-primary-600 text-white' : ''} group flex w-full items-center rounded-md px-2 py-2 text-sm`}
8389
>
8490
<div className="mr-2">
8591
<Sun />
8692
</div>
8793
Light
8894
</button>
8995
)}
90-
</Menu.Item>
91-
</RadioGroup.Option>
92-
<RadioGroup.Option value="dark">
93-
<Menu.Item>
94-
{({ active }) => (
96+
</MenuItem>
97+
</Radio>
98+
<Radio value="dark">
99+
<MenuItem>
100+
{({ focus }) => (
95101
<button
96102
className={`${
97-
active ? 'bg-primary-600 text-white' : ''
103+
focus ? 'bg-primary-600 text-white' : ''
98104
} group flex w-full items-center rounded-md px-2 py-2 text-sm`}
99105
>
100106
<div className="mr-2">
@@ -103,14 +109,14 @@ const ThemeSwitch = () => {
103109
Dark
104110
</button>
105111
)}
106-
</Menu.Item>
107-
</RadioGroup.Option>
108-
<RadioGroup.Option value="system">
109-
<Menu.Item>
110-
{({ active }) => (
112+
</MenuItem>
113+
</Radio>
114+
<Radio value="system">
115+
<MenuItem>
116+
{({ focus }) => (
111117
<button
112118
className={`${
113-
active ? 'bg-primary-600 text-white' : ''
119+
focus ? 'bg-primary-600 text-white' : ''
114120
} group flex w-full items-center rounded-md px-2 py-2 text-sm`}
115121
>
116122
<div className="mr-2">
@@ -119,11 +125,11 @@ const ThemeSwitch = () => {
119125
System
120126
</button>
121127
)}
122-
</Menu.Item>
123-
</RadioGroup.Option>
128+
</MenuItem>
129+
</Radio>
124130
</div>
125131
</RadioGroup>
126-
</Menu.Items>
132+
</MenuItems>
127133
</Transition>
128134
</Menu>
129135
</div>

0 commit comments

Comments
 (0)