2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-26 18:24:15 +00:00
|
|
|
* The examples provided by Facebook are for non-commercial testing and
|
|
|
|
* evaluation purposes only.
|
2015-03-23 22:07:33 +00:00
|
|
|
*
|
2015-03-26 18:24:15 +00:00
|
|
|
* Facebook reserves all rights not expressly granted.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
|
|
* AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
2015-03-23 22:07:33 +00:00
|
|
|
*
|
2015-01-30 01:10:49 +00:00
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2016-04-09 03:36:40 +00:00
|
|
|
var ReactNative = require('react-native');
|
2015-01-30 01:10:49 +00:00
|
|
|
var {
|
|
|
|
StyleSheet,
|
2016-04-09 03:36:40 +00:00
|
|
|
} = ReactNative;
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
var MAX_VALUE = 200;
|
|
|
|
|
2015-09-05 00:00:21 +00:00
|
|
|
import type { StyleObj } from 'StyleSheetTypes';
|
|
|
|
|
|
|
|
function getStyleFromScore(score: number): StyleObj {
|
2015-01-30 01:10:49 +00:00
|
|
|
if (score < 0) {
|
|
|
|
return styles.noScore;
|
|
|
|
}
|
|
|
|
|
|
|
|
var normalizedScore = Math.round((score / 100) * MAX_VALUE);
|
|
|
|
return {
|
|
|
|
color: 'rgb(' +
|
|
|
|
(MAX_VALUE - normalizedScore) + ', ' +
|
|
|
|
normalizedScore + ', ' +
|
|
|
|
0 +
|
|
|
|
')'
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
var styles = StyleSheet.create({
|
|
|
|
noScore: {
|
|
|
|
color: '#999999',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = getStyleFromScore;
|