美文网首页
React-native 文章点赞、取消赞

React-native 文章点赞、取消赞

作者: 随遇而安_2750 | 来源:发表于2017-05-09 19:27 被阅读672次

点赞操作:客户端只处理点赞的状态和取消点赞的状态,具体就是点赞后图标变红,下面的点赞数+1,取消点赞时,图标去红,点赞数-1,至于有多少个点赞数,每次请求数据的时候每次都要从后台拉取,具体就是发送post请求。

1.Storage接口的封装:
import React, { Component } from 'react';
import {
  AsyncStorage
} from 'react-native';

// 一般更新的操作其实就是对存储的操作进行了业务封装,并没有固定性,这里只处理“string”类型的key值。

export default class Storage extends Component {
    constructor(props){
        super(props);
        this.state = {}
    }

    // 增
    static save(key,value) {
        try {
            return AsyncStorage.setItem(key, JSON.stringify(value), ()=>{
                console.log("save success with key:value => ",key, value);
            });
        } catch(e) {
            console.log(e);
        }
    }

    // 删
    static remove(key) {
        try {
            return AsyncStorage.removeItem(key, ()=>{
                console.log("remove value for key: ",key);
            });
        } catch(e) {
            console.log(e);
        }
    }

    // 查
    static getValueForKey(key) {
        try {
            return AsyncStorage.getItem(key, ()=>{
                console.log("trying to get value with key :", key);
            }).then((value)=>{
                return JSON.parse(value);
            },
            (e) => {
                console.log(e);
            });
        } catch(e) {
            console.log(e);
        }
    }

    // 取消点赞
    static update(key,value){
        try {
            return AsyncStorage.getItem(key,()=>{

            }).then((item) => {
                let arry = JSON.parse(item);
                let index = arry.indexOf(value);

                if (index > -1) {
                  arry.splice(index, 1);
                }

                return AsyncStorage.setItem(key, JSON.stringify(arry), ()=>{
                    console.log("update success with key:value => ",key, arry);
                });
            })
        } catch(e){

        }
    }

    render() {
       return null;
    }
}


2.进入点赞页时要判断本篇文章是否已经点过赞
componentDidMount() {
    // 获取本地存储记录
    Storage.getValueForKey('user_like_history')
    .then(historyLikes => {
      this.historyLikes = historyLikes ? historyLikes : [];
      if(this.historyLikes.includes(this.props.title)){

        this.setState({
          liked:true
        })
        
      }
    }).catch(err => {
      console.log(err)
    })
  }

this.historyLikes是在constructor()方法中定义的:

constructor(props){
    super(props);
    this.state = {
      liked:false,
      // 点赞数,由父组件传过来
      likesNum:this.props.likes
    }
    // 存储点赞数据
    this.historyLikes = [];

  }
3.点赞和取消赞的操作
likeArticle(title){
    if(this.state.liked){
      this.setState({
        liked:false,
        likesNum:this.state.likesNum-1
      })
      // 取消点赞
      Storage.update('user_like_history',title);

    }else{
      // 点赞
      this.historyLikes.push(title);

      Storage.save('user_like_history',this.historyLikes);

      this.setState({
        liked:true,
        likesNum:this.state.likesNum+1
      });
    }

  }

这样基本实现了点赞、取消赞的功能,补充一下,点赞图标高亮切换的时候,兼容性写法:

const img_arr = [require('../img/like_gray.png'),require('../img/like_red.png')];

...

<Image source={this.state.liked ? img_arr[1] : img_arr[0]} style={{width:40,height:40}} />

效果图:

like.gif

相关文章

  • React-native 文章点赞、取消赞

    点赞操作:客户端只处理点赞的状态和取消点赞的状态,具体就是点赞后图标变红,下面的点赞数+1,取消点赞时,图标去红,...

  • Swift---点赞/取消点赞头像动画

    需求: 点赞/取消点赞后,头像要有移动动画。 思路:点赞:已有头像右移,新增头像渐变出现 取消点赞: 个人已点赞可...

  • Ins取消点赞

    Ins取消点赞 最近Instagram宣布取消点赞功能,不管是1个赞还是1000000个赞,统统都是others。...

  • 一点关于List<T>和LinkedList<

    实现一个点赞和取消赞的功能,要求接口返回点赞或者取消赞成功后更新UI界面,且自己的头像置于点赞行最前。接口给的点赞...

  • 再现vue组件

    点赞的组件 点一次就是点赞,再点一次就是取消点赞,不能多次点赞. 全局组件 -------------------...

  • 简书收获喜欢数,可以减小

    简黛玉是以前的一个工作号,没有文章更新,发现收获喜欢数可以减少,意外发现。点赞有消息,取消赞无消息。点赞耗能量,取...

  • 帖子详情接口设计与实现

    帖子详情涉及内容详情/阅读数/评论数/点赞数/评论列表显示、点赞/取消赞、判断是否点赞、评论、更新阅读数/评论数/...

  • 点赞动效:缩放和抖动结合

    先上示例图:点赞动画.gif 直接上代码: 点赞动效 取消点赞动效 微博的点赞效果很是给力,最近有需求让实现那种效...

  • 小赞热度值上千了,我还是要努力写文

    刚才阅读文章的时候,点一个小赞,热度1034,把我吓了一跳,以为点错了。赶紧取消之后重新点赞,没错,能量就是103...

  • 点赞效果初步整理

    点赞效果初步整理 整理了下点赞效果,记录一下 Android view之点赞容易,取消不易 一步一步教你实现Per...

网友评论

      本文标题:React-native 文章点赞、取消赞

      本文链接:https://www.haomeiwen.com/subject/haeitxtx.html