Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aliemir/react-lunar-toggle
Dark Mode toggle with lunar phase emojis for React.
https://github.com/aliemir/react-lunar-toggle
dark-mode dark-mode-toggle emoji lunar-phase moon moon-phase react react-toggle
Last synced: 13 days ago
JSON representation
Dark Mode toggle with lunar phase emojis for React.
- Host: GitHub
- URL: https://github.com/aliemir/react-lunar-toggle
- Owner: aliemir
- License: mit
- Created: 2019-12-04T11:58:28.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T11:03:53.000Z (almost 2 years ago)
- Last Synced: 2024-10-12T14:58:26.762Z (about 1 month ago)
- Topics: dark-mode, dark-mode-toggle, emoji, lunar-phase, moon, moon-phase, react, react-toggle
- Language: CSS
- Size: 163 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-lunar-toggle [![npm version](https://badge.fury.io/js/react-lunar-toggle.svg)](https://www.npmjs.com/package/react-lunar-toggle)
🌑 🌒 🌓 🌔 🌕 🌖 🌗 🌘 🌑
![gif](toggle.gif)
react-toggle with lunar phases, for fancy dark mode toggles.
## Props
Props except date: Date inherited from [react-toggle](https://github.com/aaronshaf/react-toggle), further info can be found at react-toggle repo.
The component takes the following props.
| Prop | Type | Description |
| ----------------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `date` | _Date_ | Optional. If not set today's date will be used |
| `checked` | _boolean_ | If `true`, the toggle is checked. If `false`, the toggle is unchecked. Use this if you want to treat the toggle as a controlled component |
| `defaultChecked` | _boolean_ | If `true` on initial render, the toggle is checked. If `false` on initial render, the toggle is unchecked. Use this if you want to treat the toggle as an uncontrolled component |
| `onChange` | _function_ | Callback function to invoke when the user clicks on the toggle. The function signature should be the following: `function(e) { }`. To get the current checked status from the event, use `e.target.checked`. |
| `onFocus` | _function_ | Callback function to invoke when field has focus. The function signature should be the following: `function(e) { }` |
| `onBlur` | _function_ | Callback function to invoke when field loses focus. The function signature should be the following: `function(e) { }` |
| `name` | _string_ | The value of the `name` attribute of the wrapped \ element |
| `value` | _string_ | The value of the `value` attribute of the wrapped \ element |
| `id` | _string_ | The value of the `id` attribute of the wrapped \ element |
| `icons` | _object_ | If `false`, no icons are displayed. You may also pass custom icon components in `icons={{{checked: , unchecked: }}` |
| `aria-labelledby` | _string_ | The value of the `aria-labelledby` attribute of the wrapped \ element |
| `aria-label` | _string_ | The value of the `aria-label` attribute of the wrapped \ element |
| `disabled` | _boolean_ | If `true`, the toggle is disabled. If `false`, the toggle is enabled |## Installation
```bash
npm install react-lunar-toggle
```## Usage
```jsx
import LunarToggle from 'react-lunar-toggle'
...```
example
```jsx
import LunarToggle from 'react-lunar-toggle'const App = props => {
const [darkMode, toggleDarkMode] = useState(false)
return (
toggleDarkMode(e.target.checked)}
/>
)
}## Styling
you need to add the styles from [src/styles.css](src/styles.css)
```