私はのリストを持っていますimage
:audio
-
postArray: [
{ "id": 1, "media_type": "image", "media_url": "https://homepages.cae.wisc.edu/~ece533/images/airplane.png", "title": "image1" },
{ "id": 2, "media_type": "audio", "media_url": "https://www.learningcontainer.com/wp-content/uploads/2020/02/Kalimba.mp3", "title": "audio1" },
{ "id": 3, "media_type": "image", "media_url": "https://homepages.cae.wisc.edu/~ece533/images/airplane.png", "title": "image1" },
{ "id": 4, "media_type": "audio", "media_url": "https://www.learningcontainer.com/wp-content/uploads/2020/02/Kalimba.mp3", "title": "audio1" },
]
そして私はreact-native-track-playerを使用しています
オーディオ コンポーネントにフォーカスがある場合は再生する必要があります。私が今まで試したこと:-
useEffect(() => {
audioSetup()
}, [])
async function audioSetup() {
await TrackPlayer.setupPlayer({});
await TrackPlayer.updateOptions({
stopWithApp: true,
capabilities: [
TrackPlayer.CAPABILITY_PLAY,
TrackPlayer.CAPABILITY_PAUSE,
TrackPlayer.CAPABILITY_SKIP_TO_NEXT,
TrackPlayer.CAPABILITY_SKIP_TO_PREVIOUS,
TrackPlayer.CAPABILITY_STOP
],
compactCapabilities: [
TrackPlayer.CAPABILITY_PLAY,
TrackPlayer.CAPABILITY_PAUSE
]
});
}
私のレンダリング部分FlatList
:-
const renderPost = ({ item, index }) => {
if (item.media_type === "image") {
return (
<View style={{
marginBottom: constants.vh(16),
marginTop: constants.vh(16),
}}>
<ImagePost
backgroundImage={item.media_url}
profileImage={props.auth.userRegistered.profileImage ? props.auth.userRegistered.profileImage : "https://homepages.cae.wisc.edu/~ece533/images/girl.png"}
firstName={props.auth.userRegistered.firstName}
lastName={props.auth.userRegistered.lastName}
likeCount={649823}
commentCount={45423}
shareCount={46312}
isLiked={true}
musicTitle={item.title}
description={item.description}
/>
</View>
)
}
if (item.media_type === "audio"){
return (
<View style={{
marginBottom: constants.vh(16),
marginTop: constants.vh(16),
}}>
<AudioPost
backgroundImage={item.media_url}
profileImage={props.auth.userRegistered.profileImage ? props.auth.userRegistered.profileImage : "https://homepages.cae.wisc.edu/~ece533/images/girl.png"}
firstName={props.auth.userRegistered.firstName}
lastName={props.auth.userRegistered.lastName}
likeCount={649823}
commentCount={45423}
shareCount={46312}
isLiked={true}
musicTitle={item.title}
playedTime={10}
totalTime={100}
description={item.description}
/>
</View>
)
}
そして私のFlatList
ものは次のとおりです:-
const onViewableItemsChanges = async (info) => {
await TrackPlayer.reset();
console.log("item view able changed", info);
if (info.changed[0].item.media_type === "audio") {
audioSetup()
await TrackPlayer.add({
"id": "0",
"url": info.changed[0].item.media_url,
"artist": "author",
"title": "song titile"
});
await TrackPlayer.play();
}
}
<FlatList
data={state.postArray}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
renderItem={renderPost}
onViewableItemsChanged={onViewableItemsChanges}
viewabilityConfig={{ viewAreaCoveragePercentThreshold: 50 }}
keyExtractor={(item, index) => index.toString()}
/>
それは私にエラーを与えます:-Changing onViewableItemsChanged on the fly is not supported