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-fan

v0.1.8

Published

facebook audience network sdk mudule for react-native

Downloads

12

Readme

Facebook Audience Network(전면 광고)

페이스북 오디언스 네트워크 API의 라이프사이클은 광고 초기화(initialize) → 광고 로드(loadAd) → 광고가 정상적으로 로드 되었는지 확인(isLoad) → 광고 재생(showAd) → 다시 광고 로드(loadAd) 식으로 반복된다. showAd와 loadAd는 비동기로 호출되기 때문에 loadAd 호출 이후 비동기 대기(await)한 이후 showAd를 호출하거나, isLoad로 광고가 로드되었는지 확인한 이후 로드가 정상적으로 되었을때만 showAd를 호출하는 식의 기법이 필요하다

Example

import * as React from 'react';
import { StyleSheet, View, Text, Button } from 'react-native';
import Fan from 'react-native-fan';

export default function App() {

  const showAd = () => {
    if(Fan.isLoad())
    {
       Fan.showAd().then(result=>{
            console.log(result)
            Fan.loadAd()
       })
    }else
    {
      console.log("not loaded")
    }
  }

  React.useEffect(() => {
    Fan.initialized('737014050218983_737022993551422');
    Fan.loadAd()
  }, []);

  return (
    <View style={styles.container}>
      <Button onPress={showAd} title={"test"} />
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    alignItems: 'center',
    justifyContent: 'center',
  },
});

Reference

methods

initialized(placementId : String) : void

광고 초기화. placementid를 통해 광고를 초기화 시킨다

isLoad() : boolean

광고가 로드되었는지 확인하는 함수

loadAd() : Promise<boolean>

광고를 로드하는 함수. 정상적으로 로드되었을때 비동기로 true를 반환한다. 오류 발생시에는 catch를 통해 오류 내용을 확인할 수 있다.

showAd() : Promise<boolean>

광고를 실제로 보여주는 함수. 비동기로 사용자가 광고를 클릭했는지 여부를 확인한다. 광고가 로드되지 않은 상태에서 호출시 에러가 발생하므로 반드시 광고가 로드되었는지 확인 후 호출하여아 한다