2017-07-07 19:19:24 +02:00
|
|
|
import React, { Component } from 'react';
|
2017-07-08 01:25:10 +02:00
|
|
|
import { ListView, View, Text, Button } from 'react-native';
|
2017-07-07 19:19:24 +02:00
|
|
|
import { connect } from 'react-redux'
|
|
|
|
import { Log } from 'lib/log.js'
|
|
|
|
import { reg } from 'lib/registry.js'
|
|
|
|
import { ScreenHeader } from 'lib/components/screen-header.js';
|
|
|
|
import { time } from 'lib/time-utils'
|
2017-07-10 01:20:38 +02:00
|
|
|
import { Logger } from 'lib/logger.js';
|
2017-07-14 20:49:14 +02:00
|
|
|
import { BaseScreenComponent } from 'lib/components/base-screen.js';
|
2017-07-07 19:19:24 +02:00
|
|
|
|
2017-07-14 20:49:14 +02:00
|
|
|
class LogScreenComponent extends BaseScreenComponent {
|
2017-07-07 19:19:24 +02:00
|
|
|
|
|
|
|
static navigationOptions(options) {
|
|
|
|
return { header: null };
|
|
|
|
}
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
const ds = new ListView.DataSource({
|
|
|
|
rowHasChanged: (r1, r2) => { return r1 !== r2; }
|
|
|
|
});
|
|
|
|
this.state = {
|
|
|
|
dataSource: ds,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillMount() {
|
2017-07-08 01:25:10 +02:00
|
|
|
this.resfreshLogEntries();
|
|
|
|
}
|
|
|
|
|
|
|
|
resfreshLogEntries() {
|
2017-07-07 19:19:24 +02:00
|
|
|
reg.logger().lastEntries(1000).then((entries) => {
|
|
|
|
const newDataSource = this.state.dataSource.cloneWithRows(entries);
|
|
|
|
this.setState({ dataSource: newDataSource });
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let renderRow = (item) => {
|
2017-07-10 01:20:38 +02:00
|
|
|
let color = 'black';
|
|
|
|
if (item.level == Logger.LEVEL_WARN) color = '#9A5B00';
|
|
|
|
if (item.level == Logger.LEVEL_ERROR) color = 'red';
|
|
|
|
|
|
|
|
let style = {
|
|
|
|
fontFamily: 'monospace',
|
|
|
|
fontSize: 10,
|
|
|
|
color: color,
|
|
|
|
};
|
2017-07-07 19:19:24 +02:00
|
|
|
return (
|
|
|
|
<View style={{flexDirection: 'row', paddingLeft: 1, paddingRight: 1, paddingTop:0, paddingBottom:0 }}>
|
2017-07-16 18:20:25 +02:00
|
|
|
<Text style={style}>{time.formatMsToLocal(item.timestamp, 'MM-DDTHH:mm:ss') + ': ' + item.message}</Text>
|
2017-07-07 19:19:24 +02:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// `enableEmptySections` is to fix this warning: https://github.com/FaridSafi/react-native-gifted-listview/issues/39
|
|
|
|
return (
|
2017-07-14 20:49:14 +02:00
|
|
|
<View style={this.styles().screen}>
|
2017-07-07 19:19:24 +02:00
|
|
|
<ScreenHeader navState={this.props.navigation.state} />
|
|
|
|
<ListView
|
|
|
|
dataSource={this.state.dataSource}
|
|
|
|
renderRow={renderRow}
|
|
|
|
enableEmptySections={true}
|
|
|
|
/>
|
2017-07-08 01:25:10 +02:00
|
|
|
<Button title="Refresh" onPress={() => { this.resfreshLogEntries(); }}/>
|
2017-07-07 19:19:24 +02:00
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
const LogScreen = connect(
|
|
|
|
(state) => {
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
)(LogScreenComponent)
|
|
|
|
|
|
|
|
export { LogScreen };
|