Skip to content

Latest commit

 

History

History
169 lines (124 loc) · 7.58 KB

README_zh.md

File metadata and controls

169 lines (124 loc) · 7.58 KB

SimpleOne

高仿韩寒的one一个,基于react-native实现的客户端

先上目前的效果图:

image image image image image image image image image image image image image

如何运行

确保你的编译设备和运行设备在同一网络下,并且配置开发设置中的主机ip和端口号(Dev settings -> Debug server host & port for device)

  1. 进入项目根目录, 在命令行输入
  • npm install --save (下载依赖库)
  • react-native start
  1. 编译
  • 使用命令, gradle clean && gradle build
  • android studio gradle插件
  1. 选择你的运行设备, 安装app运行

api接口清单

这里对提取出的api接口做个记录,本人以学习为目的,希望读者也不要用于任何商业项目中,目前列出的接口是基于4.3.4的android版:

  1. one首页(第一页,date=0,更多页date=yyyy-MM-dd)

    http://v3.wufazhuce.com:8000/api/channel/one/{date}/0

  2. 专题列表(第一页,last_id=0,更多页last_id=上次请求结束的id)

    http://v3.wufazhuce.com:8000/api/banner/list/4?last_id={last_id}

  3. 横着的列表(所有人问所有人)

    http://v3.wufazhuce.com:8000/api/banner/list/5

  4. 近期热门作者

    http://v3.wufazhuce.com:8000/api/author/hot

  5. one首页菜单跳转

    • 问答 http://v3.wufazhuce.com:8000/api/comment/praiseandtime/question/{content_id} http://v3.wufazhuce.com:8000/api/question/htmlcontent/{content_id}

    • 连载 http://v3.wufazhuce.com:8000/api/comment/praiseandtime/serial/{content_id}/0 http://v3.wufazhuce.com:8000/api/serialcontent/htmlcontent/{content_id}

    • 音乐 http://v3.wufazhuce.com:8000/api/music/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/music/{content_id}/0

    • 电影 http://v3.wufazhuce.com:8000/api/comment/praiseandtime/movie/{content_id}/0 http://v3.wufazhuce.com:8000/api/movie/htmlcontent/{content_id}

    • 文章内容和作者 http://v3.wufazhuce.com:8000/api/essay/htmlcontent/{content_id} 文章评论 http://v3.wufazhuce.com:8000/api/comment/praiseandtime/essay/{content_id}/0

  6. 搜索模块分类跳转(category_id,0图文 3问答 1阅读 2连载 5影视 4音乐 8电台)

    http://v3.wufazhuce.com:8000/api/all/list/{category_id}

  7. one首页和专题列表的item点击阅读跳转详情和获取评论

  • 问答 http://v3.wufazhuce.com:8000/api/question/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/question/{content_id}

  • 连载 http://v3.wufazhuce.com:8000/api/serialcontent/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/serial/{content_id}/0

  • 音乐 http://v3.wufazhuce.com:8000/api/music/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/music/{content_id}/0

  • 电影 http://v3.wufazhuce.com:8000/api/movie/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/movie/{content_id}/0

  • 文章内容和作者 http://v3.wufazhuce.com:8000/api/essay/htmlcontent/{content_id}

  • 文章评论 http://v3.wufazhuce.com:8000/api/comment/praiseandtime/essay/{content_id}/0

  • 电台 http://v3.wufazhuce.com:8000/api/radio/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/radio/{content_id}/0

  • 专题 http://v3.wufazhuce.com:8000/api/topic/htmlcontent/{content_id} http://v3.wufazhuce.com:8000/api/comment/praiseandtime/topic/{content_id}/0

  1. 作者页 http://v3.wufazhuce.com:8000/api/author/works?page_num={page_num}&author_id={author_id}&version=4.3.4

功能模块:

根据android 4.3.4整理: 不打算支持登录后的评论, 分享, 点赞操作 一级界面:

欢迎界面,按星期几展示不同的欢迎界面

one分页,也是首页,展示今日列表(插图,one-story, 问答,文章,影视,音乐,电台),折叠菜单,可翻页查看以前的列表,每翻一页,查看前一天的内容,列表头部可以下拉刷新。

all分页,长列表展示,顶部banner,分类导航,专题列表(下拉到底部以后,可加载更多),列表头部可以下拉刷新。

me分页,个人资料页,未登录时,为登录界面入口和设置入口

二级界面:

设置界面

阅读界面

登录界面

分享界面

搜索界面

第三方平台分享,登录sdk对接

音乐、电台播放和控制面板

目前用到的技术:

以前大部分使用ES5,目前已全部改为ES6

react-native对原生组件进行了封装。

  1. 基本控件的使用 View,Text,Image,ScrollView,ListView,WebView,Clipboard,Platform,TouchableOpacity,ActivityIndicator,StatusBar,SliderBar。
  2. 动画的调用,Animated,Easing
  3. 计时器的使用,react-timer-mixin 改为ES6语法,该模块移除
  4. react-native调用原生模块(原生toast,调android第三方分享sdk)
  5. 底部导航栏TabNavigator,页面导航Navigator
  6. 子组件的封装,调用以及回调
  7. 父组件和子组件之间的参数传递
  8. 页面导航跳转时的参数传递,以及回调
  9. 封装scrollView,自定义下拉刷新
  10. 自定义折叠控件(one分页中的菜单)实现折叠动画
  11. 自定义banner控件,实现all分页中的广告栏展示
  12. 自定义加载更多控件,监听ScrollView的滑动,实现加载更多
  13. 自定义阅读界面loading时的帧动画展示
  14. 半透明界面,悬浮窗实现,自定义单选对话框实现
  15. 相册,拍照实现,react-native第三方库接入
  16. 调用基于Android原生封装的ui控件
  17. 在Android原生项目的基础上引入react-native框架进行混合开发
  18. 音乐专辑封面旋转动画(解决动画循环播放中的暂停与播放事件),通过直接修改属性setNativeProps实现帧动画提高性能
  19. 通过js代码注入测量页面高度,适配webview展示
  20. 加入mobx实现多界面同时刷新(2018.5.2更新)
  21. 利用高阶组件封装base组件,实现组件的公共逻辑(2018.5.2更新)
  22. 实现one分页标题(日期数字)切换动画 (2018.6.28更新)
  23. 通过js代码注入修改webview内的网页样式,实现夜间模式 (2018.7.18更新)
  24. 更新加载更多的提示状态 (2018.9.3更新)
  25. 修复scollview嵌套时的滑动冲突bug (2018.9.3更新)
  26. 加入视图展示状态的提示 (2018.9.17 更新)