Plustar.js
2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
'use strict';
import React from 'react';
import ReactNative, {
AppRegistry,
Platform,
StyleSheet,
Dimensions,
TouchableOpacity,
} from 'react-native';
import createReactClass from 'create-react-class';
import {
Provider,
connect
} from 'react-redux';
import configureStore from './store/configureStore';
import {Record, List, Map} from 'immutable';
import appInitialState from './reducers/app/appInitialState';
import plustarInitialState from './reducers/plustar/plustarInitialState';
import detailInitialState from './reducers/detail/detailInitialState';
import PlustarContainer from './containers/PlustarContainer';
import DetailContainer from './containers/DetailContainer';
import {
setPlatform,
setChannel,
} from './reducers/app/appActions';
import {
setSegment,
setGender,
} from './reducers/plustar/plustarActions';
import {
setBrandId,
setId,
} from './reducers/detail/detailActions';
function getInitialState() {
const _initState = {
app: (new appInitialState()),
plustar: (new plustarInitialState()),
detail: (new detailInitialState()),
};
return _initState;
}
function getInitSegment(type) {
let segment = null;
if (type == 0) {
//潮流优选
segment = new (Record({
0: new (Record({
title: '设计新潮',
type: 4,
})),
1: new (Record({
title: '潮流经典',
type: 1,
})),
}));
} else if (type == 1) {
//明星原创
segment = new (Record({
0: new (Record({
title: '原创潮牌',
type: 3,
})),
1: new (Record({
title: '明星潮品',
type: 2,
})),
}));
}
return segment;
}
export default function native(platform) {
let YH_Plustar = createReactClass({
render() {
const store = configureStore(getInitialState());
store.dispatch(setPlatform(platform));
let type = this.props.type;
if (type == 'detail') {
let id = this.props.id;
store.dispatch(setId(id));
return (
<Provider store={store}>
<DetailContainer />
</Provider>
);
} else {
let segment = getInitSegment(this.props.initType);
store.dispatch(setSegment(segment));
if (this.props.initType == 0) {
let gender = this.props.genderType;
store.dispatch(setGender(gender));
}
return (
<Provider store={store}>
<PlustarContainer />
</Provider>
);
}
}
});
AppRegistry.registerComponent('YH_Plustar', () => YH_Plustar);
}
let styles = StyleSheet.create({
});