|
本帖最后由 xiaoyan2015 于 2019-9-4 13:35 编辑
今天给大家分享的是 RN 聊天室项目,基于 react-native+react-navigation+react-redux+react-native-image-picker+rnPop 等技术实现高仿微信聊天 APP 界面,从搭建到开发完 前前后后发了两周左右吧,多半是晚上挤出时间来弄,开发过程采坑不少,好在 reactNative 社区比较完善,很多困难都在网上找到了解决方法。
使用技术:- MVVM框架:react / react-native / react-native-cli
- 状态管理:react-redux
- 页面导航:react-navigation
- rn弹窗组件:rnPop
- 打包工具:webpack 2.0
- 轮播组件:react-native-swiper
- 图片/相册:react-native-image-picker
- {
- "name": "RN_ChatRoom",
- "aboutMe": "QQ:282310962 、 wx:xy190310",
-
- "dependencies": {
- "react": "16.8.6",
- "react-native": "0.60.4"
- },
- "devDependencies": {
- "@babel/core": "^7.5.5",
- "@babel/runtime": "^7.5.5",
- "@react-native-community/async-storage": "^1.6.1",
- "@react-native-community/eslint-config": "^0.0.5",
- "babel-jest": "^24.8.0",
- "eslint": "^6.1.0",
- "jest": "^24.8.0",
- "metro-react-native-babel-preset": "^0.55.0",
- "react-native-gesture-handler": "^1.3.0",
- "react-native-image-picker": "^1.0.2",
- "react-native-swiper": "^1.5.14",
- "react-navigation": "^3.11.1",
- "react-redux": "^7.1.0",
- "react-test-renderer": "16.8.6",
- "redux": "^4.0.4",
- "redux-thunk": "^2.3.0"
- }
- }
复制代码
react-native 实现全屏幕启动页,可自定义背景图
reactNative 全屏启动页制作(隐藏状态栏,实现沉浸式) 只需把 StatusBar 设置为透明即可,这样状态栏和背景页面一体了。 <statusbar backgroundcolor="transparent" barstyle="light-content" translucent="{true}"></statusbar>
ReactNative沉浸式状态栏应用在顶部通栏,如微信朋友圈、京东首页/个人中心
- /**
- * @desc 启动页面
- */
- import React, { Component } from 'react'
- import { StatusBar, Animated, View, Text, Image } from 'react-native'
- export default class Splash extends Component{
- constructor(props){
- super(props)
- this.state = {
- animFadeIn: new Animated.Value(0),
- animFadeOut: new Animated.Value(1),
- }
- }
- render(){
- return (
- <Animated.View style={[GStyle.flex1DC_a_j, {backgroundColor: '#1a4065', opacity: this.state.animFadeOut}]}>
- <StatusBar backgroundColor='transparent' barStyle='light-content' translucent={true} />
- <View style={GStyle.flex1_a_j}>
- <Image source={require('../assets/img/ic_default.jpg')} style={{borderRadius: 100, width: 100, height: 100}} />
- </View>
- <View style={[GStyle.align_c, {paddingVertical: 20}]}>
- <Text style={{color: '#dbdbdb', fontSize: 12, textAlign: 'center',}}>RN-ChatRoom v1.0.0</Text>
- </View>
- </Animated.View>
- )
- }
- componentDidMount(){
- // 判断是否登录
- storage.get('hasLogin', (err, object) => {
- setTimeout(() => {
- Animated.timing(
- this.state.animFadeOut, {duration: 300, toValue: 0}
- ).start(()=>{
- // 跳转页面
- util.navigationReset(this.props.navigation, (!err && object && object.hasLogin) ? 'Index' : 'Login')
- })
- }, 1500);
- })
- }
- }
复制代码
react-navigation 导航器实现自定义顶部导航条 headerBar 组件
如下图:是不是觉得似曾相识,没错,效果有些仿微信导航条啦。 默认标题居左,配置属性center即可居中显示,另外右侧图标支持 image图片、iconfont字体图标、文字三种方式
reactNative 自定义 modal 弹窗|dialog 对话框
由于 RN 提供的弹窗有时不能满足项目需求,这时就需要自己重新定制弹窗,不过依旧基于 Modal 来实现。 看看下面这个,自己开发的 rnPop 弹窗组件, 功能效果还不错~~ 支持多种调用方式,具体的可以去看看这篇文章介绍 https://www.cnblogs.com/xiaoyan2017/p/11292096.html
reactNative 如何实现聊天表情、在 TextInput 插入表情
在社交软件中,基本上都会有 emoji 表情功能。聊天中要显示文字和 emoji 表情的混排(下图所示),在原生 iOS 开发时,可以用富文本 NSAttributedString 实现,安卓中用 SpannableString 实现。当用到 React-Native 来开发这个功能的时候,貌似没有直接的现成的实现方案。
方法一: 通过特殊符处理,[高兴] (:88 类似这样的,处理起来比较麻烦,而且图片多了会影响页面性能。 具体实现方法可参考: https://www.jianshu.com/p/2331860db169
方法二: 使用 emoj 表情符,这种方式处理比较简单,网上很多表情符可用,而且不需要特殊处理,性能也还不错。如果要求不高,推荐这种方式。
附上最近开发的项目实例,希望能喜欢~~~
vue网页端聊天室:https://cloud.tencent.com/developer/article/1420150
angular聊天室IM:https://cloud.tencent.com/developer/article/1464674
|
|