List of React Component mimicating HomeKit components from the Home application (iOS, MacOS).
npm install homekit-react-components
- You first need to wrap your application with emotion ThemeProvider and pass the theme from the library.
🚧 THIS IS HIGHLY SUBJECT TO CHANGE IN ORDER TO FACILITATE USERS 🚧
import { ThemeProvider } from '@emotion/react';
import { theme } from 'homekit-react-components';
function App() {
return (
<ThemeProvider theme={theme}>
<MyApp />
</ThemeProvider>
);
}
- Use any components in your code 🤗
<LightCard
name="My Light"
on={true}
onToggle={() => setIsOn(...)}
/>
https://william57m.github.io/homekit-react-components/
Here is a non exhaustive list of the next components to be developed:
- Sensor Card
- Switch Card
- Fan Card
- Camera Card
- Media Player Card
- State component
- Alarm card
- Title, section component and different HomeKit layout
🚧 TO BE COMPLETED 🚧
The below guide assumes you are developing for use with https://github.com/william57m/homeassistant-dashboard
- Run
npm i --save homekit-react-components
to your homeassistant-dashboard project - In this cloned repo, run
npm link
In your homeassistant-dashboard
project, do the following:
- Add the below into the module.exports of your
webpack.config.js
file:
resolve: {
alias: {
react: path.resolve('./node_modules/react'),
'@emotion/react': path.resolve('./node_modules/@emotion/react'),
},
},
- Run
npm link homekit-react-components
- Run
npm run start
to start the dev server
Any changes you make to homekit-react-components
will be hot loaded via your homeassistant-dashboard
project