unistore-lit
v0.1.1
Published
Unistore connector to lit
Downloads
7
Maintainers
Readme
unistore-lit
unistore connector to lit and uhtml (and any tagged template library).
Examples
- Todo - A TodoMVC app using neverland.
- Tunes - A Peepcode's Backbone.js Music Player reimplemented in lighterhtml.
- TunesLit - A Peepcode's Backbone.js Music Player reimplemented in lit-html.
Usage
store.js
import createStore from 'unistore';
import connectTo from 'unistore-lit';
export const store = createStore({
list: [
{ id: 1, text: 'Do the thing!' },
{ id: 2, text: 'Do another thing!' },
],
});
export const connect = connectTo(store);
app.js
import { connect } from './store';
const mapStateToProps = (state) => ({
myList: state.list,
});
export const App = connect(mapStateToProps)(
({ myList }) => html`
<ul>
${myList.map((item) => html`<li>${item.id} - ${item.text}</li>`)}
</ul>
`
);
index.js
import { render } from 'lit'; // or 'uhtml'
import { store } from './store';
import { App } from './app';
const renderApp = () => render(App(), document.body);
renderApp() && store.subscribe(renderApp);