Skip to content

Commit

Permalink
feat(components-rn): 脱离expo, example 移至 react-native init 的项目下
Browse files Browse the repository at this point in the history
  • Loading branch information
Manjiz committed Apr 17, 2019
1 parent 2a0b21d commit 7becd8e
Show file tree
Hide file tree
Showing 74 changed files with 18,176 additions and 105 deletions.
3 changes: 0 additions & 3 deletions packages/taro-components-rn/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ node_modules
.vs_code
.idea

# expo
.expo/

# build
dist
build
Expand Down
3 changes: 3 additions & 0 deletions packages/taro-components-rn/TCRNExample/.babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["react-native"]
}
6 changes: 6 additions & 0 deletions packages/taro-components-rn/TCRNExample/.buckconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

[android]
target = Google Inc.:Google APIs:23

[maven_repositories]
central = https://repo1.maven.org/maven2
54 changes: 54 additions & 0 deletions packages/taro-components-rn/TCRNExample/.flowconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
[ignore]
; We fork some components by platform
.*/*[.]android.js

; Ignore "BUCK" generated dirs
<PROJECT_ROOT>/\.buckd/

; Ignore unexpected extra "@providesModule"
.*/node_modules/.*/node_modules/fbjs/.*

; Ignore duplicate module providers
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js

; Ignore polyfills
.*/Libraries/polyfills/.*

; Ignore metro
.*/node_modules/metro/.*

[include]

[libs]
node_modules/react-native/Libraries/react-native/react-native-interface.js
node_modules/react-native/flow/
node_modules/react-native/flow-github/

[options]
emoji=true

module.system=haste

munge_underscores=true

module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'

module.file_ext=.js
module.file_ext=.jsx
module.file_ext=.json
module.file_ext=.native.js

suppress_type=$FlowIssue
suppress_type=$FlowFixMe
suppress_type=$FlowFixMeProps
suppress_type=$FlowFixMeState

suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError

[version]
^0.67.0
1 change: 1 addition & 0 deletions packages/taro-components-rn/TCRNExample/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pbxproj -text
56 changes: 56 additions & 0 deletions packages/taro-components-rn/TCRNExample/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# OSX
#
.DS_Store

# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
project.xcworkspace

# Android/IntelliJ
#
build/
.idea
.gradle
local.properties
*.iml

# node.js
#
node_modules/
npm-debug.log
yarn-error.log

# BUCK
buck-out/
\.buckd/
*.keystore

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/

*/fastlane/report.xml
*/fastlane/Preview.html
*/fastlane/screenshots

# Bundle artifact
*.jsbundle
1 change: 1 addition & 0 deletions packages/taro-components-rn/TCRNExample/.watchmanconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
import React, { Component } from 'react'
import {
Provider,
ScrollView,
Text,
View,
Button,
// Tabbar,
// TabbarContainer,
// TabbarPanel,
} from './dist'
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/

import React, {Component} from 'react';
import { Platform, StyleSheet } from 'react-native';
import { Provider, ScrollView, View, Text, Button } from '../dist'
import EXButton from './example/EXButton'
import EXCheckbox from './example/EXCheckbox'
import EXIcon from './example/EXIcon'
import EXImage from './example/EXImage'
import EXSwiper from './example/EXSwiper'
import EXTextinput from './example/EXTextinput'
import EXSwitch from './example/EXSwitch'
import EXSlider from './example/EXSlider'
Expand All @@ -27,7 +26,15 @@ import EXForm from './example/EXForm'
// import EXMap from './example/EXMap'
import EXWebView from './example/EXWebView'

export default class App extends Component {
const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
android:
'Double tap R on your keyboard to reload,\n' +
'Shake or press menu button for dev menu',
});

type Props = {};
export default class App extends Component<Props> {
state = {
// 更改scrollTop可滚动
scrollTop: 0
Expand All @@ -45,33 +52,7 @@ export default class App extends Component {
console.log('view touchend')
}

render () {
// return (
// <TabbarContainer>
// <TabbarPanel style={{ backgroundColor: 'red' }}>
// <Text>heheheheheheh</Text>
// </TabbarPanel>
// <Tabbar
// conf={{
// list: [
// { text: '首页', selectedIconPath: 'http://via.placeholder.com/27', iconPath: 'http://via.placeholder.com/27' },
// { text: '签到', selectedIconPath: 'http://via.placeholder.com/27', iconPath: 'http://via.placeholder.com/27' },
// { text: '我的', selectedIconPath: 'http://via.placeholder.com/27', iconPath: 'http://via.placeholder.com/27' }
// ]
// }}
// />
// </TabbarContainer>
// )
// for (let key in global) {
// if (global.hasOwnProperty(key)) {
// console.log(key)
// }
// }
// for (let key in global.window) {
// if (global.window.hasOwnProperty(key)) {
// console.log(key)
// }
// }
render() {
return (
<Provider>
<ScrollView
Expand Down Expand Up @@ -118,10 +99,10 @@ export default class App extends Component {
<View style={{ width: '33.33%', height: 100, backgroundColor: 'green' }}></View>
</View>

<View
<View
hoverStyle={{ backgroundColor: 'green' }}
style={{ padding: 50, backgroundColor: 'orange' }}
>
>
<View
onClick={() => { console.log('you click me') }}
// onLongPress={() => { console.log('you longpress me') }}
Expand All @@ -148,10 +129,7 @@ export default class App extends Component {
default
</Button>
</View>
</View>

<Text>Swiper</Text>
<EXSwiper />
</View>

<Text>Icon</Text>
<EXIcon />
Expand Down Expand Up @@ -190,6 +168,9 @@ export default class App extends Component {
<EXWebView />
</ScrollView>
</Provider>
)
);
}
}

const styles = StyleSheet.create({
});
65 changes: 65 additions & 0 deletions packages/taro-components-rn/TCRNExample/android/app/BUCK
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
# To learn about Buck see [Docs](https://buckbuild.com/).
# To run your application with Buck:
# - install Buck
# - `npm start` - to start the packager
# - `cd android`
# - `keytool -genkey -v -keystore keystores/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"`
# - `./gradlew :app:copyDownloadableDepsToLibs` - make all Gradle compile dependencies available to Buck
# - `buck install -r android/app` - compile, install and run application
#

lib_deps = []

for jarfile in glob(['libs/*.jar']):
name = 'jars__' + jarfile[jarfile.rindex('/') + 1: jarfile.rindex('.jar')]
lib_deps.append(':' + name)
prebuilt_jar(
name = name,
binary_jar = jarfile,
)

for aarfile in glob(['libs/*.aar']):
name = 'aars__' + aarfile[aarfile.rindex('/') + 1: aarfile.rindex('.aar')]
lib_deps.append(':' + name)
android_prebuilt_aar(
name = name,
aar = aarfile,
)

android_library(
name = "all-libs",
exported_deps = lib_deps,
)

android_library(
name = "app-code",
srcs = glob([
"src/main/java/**/*.java",
]),
deps = [
":all-libs",
":build_config",
":res",
],
)

android_build_config(
name = "build_config",
package = "com.tcrnexample",
)

android_resource(
name = "res",
package = "com.tcrnexample",
res = "src/main/res",
)

android_binary(
name = "app",
keystore = "//android/keystores:debug",
manifest = "src/main/AndroidManifest.xml",
package_type = "debug",
deps = [
":app-code",
],
)
Loading

0 comments on commit 7becd8e

Please sign in to comment.