cheatsheets/deku@1.html

281 lines
8.2 KiB
HTML

<!doctype html>
<html lang='en' class='no-js '>
<head>
<meta charset='utf-8'>
<meta content='width=device-width, initial-scale=1.0' name='viewport'>
<link href='./assets/favicon.png' rel='shortcut icon'>
<meta content='/deku@1.html' name='app:pageurl'>
<title>Deku v1 cheatsheet</title>
<meta content='Deku v1 cheatsheet' property='og:title'>
<meta content='Deku v1 cheatsheet' property='twitter:title'>
<meta content='article' property='og:type'>
<meta content='https://assets.devhints.io/previews/deku@1.jpg?t=20200622145648' property='og:image'>
<meta content='https://assets.devhints.io/previews/deku@1.jpg?t=20200622145648' property='twitter:image'>
<meta content='900' property='og:image:width'>
<meta content='471' property='og:image:height'>
<meta content="The one-page guide to Deku v1: usage, examples, links, snippets, and more." name="description">
<meta content="The one-page guide to Deku v1: usage, examples, links, snippets, and more." property="og:description">
<meta content="The one-page guide to Deku v1: usage, examples, links, snippets, and more." property="twitter:description">
<link rel="canonical" href="https://devhints.io/deku@1">
<meta name="og:url" content="https://devhints.io/deku@1">
<meta content='Devhints.io cheatsheets' property='og:site_name'>
<meta content='JavaScript libraries' property='article:section'>
<script async src='https://www.googletagmanager.com/gtag/js?id=UA-106902774-1'></script>
<script>
window.dataLayer=window.dataLayer||[];
function gtag(){dataLayer.push(arguments)};
gtag('js',new Date());
gtag('config','UA-106902774-1');
</script>
<meta property='page:depth' content='1'>
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
<script>(function(H){H.className=H.className.replace(/\bNoJs\b/,'WithJs')})(document.documentElement)</script>
<script>(function(d,s){if(window.Promise&&[].includes&&Object.assign&&window.Map)return;var js,sc=d.getElementsByTagName(s)[0];js=d.createElement(s);js.src='https://cdn.polyfill.io/v2/polyfill.min.js';sc.parentNode.insertBefore(js, sc);}(document,'script'))</script>
<!--[if lt IE 9]><script src='https://cdnjs.cloudflare.com/ajax/libs/nwmatcher/1.2.5/nwmatcher.min.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/json2/20140204/json2.js'></script><script src='https://cdn.rawgit.com/gisu/selectivizr/1.0.3/selectivizr.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/respond.js/1.4.2/respond.js'></script><![endif]-->
<style>html{opacity:0}</style>
<link rel="stylesheet" href="./assets/2015/style.css?t=20200622145648">
<link href="./assets/style.css?t=20200622145648" rel="stylesheet" />
<link href="./assets/print.css?t=20200622145648" rel="stylesheet" media="print" />
</head>
<body>
<div class='all'>
<div class='site-header'>
<div class='container'>
This is <a href="."><em>Devhints.io cheatsheets</em></a> &mdash; a collection of cheatsheets I've written.
</div>
</div>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "NewsArticle",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://google.com/article"
},
"headline": "Deku v1 cheatsheet",
"image": [ "https://assets.devhints.io/previews/deku@1.jpg?t=20200622145648" ],
"description": "The one-page guide to Deku v1: usage, examples, links, snippets, and more."
}
</script>
<script type='application/ld+json'>
{
"@context": "http://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://devhints.io/#javascript-libraries",
"name": "JavaScript libraries"
}
},{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://devhints.io/deku@1",
"name": "Deku v1"
}
}]
}
</script>
<div class='post-list -single -cheatsheet'>
<div class='post-item'>
<div class='post-headline -cheatsheet'>
<p class='prelude'><span></span></p>
<h1><span>Deku v1</span></h1>
<ul class="social-list ">
<li class="facebook link hint--bottom" data-hint="Share on Facebook"><a href="https://www.facebook.com/sharer/sharer.php?u=https://devhints.io/deku@1.html" target="share"><span class="text"></span></a></li>
<li class="twitter link hint--bottom" data-hint="Share on Twitter"><a href="https://twitter.com/intent/tweet?text=The%20ultimate%20cheatsheet%20for%20Deku%20v1.%20https://devhints.io/deku@1.html" target="share"><span class="text"></span></a></li>
</ul>
</div>
<div class='post-content -cheatsheet'>
<p>This is for Deku v1. See <a href="./deku">deku</a> for a more updated cheatsheet.</p>
<pre><code class="language-js">/** @jsx element */
import element from 'virtual-element' // replacement for React.createElement
import {render, tree} from 'deku'
var app = &lt;div class='my-app'&gt;Hello World!&lt;/div&gt;
render(tree(app), document.body)
</code></pre>
<h2 id="components">Components</h2>
<pre><code class="language-js">Button = {
render () { return &lt;button&gt;Submit&lt;/button&gt; }
}
App = {
render () { return &lt;div&gt;&lt;Button /&gt;&lt;/div&gt; }
}
render(tree(&lt;App /&gt;), document.body)
render(tree(element(App)), document.body)
</code></pre>
<h2 id="component-propsstate">Component props/state</h2>
<pre><code class="language-js">App = {
render ({ props, state }) {
return &lt;div&gt;{ /*...use state.store here*/ }&lt;/div&gt;
}
initialState (props) {
return { store: store.getState() }
},
afterMount (comp, el, setState) {
store.subscribe(() =&gt; setState({ store: store.getState() }))
}
}
render(tree(&lt;App /&gt;), document.body)
</code></pre>
<h2 id="events">Events</h2>
<pre><code class="language-js">&lt;a onClick={onClick}&gt;{props.text}&lt;/a&gt;
</code></pre>
<h2 id="magic-virtual-element">Magic virtual element</h2>
<p>Use <a href="https://github.com/dekujs/magic-virtual-element">magic-virtual-element</a> to enable nice classnames.</p>
<pre><code>import element from 'magic-virtual-element'
&lt;div style={style} class={[ 'button', '-active' ]}&gt;
</code></pre>
<h2 id="reference">Reference</h2>
<pre><code>name = 'MyComponent'
// Defaults
initialState (props) {...} // return initial state
defaultProps = { hi: 'hello' }
// Render
render ({props, state}, setState) {...}
// Lifecycle
beforeUpdate ({props, state, id}, nextProps, nextState) {}
afterRender ({props, state, id}, el) {}
afterUpdate ({props, state, id}, prevProps, prevState, setState) {}
afterMount ({props, state, id}, el, setState) {}
beforeUnmount ({props, state, id}, el) {}
</code></pre>
<p>See: <a href="https://www.npmjs.com/package/deku">https://www.npmjs.com/package/deku</a></p>
</div>
<ul class="social-list ">
<li class="facebook link hint--bottom" data-hint="Share on Facebook"><a href="https://www.facebook.com/sharer/sharer.php?u=https://devhints.io/deku@1.html" target="share"><span class="text"></span></a></li>
<li class="twitter link hint--bottom" data-hint="Share on Twitter"><a href="https://twitter.com/intent/tweet?text=The%20ultimate%20cheatsheet%20for%20Deku%20v1.%20https://devhints.io/deku@1.html" target="share"><span class="text"></span></a></li>
</ul>
</div>
</div>
<div class="about-the-site">
<div class="container">
<p class='blurb'>
<strong><a href=".">Devhints.io cheatsheets</a></strong> is a collection of cheatsheets I've written over the years.
Suggestions and corrections? <a href='https://github.com/rstacruz/cheatsheets/issues/907'>Send them in</a>.
<i class='fleuron'></i>
I'm <a href="http://ricostacruz.com">Rico Sta. Cruz</a>.
Check out my <a href="http://ricostacruz.com/til">Today I learned blog</a> for more.
</p>
<p class='back'>
<a class='big-button -back -slim' href='.#toc'></a>
</p>
<p>
</p>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/8.5/highlight.min.js"></script>
<script src="https://cdn.rawgit.com/rstacruz/unorphan/v1.0.1/index.js"></script>
<script>hljs.initHighlightingOnLoad()</script>
<script>unorphan('h1, h2, h3, p, li, .unorphan')</script>
</body>
</html>