مثال زیر نمونهی پیادهسازی شدهی درگاه پرداخت پِیآیآر توسط کتابخانهی کامپوزر میباشد و بدون درنظر گرفتن مسائل امنیتی و پرهیز از تراکنشهای تکراری در نظر گرفته شده است. لطفاً در پیاده سازی درگاه در پروژهی خود، نکات امنیتی را رعایت فرمائید.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function useToast(defaultPosition = 'bottomStart') { | |
const s = useSnackbar(); | |
const pos = (vertical, horizontal) => ({vertical, horizontal}); | |
const allPlaces = { | |
topStart : pos('top', 'left'), | |
topCenter : pos('top', 'center'), | |
topEnd : pos('top', 'right'), | |
bottomStart : pos('bottom', 'left'), | |
bottomCenter: pos('bottom', 'center'), | |
bottomEnd : pos('bottom', 'right'), |