react-native聊天室|RN版聊天App仿微信实例|RN仿微信界面
一、前言
9月,又到开学的季节。为每个一直默默努力的自己点赞!最近都沉浸在react native原生app开发中,之前也有使用vue/react/angular等技术开发过聊天室项目,另外还使用rn技术做了个自定义模态弹窗rnpop组件。
一、项目简述
基于react+react-native+react-navigation+react-redux+react-native-swiper+rnpop等技术开发的仿微信原生app界面聊天室——rn_chatroom,实现了原生app启动页、asyncstorage本地存储登录拦截、集成rnpop模态框功能(仿微信popupwindow弹窗菜单)、消息触摸列表、发送消息、表情(动图),图片预览,拍摄图片、发红包、仿微信朋友圈等功能。
二、技术点
- mvvm框架:react / react-native / react-native-cli
- 状态管理:react-redux / redux
- 页面导航:react-navigation
- rn弹窗组件:rnpop
- 打包工具:webpack 2.0
- 轮播组件:react-native-swiper
- 图片/相册:react-native-image-picker
{ "name": "rn_chatroom", "version": "0.0.1", "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" }, "jest": { "preset": "react-native" } }
◆ app全屏幕启动页splash模板
react-native如何全屏启动? 设置statusbar顶部条背景为透明 translucent={true},并配合rn动画animated
/** * @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); }) } }
◆ rn本地存储技术async-storage
/** * @desc 本地存储函数 */ import asyncstorage from '@react-native-community/async-storage' export default class storage{ static get(key, callback){ return asyncstorage.getitem(key, (err, object) => { callback(err, json.parse(object)) }) } static set(key, data, callback){ return asyncstorage.setitem(key, json.stringify(data), callback) } static del(key){ return asyncstorage.removeitem(key) } static clear(){ asyncstorage.clear() } } global.storage = storage
声明全局global变量,只需在app.js页面一次引入、多个页面均可调用。
storage.set('haslogin', { haslogin: true })
storage.get('haslogin', (err, object) => { ... })
◆ app主页面模板及全局引入组件
import react, { fragment, component } from 'react' import { statusbar } from 'react-native' // 引入公共js import './src/utils/util' import './src/utils/storage' // 导入样式 import './src/assets/css/common' // 导入rnpop弹窗 import './src/assets/js/rnpop/rnpop.js' // 引入页面路由 import pagerouter from './src/router' class app extends component{ render(){ return ( <fragment> {/* <statusbar backgroundcolor={gstyle.headerbackgroundcolor} barstyle='light-content' /> */} {/* 页面 */} <pagerouter /> {/* 弹窗模板 */} <rnpop /> </fragment> ) } } export default app
◆ react-navigation页面导航器/地址路由、底部tabbar
由于react-navigation官方顶部导航器不能满足需求,如是自己封装了一个,功能效果有些类似微信导航。
export default class headerbar extends component { constructor(props){ super(props) this.state = { searchinput: '' } } render() { /** * 更新 * @param { navigation | 页面导航 } * @param { title | 标题 } * @param { center | 标题是否居中 } * @param { search | 是否显示搜索 } * @param { headerright | 右侧icon按钮 } */ let{ navigation, title, bg, center, search, headerright } = this.props return ( <view style={gstyle.flex_col}> <statusbar backgroundcolor={bg ? bg : gstyle.headerbackgroundcolor} barstyle='light-content' translucent={true} /> <view style={[styles.rnim__topbar, gstyle.flex_row, {backgroundcolor: bg ? bg : gstyle.headerbackgroundcolor}]}> {/* 返回 */} <touchableopacity style={[styles.iconback]} activeopacity={.5} onpress={this.goback}><text style={[gstyle.iconfont, gstyle.c_fff, gstyle.fs_18]}></text></touchableopacity> {/* 标题 */} { !search && center ? <view style={gstyle.flex1} /> : null } { search ? ( <view style={[styles.barsearch, gstyle.flex1, gstyle.flex_row]}> <textinput onchangetext={text=>{this.setstate({searchinput: text})}} style={styles.barsearchtext} placeholder='搜索' placeholdertextcolor='rgba(255,255,255,.6)' /> </view> ) : ( <view style={[styles.bartit, gstyle.flex1, gstyle.flex_row, center ? styles.bartitcenter : null]}> { title ? <text style={[styles.barcell, {fontsize: 16, paddingleft: 0}]}>{title}</text> : null } </view> ) } {/* 右侧 */} <view style={[styles.barbtn, gstyle.flex_row]}> { !headerright ? null : headerright.map((item, index) => { return( <touchableopacity style={[styles.iconitem]} activeopacity={.5} key={index} onpress={()=>item.press ? item.press(this.state.searchinput) : null}> { item.type === 'iconfont' ? item.title : ( typeof item.title === 'string' ? <text style={item.style ? item.style : null}>{`${item.title}`}</text> : <image source={item.title} style={{width: 24, height: 24, resizemode: 'contain'}} /> ) } {/* 圆点 */} { item.badge ? <view style={[styles.iconbadge, gstyle.badge]}><text style={gstyle.badge_text}>{item.badge}</text></view> : null } { item.badgedot ? <view style={[styles.iconbadgedot, gstyle.badge_dot]}></view> : null } </touchableopacity> ) }) } </view> </view> </view> ) } goback = () => { this.props.navigation.goback() } }
// 创建底部tabbar const tabnavigator = createbottomtabnavigator( // tabbar路由(消息、通讯录、我) { index: { screen: index, navigationoptions: ({navigation}) => ({ tabbarlabel: '消息', tabbaricon: ({focused, tintcolor}) => ( <view> <text style={[ gstyle.iconfont, gstyle.fs_20, {color: (focused ? tintcolor : '#999')} ]}></text> <view style={[gstyle.badge, {position: 'absolute', top: -2, right: -15,}]}><text style={gstyle.badge_text}>12</text></view> </view> ) }) }, contact: { screen: contact, navigationoptions: { tabbarlabel: '通讯录', tabbaricon: ({focused, tintcolor}) => ( <view> <text style={[ gstyle.iconfont, gstyle.fs_20, {color: (focused ? tintcolor : '#999')} ]}></text> </view> ) } }, ucenter: { screen: ucenter, navigationoptions: { tabbarlabel: '我', tabbaricon: ({focused, tintcolor}) => ( <view> <text style={[ gstyle.iconfont, gstyle.fs_20, {color: (focused ? tintcolor : '#999')} ]}></text> <view style={[gstyle.badge_dot, {position: 'absolute', top: -2, right: -6,}]}></view> </view> ) } } }, // tabbar配置 { ... } )
◆ rn聊天页面功能模块
1、表情处理:原本是想着使用图片表情gif,可是在rn里面textinput文本框不能插入图片,只能通过定义一些特殊字符 :66: (:12 [奋斗] 解析表情,处理起来有些麻烦,而且图片多了影响性能,如是就改用emoj表情符。
facelist: [ { nodes: [ '
相关文章:
-
-
jQuery介绍 在说jQuery之前,先说一个概念吧,什么是JavaScript框架库,其实就是一个普通的js文件,里面封装了很多函数或者说封装了... [阅读全文]
-
DJI_Mobile_SDK是大疆为开发者提供的开发无人机应用的开发接口,可以实现对无人机飞行的控制,也可以利用无人机相机完成一些视觉任务。目前网上... [阅读全文]
-
### MVP简介 >MVP 全称:Model-View-Presenter ;MVP 是从经典的模式MVC演变而来,它们的基本思想有相通的[... [阅读全文]
-
答案: 版本管理!被问到这个问题的时候,你应该要表现得很兴奋,甚至告诉他们你是如何使用Git(或是其他你最喜欢的工具)追踪自己和奶奶的书信往来。我偏... [阅读全文]
-
文本属性 文本对齐 text-align规定元素中文本的水平对齐方式 属性值:none、center、left、right、justify。 文本颜... [阅读全文]
-
版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。
上一篇: Python类的成员
下一篇: 宝宝湿火吃什么好得快
发表评论