Skip to content

Instantly share code, notes, and snippets.

View slorber's full-sized avatar
🏠
Working from home

Sébastien Lorber slorber

🏠
Working from home
View GitHub Profile
@slorber
slorber / ElementContainer.js
Created September 20, 2018 11:56
ElementContainer.js
import React from 'react';
const generateHolderKey = (() => {
let counter = 0;
return () => {
counter += 1;
return `holder_${counter}`;
};
})();
const setupAppOverTheAirUpdates = () => {
const checkForUpdates = async () => {
if (__DEV__) {
console.debug('checkForUpdates disabled in DEV');
return;
}
try {
const update = await Updates.checkForUpdateAsync();
console.debug('checkForUpdates result', update);
if (update.isAvailable) {
import { Alert } from 'react-native';
// An alert implementation that returns a promise when the choise is done
export const AlertAsync = (
title,
message,
buttons = [],
options = {},
type,
) => {
import React from 'react';
// Permit to create a provider/consumer but allow the consumer
// to also receive a setter to update the provider value
export const createUpdatableContext = () => {
const { Provider, Consumer } = React.createContext(null);
class UpdatableContextProvider extends React.Component {
constructor(props) {
super(props);
import React from 'react';
import { AppLoading } from 'expo';
import { Centered } from 'common/components/utils/Layout';
import { BaseText } from 'common/styleguide/texts';
import SimpleButton from 'common/components/buttons/SimpleButton';
import CustomSafeAreaView from 'common/components/utils/CustomSafeAreaView';
import { reportError } from 'AppSentry';
const TechnicalErrorScreen = ({ onRetry }) => (
<CustomSafeAreaView>
import React, { Component } from 'react';
import {View} from "glamorous-native";
import * as Colors from "colors";
import {getColor} from "colors";
import { greyD } from "colors";
const Separator = ({
const injectFiltersAPI = Comp => {
class FiltersAPIInjector extends React.Component {
constructor() {
super();
this.filtersAPI = {
getFilters: this.getFilters,
setFilters: this.setFilters,
deleteFilters: this.deleteFilters,
@slorber
slorber / Lazy.js
Created April 23, 2018 15:30
Lazy react native comp
import React from 'react';
import {InteractionManager, ActivityIndicator} from 'react-native';
import {View} from 'glamorous-native';
const DefaultLoader = (
<View padding={20} alignItems="center" justifyContent="center">
<ActivityIndicator size="large"/>
</View>
);
✘-127 ~/Desktop/Stample-react-clone [master|✔]
16:25 $ ./node_modules/.bin/now build --config zeit.json --alias frontend-prod.stample.co
Deprecated! The option --alias will be removed soon.
Read more about the new way here: http://bit.ly/2l2v5Fg
> Deploying ~/Desktop/Stample-react-clone/build
> Using Node.js 7.6.0 (default)
> Ready! https://stample-front-sbonzcnqdg.now.sh (copied to clipboard) [2s]
> Initializing…
✔ ~/Desktop/Stample-react-clone [master|✔]
16:17 $ npm run deploy-prod-all
> [email protected] deploy-prod-all /Users/sebastienlorber/Desktop/Stample-react-clone
> now build --config zeit.json --alias frontend-prod.stample.co
Deprecated! The option --alias will be removed soon.
Read more about the new way here: http://bit.ly/2l2v5Fg
> Deploying ~/Desktop/Stample-react-clone/build