npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

react-native-surfinn-popup

v0.0.8

Published

React Native Surfinn Popup Component

Downloads

3

Readme

react-native-surfinn-popup

surfinn-ui의 팝업 컴포넌트로 팝업의 기본 기능만을 제공하며, 뷰는 완전히 사용자 설정으로 사용할 수 있습니다. 모든 팝업은 <PopupProvider></PopupProvider>가 선언된 위치에 표시됩니다.
팝업은 필요한 곳에서 <Popup ref={popupRef}></Popup>을 사용하여 정의합니다. refremove, open, close 메소드를 포함하는 객체입니다. ref의 메소드로 팝업을 조종합니다.

<PopupProvider/>은 가능하면 네비게이션의 상위 노드로 설정하기를 권장합니다. 모든 PopupPopupProvider가 정의된 위치에 표시됩니다. React Navigation의 하위 노드로 PopupProvider를 추가하면 스크린의 헤더가 팝업의 백드롭에 가려지지 않습니다.

Popup은 오픈한 순서대로 쌓이고 가장 마지막에 오픈한 팝업이 가장 위에 표시됩니다. ref.current.open()를 사용하면 이미 열린 팝업을 맨앞으로 불러올 수 있습니다. open()을 여러번 호출해도 같은 팝업을 중복 생성하지 않습니다.

팝업의 모양이나 기능은 온전히 사용자의 몫입니다. 원하는 모양과 필요한 기능으로 팝업을 작성하고 <Popup></Popup>으로 감싸면 단순 알림을 위한 팝업, 컨펌 또는 좀더 복잡한 모달로 사용할 수 있습니다.

주의 - ref.current.remove()를 호출하면 그 팝업은 다시 오픈할 수 없습니다. 팝업은 언마운트될 때 삭제됩니다.

설치

npm

npm install --save react-native-surfinn-popup

yarn

yarn add react-native-surfinn-popup

react-native-reanimated를 사용하고 있습니다. 설치는 여기를 참조하세요.

사용방법

import {PopupProvider, Popup, TPopupRef} from 'react-native-surfinn-popup';

const App = () => {
  const popupRef = React.useRef<TPopupRef>(null);

  const openPopup = () => {
    popupRef.current?.open();
  };

  return (
    <PopupProvider>
      <Button title="Open Popup" onPress={openPopup} />

      <Popup ref={popupRef} backdrop backdropOpacity={0.3}>
        <View style={styles.popup}>
          <Text style={styles.popupTitle}>Popup</Text>
          <Text style={styles.popupContent}>Popup Contents</Text>
          <Button title="Close" onPress={() => popupRef.current?.close()} />
        </View>
      </Popup>
    </PopupProvider>
  );
};

const styles = StyleSheet.create({
  popup: {
    backgroundColor: '#ffffff',
    shadowColor: '#000000',
    shadowOffset: {width: 5, height: 5},
    shadowOpacity: 0.5,
    borderRadius: 10,
    height: 200,
    width: '80%',
    padding: 24,
    alignContent: 'center',
    justifyContent: 'space-between',
  },
  popupTitle: {
    fontSize: 24,
    fontWeight: '600',
    textAlign: 'center',
  },
  popupContent: {
    fontSize: 18,
    fontWeight: '400',
    textAlign: 'center',
  },
});

속성

| 이름 | 타입 | 기본값 | 설명 | | ------------------- | ------- | ----------- | ------------------ | | backdrop | boolean | false | 백드롭 보임 / 숨김 | | backdropColor | string | '#000000' | 백드롭 색상 | | backdropOpacity | string | 0.2 | 백드롭 투명도 |

소스

https://github.com/surfinn-ui/popup.git