1.0.1 • Published 5 years ago

@slithyme/react-set-date v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

React SetDate

npm (scoped)

React Set Date is a flat, flexible date-picker in React, built of functional components using React Hooks and date-fns.

Because I don't like the other date-pickers I've seen.


Code Sandbox

React SetDate returns a standard JavaScript Date object; do as you like with it.

Use SetDate to display the picker on the page, or include the picker in a wrapper component.

Use InputDate to display an input that opens the date-picker on focus.

// Use in a functional component, with hooks:

import { InputDate, SetDate } from './SetDate'

const App = (props) => {

  // Optionally, supply a start date; if none, gallery will default to `new Date()`
  const startDate = new Date()
  startDate.setHours(0)
  startDate.setMinutes(0)
  startDate.setSeconds(0)

  // To get the date out of the component, supply a handler
  const [date, setDate] = useState(startDate)
  useEffect(() => {
    // do something with the date, i.e.
    console.log(date)
  }, [date])

  return (
    <SetDate
      date={date} // optional
      setDate={setDate} // required
      timeFormat="hh" // h, hh, H, HH (optional; HH by default)
    />
  )
}
// Use in a class-based component

import { InputDate, SetDate } from './SetDate'

class App extends React.Component {
  state = {
    date: new Date(),
  }

  // provide a handler that does something with the date
  handleSetDate = (date) => {
    this.setState({
      date,
    }, () => {
      console.log(date)
    })
  }

  render() {
    return (
      <SetDate
        date={date} // optional
        setDate={handleSetDate} // required
        timeFormat="hh" // h, hh, H, HH (optional; HH by default)
      />
    )
  }
}
1.0.1

5 years ago

1.0.0

5 years ago