Skip to content

Instantly share code, notes, and snippets.

View shanwixcode's full-sized avatar
🏠
Working from home

Shan shanwixcode

🏠
Working from home
View GitHub Profile
@shanwixcode
shanwixcode / Corvid & Wix Gallery
Last active August 22, 2019 16:21
Code to load data into Wix Gallery using a Dataset
@shanwixcode
shanwixcode / Google & Outlook Calendar Event
Created August 31, 2019 16:20
Save The Date For Google & Outlook Calendar
//Google Calendar Event
https://calendar.google.com/calendar/r/eventedit?text=The+Event+Name&dates=20191005T100000/20191005T220000&details=The+event's+day+session+is+from+10+AM+to+3+PM.+The+event's+evening+session+is+from+5+PM+to+10+PM.&location=The+Rooftop+at+Pier+17+89+South+Street+NY,+NY+10038+USA&ctz=America/New_York
//Outlook Calendar Event
https://outlook.live.com/owa/?path=/calendar/action/compose&rru=addevent&startdt=20191005T043000&enddt=20191005T163000&subject=The+Event+Name&body=The+event's+day+session+is+from+10+AM+to+3+PM.+The+event's+evening+session+is+from+5+PM+to+10+PM.&location=The+Rooftop+at+Pier+17+89+South+Street+NY,+NY+10038+USA
@shanwixcode
shanwixcode / stripe.js
Created January 20, 2020 18:22
Stripe Tutorial - Dude Lemon
//stripe.js
import {fetch} from 'wix-fetch';
const apiKey = "pk_test_xxxxxx"; //Stripe Public API Key
export async function stripeToken(cardObject) {
let values = encodeCard(cardObject);
import {ok, created, serverError, response} from 'wix-http-functions';
import {capturePayment} from 'backend/payPal.jsw';
import wixData from 'wix-data';
export function post_payPal(request) {
let options = {
"headers": {
"Content-Type": "application/json"
}
};
function signUpMember(response, cus, lastFour, brand, sourceData, referrer, donationValue) {
let email = $w("#email").value.toLowerCase();
let password = $w("#password").value;
let fname = $w("#fName").value;
let lname = $w("#lName").value;
registration(email, password, fname, lname)
.then( (res) => {
console.log(res);
if(res.status === 'Active') {
wixUsers.applySessionToken(res.sessionToken)
import wixData from 'wix-data';
import wixUsers from 'wix-users';
export function dataset2_ready() {
$w("#forex").value = 'USD';
}
export function repeater1_itemReady($item, itemData, index) {
$item("#price").text = "USD " + itemData.price;
}
import wixUsers from 'wix-users';
import wixData from 'wix-data';
import {createMyPayment} from 'backend/wixPay.jsw';
import wixPay from 'wix-pay';
$w.onReady(function () {
let user = wixUsers.currentUser.id;
wixData.query('cart')
.eq('userId', user)
.find()
import wixPay from 'wix-pay-backend';
export function createMyPayment(products, amt, cry) {
return wixPay.createPayment({
items: products,
amount: amt,
currency: cry
});
}
import {fetch} from 'wix-fetch';
export async function getAccess() {
const response = await fetch("https://api.sandbox.paypal.com/v1/oauth2/token", {
method: 'post',
headers: {
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": "Basic " + "" //ENTER ENCODED STRING
},
body: "grant_type=client_credentials"
import {getAccess, order} from 'backend/payPal.jsw';
import wixLocation from 'wix-location';
$w.onReady(function () {
});
export function checkout_click(event) {
getAccess()
.then( (tok) => {