aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/scaling_input.tsx
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-20 05:58:12 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-20 05:58:12 +0800
commit6510454337dd5add86522c0eb5621a3f55ac062d (patch)
treef39590b92220411575a207f23ca1e6a845eef1d4 /packages/instant/src/components/scaling_input.tsx
parentf06541ec94c2f3b8d1924da376178a5fc3f442e6 (diff)
downloaddexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar.gz
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar.bz2
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar.lz
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar.xz
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.tar.zst
dexon-sol-tools-6510454337dd5add86522c0eb5621a3f55ac062d.zip
feat: add scaling input component
Diffstat (limited to 'packages/instant/src/components/scaling_input.tsx')
-rw-r--r--packages/instant/src/components/scaling_input.tsx82
1 files changed, 82 insertions, 0 deletions
diff --git a/packages/instant/src/components/scaling_input.tsx b/packages/instant/src/components/scaling_input.tsx
new file mode 100644
index 000000000..ea0a925d2
--- /dev/null
+++ b/packages/instant/src/components/scaling_input.tsx
@@ -0,0 +1,82 @@
+import { BigNumber } from '@0x/utils';
+import * as _ from 'lodash';
+import * as React from 'react';
+import * as ReactDOM from 'react-dom';
+
+import { ColorOption } from '../style/theme';
+import { util } from '../util/util';
+
+import { Container, Input } from './ui';
+
+export enum ScalingInputPhase {
+ Start,
+ Scaling,
+ End,
+}
+
+export interface ScalingInputProps {
+ startWidthCh: number;
+ endWidthCh: number;
+ startFontSizePx: number;
+ value?: string;
+ onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
+ fontColor?: ColorOption;
+ placeholder?: string;
+}
+// Magic value obtained via trial-and-error
+const scalingRateToMaintainSameWidth = 0.1;
+export class ScalingInput extends React.Component<ScalingInputProps> {
+ public static defaultProps = {
+ onChange: util.boundNoop,
+ };
+ public render(): React.ReactNode {
+ const { fontColor, onChange, placeholder, value } = this.props;
+ const phase = this._getPhase();
+ return (
+ <Input
+ fontColor={fontColor}
+ onChange={onChange}
+ value={value}
+ placeholder={placeholder}
+ fontSize={this._calculateFontSize(phase)}
+ width={this._calculateWidth(phase)}
+ />
+ );
+ }
+ private readonly _calculateFontSize = (phase: ScalingInputPhase): string => {
+ const { value, endWidthCh, startFontSizePx } = this.props;
+ if (_.isUndefined(value) || phase !== ScalingInputPhase.End) {
+ return `${startFontSizePx}px`;
+ }
+ const charactersOverMax = value.length - endWidthCh;
+ const pixelsToReduceFontSizeBy = charactersOverMax * 2;
+ const newFontSizePx = startFontSizePx - pixelsToReduceFontSizeBy;
+ return `${newFontSizePx}px`;
+ };
+ private readonly _calculateWidth = (phase: ScalingInputPhase): string => {
+ const { value, startWidthCh, endWidthCh } = this.props;
+ if (_.isUndefined(value)) {
+ return `${startWidthCh}ch`;
+ }
+ switch (phase) {
+ case ScalingInputPhase.Start:
+ return `${startWidthCh}ch`;
+ case ScalingInputPhase.Scaling:
+ return `${value.length}ch`;
+ case ScalingInputPhase.End:
+ return `${endWidthCh}ch`;
+ default:
+ return `${startWidthCh}ch`;
+ }
+ };
+ private readonly _getPhase = (): ScalingInputPhase => {
+ const { value, startWidthCh, endWidthCh } = this.props;
+ if (_.isUndefined(value) || value.length <= this.props.startWidthCh) {
+ return ScalingInputPhase.Start;
+ }
+ if (value.length > startWidthCh && value.length <= endWidthCh) {
+ return ScalingInputPhase.Scaling;
+ }
+ return ScalingInputPhase.End;
+ };
+}