ユーザーがボタンをタップしてアイテムを「保存」するか、「保存」を削除するかをアニメーションに切り替える保存ボタン (基本的には画面をブックマークするため) を作成しようとしています。ボタンをタップすると、「オン」アニメーションか「オフ」アニメーションかに関係なく、いずれかのアニメーションが呼び出されます。
残念ながら、iOS 以外に、React Native のボタンでアニメーションを切り替える方法に関するドキュメントは見つかりません。どんなアイデアでも大歓迎です。
コンポーネントは次のとおりです。
import React, { Component } from 'react';
import PropTypes from 'prop-types';
import {
StyleSheet,
TouchableOpacity
} from 'react-native';
import _ from 'lodash';
import { connect } from 'react-redux';
import { toggleSaved } from '../../actions';
import Animation from 'lottie-react-native';
import onAnimation from '../animations/heart_On.json';
import offAnimation from '../animations/heart_Off.json';
class SaveButton extends Component {
isSaved = () => {
let item = this.props.item;
if (_.find(this.props.saved, function(i) { return i.type == item.type && i.id == item.id; })) {
return true;
} else {
return false;
}
}
toggleSaved = (saved, item) => {
const { dispatch } = this.props;
dispatch(toggleSaved(saved, item));
this.animation.play();
}
render() {
return (
<TouchableOpacity
onPress={ () => this.toggleSaved(this.props.saved, this.props.item) }
>
<Animation
ref={ animation => {
this.animation = animation;
} }
style={ styles.icon }
loop={ false }
source={ this.isSaved() ? onAnimation: offAnimation }
/>
</TouchableOpacity>
);
}
}
SaveButton.propTypes = {
dispatch: PropTypes.func.isRequired,
saved: PropTypes.array.isRequired,
item: PropTypes.object.isRequired
};
const styles = StyleSheet.create({
icon: {
width: 30,
height: 30,
marginTop: 5,
marginRight: 10
}
});
function mapStateToProps(state) {
const { saved } = state.saved;
return {
saved
};
}
export default connect(mapStateToProps)(SaveButton);