Compare commits
40 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
17054bc5a5 | |
|
|
425d304879 | |
|
|
d4214a14f2 | |
|
|
b9176c2157 | |
|
|
099fe797ad | |
|
|
0ae9a6386c | |
|
|
6bbb09917e | |
|
|
0e592c52e7 | |
|
|
3767deeae3 | |
|
|
656a2d3838 | |
|
|
9d435a296c | |
|
|
ea6de46c49 | |
|
|
78133f76f5 | |
|
|
4e18c203b7 | |
|
|
405e9f7a55 | |
|
|
9ee6a04c9d | |
|
|
533b572df6 | |
|
|
7d18dbe76c | |
|
|
228a9bd675 | |
|
|
eeeaead411 | |
|
|
c9efc0634f | |
|
|
3865741478 | |
|
|
17872dcf22 | |
|
|
bf8ae64d7e | |
|
|
778e6cef1b | |
|
|
474e77fbc7 | |
|
|
b55bab0516 | |
|
|
7067d0417f | |
|
|
52461fdb6f | |
|
|
9fc5b29aec | |
|
|
8835b6cd3a | |
|
|
2b56077490 | |
|
|
9b7428c5ef | |
|
|
cd12da9679 | |
|
|
73570100e3 | |
|
|
171d8a3519 | |
|
|
1aa33b9c13 | |
|
|
40752bbacf | |
|
|
b3152edbf2 | |
|
|
d7577f445d |
35
README.md
35
README.md
|
|
@ -1,20 +1,22 @@
|
|||
# native-echarts
|
||||
|
||||
[](https://www.npmjs.org/package/native-echarts)
|
||||
[](https://www.npmjs.org/package/native-echarts)
|
||||
[](https://raw.githubusercontent.com/somonus/react-native-echarts/master/LICENSE.md)
|
||||
|
||||
## install
|
||||
|
||||
$ npm install native-echarts --save
|
||||
|
||||
## Usage
|
||||
|
||||
###用法
|
||||
The Usage is complete consistent with Echarts
|
||||
|
||||
用法完全和echarts一致,将echarts的option传给组件。option详细属性详见[文档](http://echarts.baidu.com/option.html#title)
|
||||
component props:
|
||||
|
||||
native-echarts共暴露了三个属性:
|
||||
|
||||
* *option* (object): echarts图表的配置项,无默认值。
|
||||
* *width* (number): 图表的宽度,默认值为其外层容器的宽度。
|
||||
* *height* (number): 图表的高度,默认值为400。
|
||||
* *option* (object): The option for echarts: [Documentation](http://echarts.baidu.com/option.html#title)。
|
||||
* *width* (number): The width of the chart. The default value is the outer container width.
|
||||
* *height* (number): The height of the chart. The default value is 400.
|
||||
|
||||
|
||||
```js
|
||||
|
|
@ -31,7 +33,7 @@ export default class app extends Component {
|
|||
render() {
|
||||
const option = {
|
||||
title: {
|
||||
text: 'ECharts 入门示例'
|
||||
text: 'ECharts demo'
|
||||
},
|
||||
tooltip: {},
|
||||
legend: {
|
||||
|
|
@ -68,11 +70,22 @@ cd example
|
|||
npm install
|
||||
npm start
|
||||
```
|
||||
打开ios目录下的xcode工程,点击run
|
||||
|
||||
运行截图:
|
||||
### IOS
|
||||
|
||||

|
||||
Open the xcode project in the ios directory and click run
|
||||
|
||||
screenshots:
|
||||
|
||||

|
||||
|
||||
### Android
|
||||
|
||||
Open the Android project in the android directory with Android Studio and click run.
|
||||
|
||||
screenshots:
|
||||
|
||||

|
||||
|
||||
## License
|
||||
|
||||
|
|
|
|||
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
|
@ -9,13 +9,17 @@ import {
|
|||
AppRegistry,
|
||||
StyleSheet,
|
||||
Text,
|
||||
View
|
||||
View,
|
||||
TouchableOpacity
|
||||
} from 'react-native';
|
||||
import Echarts from 'native-echarts';
|
||||
|
||||
export default class app2 extends Component {
|
||||
render() {
|
||||
const option = {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
option : {
|
||||
title: {
|
||||
text: 'ECharts 入门示例'
|
||||
},
|
||||
|
|
@ -32,13 +36,44 @@ export default class app2 extends Component {
|
|||
type: 'bar',
|
||||
data: [5, 20, 36, 10, 10, 20]
|
||||
}]
|
||||
},
|
||||
text: 'test'
|
||||
};
|
||||
}
|
||||
|
||||
changeOption() {
|
||||
this.setState({
|
||||
option: {
|
||||
title: {
|
||||
text: 'New Chart'
|
||||
},
|
||||
tooltip: {},
|
||||
legend: {
|
||||
data:['销量']
|
||||
},
|
||||
xAxis: {
|
||||
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
||||
},
|
||||
yAxis: {},
|
||||
series: [{
|
||||
name: '销量',
|
||||
type: 'line',
|
||||
data: [5, 20, 36, 10, 10, 20]
|
||||
}]
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text style={styles.welcome}>
|
||||
Welcome to React Native Echarts!
|
||||
</Text>
|
||||
<Echarts option={option} height={300} />
|
||||
<TouchableOpacity style={styles.button} onPress={this.changeOption.bind(this)}>
|
||||
<Text style={{color: '#fff'}}>change state</Text>
|
||||
</TouchableOpacity>
|
||||
<Echarts option={this.state.option} height={300} />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
|
@ -56,6 +91,12 @@ const styles = StyleSheet.create({
|
|||
textAlign: 'center',
|
||||
margin: 30,
|
||||
},
|
||||
button: {
|
||||
backgroundColor: '#d9534f',
|
||||
padding: 8,
|
||||
borderRadius: 4,
|
||||
marginBottom: 20
|
||||
}
|
||||
});
|
||||
|
||||
AppRegistry.registerComponent('app2', () => app2);
|
||||
|
|
|
|||
|
|
@ -9,13 +9,17 @@ import {
|
|||
AppRegistry,
|
||||
StyleSheet,
|
||||
Text,
|
||||
View
|
||||
View,
|
||||
TouchableOpacity
|
||||
} from 'react-native';
|
||||
import Echarts from 'native-echarts';
|
||||
|
||||
export default class app2 extends Component {
|
||||
render() {
|
||||
const option = {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
option : {
|
||||
title: {
|
||||
text: 'ECharts 入门示例'
|
||||
},
|
||||
|
|
@ -32,13 +36,44 @@ export default class app2 extends Component {
|
|||
type: 'bar',
|
||||
data: [5, 20, 36, 10, 10, 20]
|
||||
}]
|
||||
},
|
||||
text: 'test'
|
||||
};
|
||||
}
|
||||
|
||||
changeOption() {
|
||||
this.setState({
|
||||
option: {
|
||||
title: {
|
||||
text: 'New Chart'
|
||||
},
|
||||
tooltip: {},
|
||||
legend: {
|
||||
data:['销量']
|
||||
},
|
||||
xAxis: {
|
||||
data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
||||
},
|
||||
yAxis: {},
|
||||
series: [{
|
||||
name: '销量',
|
||||
type: 'line',
|
||||
data: [5, 20, 36, 10, 10, 20]
|
||||
}]
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Text style={styles.welcome}>
|
||||
Welcome to React Native Echarts!
|
||||
</Text>
|
||||
<Echarts option={option} height={300} />
|
||||
<TouchableOpacity style={styles.button} onPress={this.changeOption.bind(this)}>
|
||||
<Text style={{color: '#fff'}}>change state</Text>
|
||||
</TouchableOpacity>
|
||||
<Echarts option={this.state.option} height={300} />
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
|
@ -56,6 +91,12 @@ const styles = StyleSheet.create({
|
|||
textAlign: 'center',
|
||||
margin: 30,
|
||||
},
|
||||
button: {
|
||||
backgroundColor: '#d9534f',
|
||||
padding: 8,
|
||||
borderRadius: 4,
|
||||
marginBottom: 20
|
||||
}
|
||||
});
|
||||
|
||||
AppRegistry.registerComponent('app2', () => app2);
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
"dependencies": {
|
||||
"react": "15.3.2",
|
||||
"react-native": "0.35.0",
|
||||
"native-echarts": "0.1.0"
|
||||
"native-echarts": "file:../"
|
||||
},
|
||||
"jest": {
|
||||
"preset": "jest-react-native"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "native-echarts",
|
||||
"version": "0.1.1",
|
||||
"version": "0.5.0",
|
||||
"description": "echarts for react-native",
|
||||
"main": "src/index.js",
|
||||
"directories": {
|
||||
|
|
@ -15,7 +15,9 @@
|
|||
},
|
||||
"keywords": [
|
||||
"react-native",
|
||||
"echarts"
|
||||
"echarts",
|
||||
"chart",
|
||||
"charts"
|
||||
],
|
||||
"author": "somonus",
|
||||
"license": "MIT",
|
||||
|
|
@ -24,6 +26,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/somonus/react-native-echarts#readme",
|
||||
"dependencies": {
|
||||
"echarts": "3.2.3"
|
||||
"echarts": "3.2.3",
|
||||
"react-native-webview":"13.8.7"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,20 +1,48 @@
|
|||
import React, { Component } from 'react';
|
||||
import { WebView } from 'react-native';
|
||||
import { View, StyleSheet, Platform } from 'react-native';
|
||||
import WebView from 'react-native-webview';
|
||||
import renderChart from './renderChart';
|
||||
import echarts from './echarts.min';
|
||||
|
||||
export default class App extends Component {
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
this.setNewOption = this.setNewOption.bind(this);
|
||||
}
|
||||
|
||||
|
||||
UNSAFE_componentWillReceiveProps(nextProps) {
|
||||
if(nextProps.option !== this.props.option) {
|
||||
this.refs.chart.reload();
|
||||
}
|
||||
}
|
||||
|
||||
setNewOption(option) {
|
||||
this.refs.chart.postMessage(JSON.stringify(option));
|
||||
}
|
||||
|
||||
render() {
|
||||
const source = Platform.OS === 'ios'
|
||||
? require('./tpl.html') // iOS使用require方式加载
|
||||
: { uri: 'file:///android_asset/tpl.html' }; // Android从assets目录加载
|
||||
|
||||
return (
|
||||
<View style={{flex: 1, height: this.props.height || 400,}}>
|
||||
<WebView
|
||||
ref="chart"
|
||||
scrollEnabled = {false}
|
||||
injectedJavaScript = {renderChart(this.props)}
|
||||
style={{
|
||||
height: this.props.height || 400,
|
||||
backgroundColor: this.props.backgroundColor || 'transparent'
|
||||
}}
|
||||
source={{html: renderChart(this.props.option)}}
|
||||
scalesPageToFit={Platform.OS !== 'ios'}
|
||||
originWhitelist={['*']}
|
||||
source={source}
|
||||
onMessage={event => this.props.onPress ? this.props.onPress(JSON.parse(event.nativeEvent.data)) : null}
|
||||
/>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,38 +1,30 @@
|
|||
import echarts from './echarts.min';
|
||||
import toString from '../../util/toString';
|
||||
|
||||
export default function renderChart(option) {
|
||||
export default function renderChart(props) {
|
||||
const height = `${props.height || 400}px`;
|
||||
const width = props.width ? `${props.width}px` : 'auto';
|
||||
return `
|
||||
<!DOCTYPE html>\n
|
||||
<html>
|
||||
<head>
|
||||
<title>echarts</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
||||
<style type="text/css">
|
||||
html,body {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
#main {
|
||||
height: 100%;
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
${echarts}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="main" ></div>
|
||||
<script>
|
||||
// 基于准备好的dom,初始化echarts实例
|
||||
document.getElementById('main').style.height = "${height}";
|
||||
document.getElementById('main').style.width = "${width}";
|
||||
var myChart = echarts.init(document.getElementById('main'));
|
||||
// 使用刚指定的配置项和数据显示图表。
|
||||
myChart.setOption(${JSON.stringify(option)});
|
||||
</script>
|
||||
<body>
|
||||
<html>
|
||||
myChart.setOption(${toString(props.option)});
|
||||
window.document.addEventListener('message', function(e) {
|
||||
var option = JSON.parse(e.data);
|
||||
myChart.setOption(option);
|
||||
});
|
||||
myChart.on('click', function(params) {
|
||||
var seen = [];
|
||||
var paramsString = JSON.stringify(params, function(key, val) {
|
||||
if (val != null && typeof val == "object") {
|
||||
if (seen.indexOf(val) >= 0) {
|
||||
return;
|
||||
}
|
||||
seen.push(val);
|
||||
}
|
||||
return val;
|
||||
});
|
||||
window.postMessage(paramsString);
|
||||
});
|
||||
`
|
||||
}
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
11
src/index.js
11
src/index.js
|
|
@ -1,12 +1,19 @@
|
|||
import React, { Component } from 'react';
|
||||
import { WebView, View } from 'react-native';
|
||||
import { View } from 'react-native';
|
||||
import WebView from 'react-native-webview';
|
||||
|
||||
import { Container, Echarts } from './components'
|
||||
|
||||
export default class App extends Component {
|
||||
|
||||
setNewOption(option) {
|
||||
this.chart.setNewOption(option);
|
||||
}
|
||||
|
||||
render() {
|
||||
return (
|
||||
<Container width={this.props.width}>
|
||||
<Echarts {...this.props} />
|
||||
<Echarts {...this.props} ref={e => this.chart = e}/>
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
export default function toString(obj) {
|
||||
let result = JSON.stringify(obj, function(key, val) {
|
||||
if (typeof val === 'function') {
|
||||
return `~--demo--~${val}~--demo--~`;
|
||||
}
|
||||
return val;
|
||||
});
|
||||
|
||||
do {
|
||||
result = result.replace('\"~--demo--~', '').replace('~--demo--~\"', '').replace(/\\n/g, '').replace(/\\\"/g,"\"");//最后一个replace将release模式中莫名生成的\"转换成"
|
||||
} while (result.indexOf('~--demo--~') >= 0);
|
||||
return result;
|
||||
}
|
||||
Loading…
Reference in New Issue