React Native Popup實現示例
React Native 官方提供瞭 Modal
組件,但 Modal
是屬於全屏的彈出層,當 Modal
顯示時,操作區域隻有 Modal
裡的元素,而且焦點會被 Modal
劫持。雖然移動端不常見,但有些場景還是希望可以用輕量級一點的 Popup
。
在 React Native 裡,元素的層級是不可以被穿透的,子元素無論如何都不能遮擋父元素。所以選擇瞭在頂層添加 Popup
,設置絕對定位,顯示時根據指定元素來動態調整 Popup
的位置的方案。
具體實現
Popup
會有顯示或隱藏兩種狀態,使用一個 state
來控制。
const Component = () => { const [visible, setVisible] = useState(false); return ( <> {visible && <></>} </> ); };
Popup
的 屬於視圖類組件,UI 結構包括:
- 一個作為容器的
View
,由於 iOS 有劉海,所以在 iOS 上需要使用SafeAreaView
來避免被劉海遮擋。同時添加一個點擊事件監聽當點擊時關閉Popup
。 - 一個指向目標對象的三角形。
- 一個包裹內容的
View
。
由於 Popup
的位置和內容是動態的,所以需要兩個 state
存儲相關數據。
- 一個存儲位置相關的 CSS。
- 一個存儲動態內容。
const Component = ({ style, ...other }) => { const [visible, setVisible] = useState(false); const [popupStyle, setPopupStyle] = useState({}); const [content, setContent] = useState(null); const onPress = useCallback(() => { setVisible(false); }, []); return ( <> {visible && createElement( Platform.OS === 'ios' ? SafeAreaView : View, { style: { ...styles.popup, ...popupStyle, }, }, <TouchableOpacity onPress={onPress}> <View style={styles.triangle} /> <View style={{ ...styles.content, ...style }} {...other}> {content} </View> </TouchableOpacity>, )} </> ); }; const styles = StyleSheet.create({ popup: { position: 'absolute', zIndex: 99, shadowColor: '#333', shadowOpacity: 0.12, shadowOffset: { width: 2 }, borderRadius: 4, }, triangle: { width: 0, height: 0, marginLeft: 12, borderLeftWidth: 8, borderLeftColor: 'transparent', borderRightWidth: 8, borderRightColor: 'transparent', borderBottomWidth: 8, borderBottomColor: 'white', }, content: { backgroundColor: 'white', }, });
因為是全局的 Popup
,所以選擇瞭一個全局變量來提供 Popup
相關的操作方法。
如果全局
Popup
不適用,可以改成在需要時插入Popup
並使用ref
來提供操作方法。
目標元素,動態內容和一些相關的可選配置都是在調用 show
方法時通過參數傳入的,
useEffect(() => { global.$popup = { show: (triggerRef, render, options = {}) => { const { x: offsetX = 0, y: offsetY = 0 } = options.offset || {}; triggerRef.current.measure((x, y, width, height, left, top) => { setPopupStyle({ top: top + height + offsetY, left: left + offsetX, }); setContent(render()); setVisible(true); }); }, hide: () => { setVisible(false); }, }; }, []);
完整代碼
import React, { createElement, forwardRef, useState, useEffect, useCallback, } from 'react'; import PropTypes from 'prop-types'; import { View, SafeAreaView, Platform, TouchableOpacity, StyleSheet, } from 'react-native'; const Component = ({ style, ...other }, ref) => { const [visible, setVisible] = useState(false); const [popupStyle, setPopupStyle] = useState({}); const [content, setContent] = useState(null); const onPress = useCallback(() => { setVisible(false); }, []); useEffect(() => { global.$popup = { show: (triggerRef, render, options = {}) => { const { x: offsetX = 0, y: offsetY = 0 } = options.offset || {}; triggerRef.current.measure((x, y, width, height, left, top) => { setPopupStyle({ top: top + height + offsetY, left: left + offsetX, }); setContent(render()); setVisible(true); }); }, hide: () => { setVisible(false); }, }; }, []); return ( <> {visible && createElement( Platform.OS === 'ios' ? SafeAreaView : View, { style: { ...styles.popup, ...popupStyle, }, }, <TouchableOpacity onPress={onPress}> <View style={styles.triangle} /> <View style={{ ...styles.content, ...style }} {...other}> {content} </View> </TouchableOpacity>, )} </> ); }; Component.displayName = 'Popup'; Component.prototype = {}; const styles = StyleSheet.create({ popup: { position: 'absolute', zIndex: 99, shadowColor: '#333', shadowOpacity: 0.12, shadowOffset: { width: 2 }, borderRadius: 4, }, triangle: { width: 0, height: 0, marginLeft: 12, borderLeftWidth: 8, borderLeftColor: 'transparent', borderRightWidth: 8, borderRightColor: 'transparent', borderBottomWidth: 8, borderBottomColor: 'white', }, content: { backgroundColor: 'white', }, }); export default forwardRef(Component);
使用方法
-
在入口文件頁面內容的末尾插入
Popup
元素。// App.jsx import Popup from './Popup'; const App = () => { return ( <> ... <Popup /> </> ); };
-
使用全局變量控制。
// 顯示 $popup.show(); // 隱藏 $popup.hide();
到此這篇關於React Native Popup實現示例的文章就介紹到這瞭,更多相關React Native Popup內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- react-native彈窗封裝的方法
- 用React Native制作一個簡單的遊戲引擎
- ReactNative支付密碼輸入框實現詳解
- 適用於React Native 旋轉木馬應用程序介紹
- React Native 中實現確認碼組件示例詳解