Display numbers based on significant digits and format app menu
This commit is contained in:
parent
db3fb7ec0f
commit
6252203f14
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,6 +1,6 @@
|
|||
# OSX
|
||||
#
|
||||
.DS_Store
|
||||
# Editor
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Xcode
|
||||
#
|
||||
|
|
137
imagesrc/menulogo.svg
Normal file
137
imagesrc/menulogo.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 28 KiB |
|
@ -18,6 +18,18 @@ function getUnit(n) {
|
|||
}
|
||||
}
|
||||
|
||||
function significantDigits(num) {
|
||||
// http://bateru.com/news/2011/04/code-of-the-day-javascript-significant-figures/
|
||||
var n = String(num).trim(),
|
||||
FIND_FRONT_ZEROS_SIGN_DOT_EXP = /^[\D0]+|\.|([e][^e]+)$/g,
|
||||
FIND_RIGHT_ZEROS = /0+$/g;
|
||||
|
||||
if (!/\./.test(num)) {
|
||||
n = n.replace(FIND_RIGHT_ZEROS, "");
|
||||
}
|
||||
return n.replace(FIND_FRONT_ZEROS_SIGN_DOT_EXP, "").length;
|
||||
};
|
||||
|
||||
const styles = {
|
||||
table: {
|
||||
borderBottomColor: 'lightgrey',
|
||||
|
@ -40,20 +52,14 @@ export default class Calc extends Component {
|
|||
const haveAllValid = state.have.every((x) => x.valid);
|
||||
const haveNonEmpty = state.have.some((x) => x.value);
|
||||
|
||||
const precision = () => {
|
||||
if (targetValid && targetNonEmpty) {
|
||||
const pieces = state.target.value.split('.');
|
||||
if (pieces[1]) {
|
||||
if (pieces[1].length > 20) {
|
||||
return 20; // Max toFixed() allows
|
||||
}
|
||||
if (pieces[1].length > 2) {
|
||||
return pieces[1].length;
|
||||
}
|
||||
}
|
||||
}
|
||||
return 2;
|
||||
};
|
||||
const sigDigs = targetValid && targetNonEmpty ?
|
||||
significantDigits(state.target.value) : 0;
|
||||
|
||||
let precision = 3;
|
||||
if (sigDigs > 3) {
|
||||
// toPrecision() has a max of 20
|
||||
precision = sigDigs > 20 ? 20 : sigDigs;
|
||||
}
|
||||
|
||||
const targetRes = state.target.value * state.target.mult;
|
||||
|
||||
|
@ -71,7 +77,7 @@ export default class Calc extends Component {
|
|||
if (haveAllValid && haveNonEmpty) {
|
||||
const {unit, mult} = getUnit(sum);
|
||||
const val = sum / mult;
|
||||
return val.toFixed(precision()) + unit;
|
||||
return val.toPrecision(precision) + unit;
|
||||
} else {
|
||||
return '---';
|
||||
}
|
||||
|
@ -81,18 +87,17 @@ export default class Calc extends Component {
|
|||
if (targetValid && targetNonEmpty && haveAllValid && haveNonEmpty) {
|
||||
// Check if the 'overall resistor value' matches the target
|
||||
const {unit, mult} = getUnit(targetRes);
|
||||
console.log((targetRes / mult).toFixed(precision()) + unit);
|
||||
if (printSum() === (targetRes / mult).toFixed(precision()) + unit) {
|
||||
return (0.0).toFixed(precision());
|
||||
if (printSum() === (targetRes / mult).toPrecision(precision) + unit) {
|
||||
return (0.0).toPrecision(precision);
|
||||
}
|
||||
return percentError.toFixed(precision());
|
||||
return percentError.toPrecision(precision);
|
||||
} else {
|
||||
return '---';
|
||||
}
|
||||
};
|
||||
|
||||
const printNextRes= () => {
|
||||
if (targetValid && targetNonEmpty && haveAllValid && haveNonEmpty) {
|
||||
if (targetValid && targetNonEmpty && haveAllValid) {
|
||||
// Check if we are done because error is 0 or value's exact
|
||||
if (nextRes == Infinity || printPercentError() == 0.0) {
|
||||
return 'Done.';
|
||||
|
@ -101,7 +106,7 @@ export default class Calc extends Component {
|
|||
}
|
||||
const {unit, mult} = getUnit(nextRes);
|
||||
const val = nextRes / mult;
|
||||
return val.toFixed(precision()) + unit;
|
||||
return val.toPrecision(precision) + unit;
|
||||
} else {
|
||||
return '---';
|
||||
}
|
||||
|
|
|
@ -1,14 +1,20 @@
|
|||
import React, {Component} from 'react';
|
||||
import {StyleSheet, View, Text, TouchableOpacity} from 'react-native';
|
||||
import {Image, ScrollView, StyleSheet, View, TouchableOpacity} from 'react-native';
|
||||
|
||||
const styles = StyleSheet.create({
|
||||
import MyText from './mytext.js';
|
||||
|
||||
const styles = {
|
||||
main: {
|
||||
backgroundColor: '#ffffff',
|
||||
flex: 1,
|
||||
alignItems: 'center',
|
||||
justifyContent: 'center',
|
||||
},
|
||||
});
|
||||
menutable: {
|
||||
borderBottomColor: 'lightgrey',
|
||||
borderBottomWidth: 1,
|
||||
padding: 15,
|
||||
fontSize: 16,
|
||||
},
|
||||
};
|
||||
|
||||
export default class Menu extends Component {
|
||||
constructor(props) {
|
||||
|
@ -20,9 +26,13 @@ export default class Menu extends Component {
|
|||
|
||||
return (
|
||||
<View style={styles.main}>
|
||||
<Text onPress={main}>Calculator</Text>
|
||||
<Text onPress={help}>Help</Text>
|
||||
<Text>Link 4</Text>
|
||||
<ScrollView>
|
||||
<Image style={{alignSelf: 'flex-start', height: 121.30401, width: 250}} source={require('../images/menulogo.png')} resizeMode={'contain'} />
|
||||
<MyText style={styles.menutable} onPress={main}>Calculator</MyText>
|
||||
<MyText style={styles.menutable} onPress={help}>Help</MyText>
|
||||
<MyText style={styles.menutable} onPress={null}>Tips</MyText>
|
||||
<MyText style={[styles.menutable, {borderBottomWidth: 0}]} onPress={null}>About</MyText>
|
||||
</ScrollView>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -52,7 +52,7 @@ class Resistor extends Component {
|
|||
updatemult('1');
|
||||
}
|
||||
|
||||
return (
|
||||
return data ? (
|
||||
<View style={{flex: 1, flexDirection: 'row', justifyContent: 'center', margin: 3}}>
|
||||
<TextInput
|
||||
value={data.value || ''}
|
||||
|
@ -97,7 +97,7 @@ class Resistor extends Component {
|
|||
<Text>Clear</Text>
|
||||
</TouchableOpacity>
|
||||
</View>
|
||||
);
|
||||
) : null;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
import React, {Component} from 'react';
|
||||
import {View, StyleSheet} from 'react-native';
|
||||
import {Navigator, View, StyleSheet} from 'react-native';
|
||||
import {bindActionCreators} from 'redux';
|
||||
import {connect} from 'react-redux';
|
||||
import Ionicons from 'react-native-vector-icons/Ionicons';
|
||||
|
@ -8,6 +8,8 @@ import Drawer from 'react-native-drawer';
|
|||
|
||||
import * as menuActions from '../actions/menuActions';
|
||||
import MenuApp from '../containers/menuApp';
|
||||
import CalcApp from '../containers/calcApp';
|
||||
import HelpApp from '../containers/helpApp';
|
||||
|
||||
class Nav extends Component {
|
||||
constructor(props) {
|
||||
|
@ -52,7 +54,18 @@ class Nav extends Component {
|
|||
title="Exact Resistor Calculator"
|
||||
/>
|
||||
<View style={{flex: 1}}>
|
||||
{state.page}
|
||||
<Navigator
|
||||
renderScene={(route, navigator) => {
|
||||
switch (state.page) {
|
||||
case 'main':
|
||||
return <CalcApp />;
|
||||
case 'help':
|
||||
return <HelpApp />;
|
||||
default:
|
||||
return <CalcApp />;
|
||||
}
|
||||
}}
|
||||
/>
|
||||
</View>
|
||||
</Drawer>
|
||||
);
|
||||
|
|
BIN
src/images/menulogo.png
Normal file
BIN
src/images/menulogo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 184 KiB |
|
@ -1,13 +1,10 @@
|
|||
import React, {Component} from 'react';
|
||||
import * as types from '../actions/actionTypes';
|
||||
|
||||
import CalcApp from '../containers/calcApp';
|
||||
import HelpApp from '../containers/helpApp';
|
||||
|
||||
const initialState = {
|
||||
isOpen: false,
|
||||
refdrawer: null,
|
||||
page: <CalcApp />,
|
||||
page: 'main',
|
||||
subtitle: 'Calculator Page',
|
||||
};
|
||||
|
||||
|
@ -27,14 +24,14 @@ export default function menu(state = initialState, action = {}) {
|
|||
return {
|
||||
...state,
|
||||
isOpen: false,
|
||||
page: <CalcApp />,
|
||||
page: 'main',
|
||||
subtitle: 'Calculator Page',
|
||||
};
|
||||
case types.HELP:
|
||||
return {
|
||||
...state,
|
||||
isOpen: false,
|
||||
page: <HelpApp />,
|
||||
page: 'help',
|
||||
subtitle: 'Help',
|
||||
};
|
||||
default:
|
||||
|
|
Loading…
Reference in New Issue
Block a user