// State Tree itself should be normalized and lean towards flat (sort of like a traditional relational database)
//
{
// Route Parameters
params: {
pageId: 1,
},
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You will receive {numberOfTexts, plural, | |
=0 {no more texts.} | |
=1 {{duration, plural, | |
=0 {1 more text.} | |
=1 {1 text tomorrow.} | |
other {1 text within # days.} | |
}} | |
other {{duration, plural, | |
=0 {{numberOfTexts} more texts.} | |
=1 {{numberOfTexts} texts tomorrow.} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const toPromise = (load) => (new Promise((resolve) => ( | |
load(resolve) | |
))); | |
class LazilyLoad extends React.Component { | |
constructor() { | |
super(...arguments); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { getPointRelativeToElement, getDistanceBetweenPoints } from 'utilities/geometry'; | |
const THRESHOLD = 150; | |
const RANGE = 80; | |
const SCROLL_RANGE = 5; | |
const COMPLETE = 1; | |
const SPEED = 0.015; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyWrapper extends React.Component { | |
componentDidMount() { | |
this.setState({ | |
instance: new WhateverIAmWrapping(this.node) | |
}); | |
} | |
render() { | |
return ( | |
<div ref={(ref) => this.node } /> | |
{this.state.instance ? ( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
const SingleEntryPlugin = require('webpack/lib/SingleEntryPlugin'); | |
const webpack = require('webpack'); | |
const CHILD_COMPILER_NAME = 'service-worker-plugin'; | |
class ServiceWorkerPlugin { | |
constructor(options) { | |
this.options = options; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CTRL-P - cd into the selected directory | |
# | |
__fzfcmd() { | |
[ ${FZF_TMUX:-1} -eq 1 ] && echo "fzf-tmux -d${FZF_TMUX_HEIGHT:-40%}" || echo "fzf" | |
} | |
fzf-cd-widget() { | |
local cmd="${FZF_CTRL_P_COMMAND:-"command find -L ~ \\( -path '*/\\.*' -o -fstype 'dev' -o -fstype 'proc' \\) -prune \ | |
-o -type d -print 2> /dev/null | sed 1d"}" | |
setopt localoptions pipefail 2> /dev/null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const MIN_SCALE = 1; | |
const MAX_SCALE = 4; | |
const SETTLE_RANGE = 0.001; | |
const ADDITIONAL_LIMIT = 0.2; | |
const DOUBLE_TAP_THRESHOLD = 300; | |
const ANIMATION_SPEED = 0.04; | |
const RESET_ANIMATION_SPEED = 0.08; | |
const INITIAL_X = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import $ from 'jquery'; | |
import kuidropdown from 'kendo-ui-core/js/kendo.dropdownlist.js'; | |
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
class KendoDropDownList extends React.Component { | |
componentDidMount() { | |
this.synchronize(); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
const toPromise = (load) => (new Promise((resolve) => ( | |
load(resolve) | |
))); | |
class LazilyLoad extends React.Component { | |
constructor() { | |
super(...arguments); |