Framer 에서 Global store 만들기.

Framer 에서 Global store 만들기.


import type { ComponentType } from "react"
import { createStore } from "https://framer.com/m/framer/store.js@^1.0.0"

// Learn more: https://www.framer.com/docs/guides/overrides/

const useStore = createStore({
    count: 2,
})

export function withCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()
        let count = store.count.toString()
        return <Component {...props} text={count} />
    }
}

export function withIncrementCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()

        return (
            <Component
                {...props}
                onClick={() => setStore({ count: store.count + 1 })}
            />
        )
    }
}

export function withDecrementCount(Component): ComponentType {
    return (props) => {
        const [store, setStore] = useStore()

        return (
            <Component
                {...props}
                variant={store.count === 0 ? "Minus - Disabled" : "Minus"}
                onClick={() => {
                    if (store.count !== 0) {
                        setStore({ count: store.count - 1 })
                    } else {
                        return
                    }
                }}
            />
        )
    }
}

Angdry

서비스개발팀 / 리드

같은 카테고리의 글

데이터로 성장할 수 있는 시간, 놓치지 마세요.

(주)다우기술 대표자 김윤덕 사업자등록번호 220-81-02810 통신판매신고번호 제 2023-성남수정-1138호

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS) 주소 (13453) 경기도 성남시 수정구 금토로 69 다우디지털스퀘어 4층

전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


©DAOU TECH Inc. All rights reserved. Some Image of by jcomp and Freepik

데이터로 성장할 수 있는 시간, 놓치지 마세요.

(주)다우기술 대표자 김윤덕 사업자등록번호 220-81-02810 통신판매신고번호 제 2023-성남수정-1138호

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS) 주소 (13453) 경기도 성남시 수정구 금토로 69 다우디지털스퀘어 4층

전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


©DAOU TECH Inc. All rights reserved. Some Image of by jcomp and Freepik

데이터로 성장할 수 있는 시간,
놓치지 마세요.

통신판매신고번호 제 2024-서울성동-2089 호

(주)다우기술 대표자 김윤덕 사업자등록번호 220-81-02810

통신판매신고번호 제 2023-성남수정-1138호

사업자정보 확인

호스팅제공자정보 아마존웹서비스(AWS)

주소 (13453) 경기도 성남시 수정구 금토로 69 다우디지털스퀘어 4층

전화번호 02-6925-6636 이메일 mkt@wisetracker.co.kr


©DAOU TECH Inc. All rights reserved. Some Image of by jcomp and Freepik