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 * as React from 'react'; | |
type Omit<T, K extends keyof any> = T extends any ? Pick<T, Exclude<keyof T, K>> : never; | |
type ExtractProps<TComponentOrTProps> = TComponentOrTProps extends React.ComponentType< | |
infer P | |
> | |
? P | |
: never; | |
interface InjectedProps { |
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'; | |
// async-component.js | |
export default ({ resolve }) => class AsyncComponent extends React.Component { | |
state = { Component: undefined }; | |
componentDidMount() { | |
resolve().then(Component => { | |
this.setState({ Component }); | |
}); |
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 * as React from 'react'; | |
type SupplyRef = (ref: HTMLElement | null) => void; | |
type GetRef = SupplyRef; | |
type ChildrenGetRef = (getRef: SupplyRef) => React.ReactNode; | |
interface Props { | |
children: ChildrenGetRef | React.ReactNode; | |
getRef?: GetRef; | |
} |
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 moment from 'moment-timezone'; | |
// Override moments default behaviour so we can save timezone data. | |
moment.fn.toJSON = function() { | |
const timeZoneId = this.tz(); | |
return timeZoneId ? `${this.format()}|${timeZoneId}` : this.format(); | |
}; | |
const dateRegex = /^(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2}):(\d{2}(?:\.{0,1}\d*))(?:Z|(\+|-)([\d|:]*))?(|.*)?$/; |
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 {AfterViewInit, Component, ElementRef, Inject, Input, OnChanges, OnDestroy, OnInit, SimpleChanges} from '@angular/core'; | |
import {ArmoryStore} from './store'; | |
import {Provider} from 'react-redux'; | |
import * as React from 'react'; | |
import {ReactElement} from 'react'; | |
import * as ReactDOM from 'react-dom'; | |
@Component({ | |
selector: 'tome-armory-component', | |
template: ' ' |
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
// store.js | |
import { combineReducers, applyMiddleware, createStore } from 'redux'; | |
import thunk from 'redux-thunk'; | |
import { reducers, Tooltip } from 'armory-component-ui'; | |
const store = createStore( | |
// Create the root reducer. | |
combineReducers(reducers), |
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
// @flow | |
export default function getParameterByName ( | |
name: string, | |
url: string = window.location.href | |
): string { | |
const normalisedName = name.replace(/[[\]]/g, '\\$&'); | |
const regex = new RegExp(`[?&]${normalisedName}(=([^&#]*)|&|#|$)`); | |
const results = regex.exec(url); |
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
export function addEvent (event: string, cb: Function) { | |
window.addEventListener(event, cb, false); | |
return () => window.removeEventListener(event, cb, false); | |
} |
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
export function iframe (container: HTMLElement, body: string) { | |
const iframeElement = document.createElement('iframe'); | |
container.appendChild(iframeElement); | |
iframeElement.contentWindow.document.open(); | |
iframeElement.contentWindow.document.write(`<html><head><style>html,body { margin: 0; padding: 0; overflow: hidden; }</style></head><body>${body}</body></html>`); | |
iframeElement.contentWindow.document.close(); | |
} |
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
// @flow | |
import upperFirst from 'lodash/upperFirst'; | |
const vendors = ['Webkit', 'Moz', 'ms', 'O']; | |
// eslint-disable-next-line import/prefer-default-export | |
export function prefix (key: string, value: string): { [key: string]: string } { | |
const obj = { | |
[key]: value, |