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 { Injectable, NgZone } from '@angular/core'; | |
import { Observable } from 'rxjs/Observable'; | |
import { ReplaySubject } from 'rxjs/ReplaySubject'; | |
// We use a ReplaySubject instead of a Subject or BehaviorSubject because we want to ensure 2 things: | |
// 1. That new subscribers receive any current values | |
// 2. That if the subject has never been invoked, no value is passed when a subscriber is wired up. | |
// Subject does not provide replay behavior (providing the current value), and BehaviorSubject | |
// requires an initial value, which may not be appropriate to the event. | |
// Therefore ReplaySubject, with a 1-element window, is the correct choice. |
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
https://www.reddit.com/r/reactjs/comments/agpo04/react_best_practices/ |
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
https://github.com/BranchMetrics/cordova-ionic-phonegap-branch-deep-linking | |
https://github.com/vially/cordova-plugin-filepickerio/tree/bump-filestack-android-v5.0.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
https://usehooks.com/useDarkMode/ | |
--> https://github.com/donavon/use-dark-mode | |
https://usehooks.com/useLocalStorage/ | |
https://usehooks.com/useMedia/ | |
https://github.com/donavon/use-persisted-state | |
https://github.com/gragland/usehooks/tree/master/src/pages | |
https://www.reddit.com/r/reactjs/comments/apf7bz/rreactjs_hooks_contest_winners/ |
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
https://github.com/tajo/react-range - only 3.2kb minzipped, smallest I've ever seen, fully stylable and fully accessible | |
https://github.com/tajo/react-movable - better than draggable or dragula or dropzone, all of which are huge - this is only 3.8kb minzipped |
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'; | |
module.exports = function CustomError(message, extra) { | |
Error.captureStackTrace(this, this.constructor); | |
this.name = this.constructor.name; | |
this.message = message; | |
this.extra = extra; | |
}; | |
require('util').inherits(module.exports, Error); |
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
<div scrollSpy> | |
<div [waypoint]="i" *ngFor="let i of [1,2,3,4,5,6,7,8]"> | |
{{ i }} | |
</div> | |
</div> |
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
.rounded-corners-gradient-borders { | |
width: 300px; | |
height: 80px; | |
border: double 4px transparent; | |
border-radius: 80px; | |
background-image: linear-gradient(white, white), radial-gradient(circle at top left, #f00,#3020ff); | |
background-origin: border-box; | |
background-clip: content-box, border-box; | |
} |
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 { useState, useEffect } from 'react' | |
import { Dimensions } from 'react-native' | |
const useDimensions = getter => { | |
const [dimensions, setDimensions] = useState(Dimensions.get(getter)) | |
useEffect(() => { | |
const widthHandler = d => setDimensions(d[getter]) | |
Dimensions.addEventListener('change', widthHandler) | |
return () => Dimensions.removeEventListener('change', widthHandler) | |
}) |
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
# .ebextensions/01_install_yarn.config | |
files: | |
'/opt/elasticbeanstalk/hooks/appdeploy/pre/49install_yarn.sh' : | |
mode: '000755' | |
owner: root | |
group: root | |
content: | | |
#!/usr/bin/env bash | |
set -euxo pipefail |