Need a little help with this referral code!

Here is what I got so far
I have a user input selection that has 2 choices and I need the referral code generated when they select yes how do i do so?

Code:
$w(“#createProfileButton”).onClick(() => {
let fname = $w(“#firstName”).value;
let lname = $w(“#lastName”).value;
let phone = $w(“#phoneNumber”).value;
let refCode = fname.slice(0, 2).toLocaleLowerCase() + phone.slice(phone.length - 4, phone.length) + lname.slice(0, 2).toLocaleLowerCase();

let toInsert = {

“firstName”: fname,

“lastName”: lname,

“emailAddress”: $w(“#emailAddress”).value,

“phone”: phone,

“username”: $w(“#userName”).value,

“referredBy”: $w(“#referredBy”).value,

“referralCode”: refCode

    }; 

    wixData.insert("profile", toInsert) 

        .then(() => { 

            wixLocation.to("/account/profile-page"); 

        }) 

        . **catch** ((err) => { 

//check error codes and see if taken or not.

let errorMsg = err;

// $w(“#error”).show();

        });

Save their details to your “profile” collection then run a query on the “profile” collection and search for the entry you have just made in your collection. There will be a number of different field keys for the entry such as username, phone, emailAddress. Get the value for the field key called _id. Then display this as the refCode on the page.

I recommend installing the Faker node package and using something like its UUID function.

whats the code to display this as the refCode on the page. Or how do I do that?

@2tellalie

Well you already have saved the user details to the database so then just run a query before you re-direct with wix-location something like this…

$w(“#emailAddress”).value = userEmail

wixData.query(“profile”) //change this to the name of your database

    .eq("emailAddress", userEmail)  //"email is the name of the field in your database, change as necessary" 

    .descending("_createdDate") 


   .find() 

    .then((results) => { 
        console.log(results); 

if (results.items.length > 0) {

let items = results.items;

let firstItem = items[0];

let refCode = firstItem._id

console.log(refCode);

//then just display the refCode on the page something like:

//$w(“#text1”).text = refCode

    } **else**  
    { 
        console.log("no matches found in database") 
    } 
    }) 

})

//note place a if/else condition at the start of your code so as the code only runs when the user //selects the yes checkbox i.e.

//if (($w(‘#yesQuestionCheckbox’).checked === true )) {
// run all your code here
//}

@mikemoynihan99 ty

@mikemoynihan99 in order to it that wouldn’t the yes selection have to be on a different form after they submit there information?

@mikemoynihan99 what if its a selection or a radio button?

@mikemoynihan99 how do i fix the error on the bottom of page I dont know what I did getting a error

import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;
import wixLocation from ‘wix-location’;
$w.onReady( function () {
if (($w(‘#work4us’).checked === true )) {
$w(‘#createProfileButton’).onClick( () => {
let emails = [];
let labels = [];

emails.push($w('#emailAddress').value); 

// register as member using form data
wixUsers.register($w(‘#emailAddress’).value, $w(‘#password’).value, {
“contactInfo”: {
“firstName”: $w(‘#firstName’).value,
“lastName”: $w(‘#lastName’).value,
“userName”: $w(‘#userName’).value,
“emailAddress”: $w(‘#emailAddress’).value,
“phoneNumber”: $w(‘#phoneNumber’).value,
“streetAddress”: $w(‘#streetAddress’).value,
“password”: $w(‘#password’).value,
“City”: $w(‘#City’).value,
“State”: $w(‘#State’).value,
“postalCode”: $w(‘#postalCode’).value,
“referred”: $w(‘#referred’).value,
“referredBy”: $w(‘#referredBy’).value,
“work4us”: $w(‘#work4us’).value,
“Level”: $w(‘#Level’).value,
“Rules”: $w(‘#Rules’).value,
“emails”: emails,
“labels”: labels,
}
});
$w(“#createProfileButton”).onClick(() => {
let fname = $w(“#firstName”).value;
let lname = $w(“#lastName”).value;
let phone = $w(“#phoneNumber”).value;
let refCode = fname.slice(0, 2).toLocaleLowerCase() + phone.slice(phone.length - 4, phone.length) + lname.slice(0, 2).toLocaleLowerCase();

let toInsert = {

“firstName”: fname,

“lastName”: lname,

“emailAddress”: $w(“#emailAddress”).value,

“phone”: phone,

“username”: $w(“#userName”).value,

“referredBy”: $w(“#referredBy”).value,

“referralCode”: refCode

    }; 

$w(“#work4us”).value = work4Us

wixData.query(“profile”) //change this to the name of your database

    .eq("work4us", work4Us)  //"email is the name of the field in your database, change as necessary" 

    .descending("_createdDate") 


  .find() 

    .then((results) => { 
        console.log(results); 

if (results.items.length > 0) {

let items = results.items;

let firstItem = items[0];

let refCode = firstItem._id

console.log(refCode);

wixData.insert(“profile”, toInsert)

        .then(() => { 

            wixLocation.to("/account/profile-page"); 

        }) 

        . **catch** ((err) => { 

//check error codes and see if taken or not.

let errorMsg = err;

// $w(“#error”).show();
})
}
}
);
});
});

@mikemoynihan99 how do i fix the close of the code?
Code:

import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;
import wixLocation from ‘wix-location’;
$w.onReady( function () {
$w(‘#createProfileButton’).onClick(() => {
let emails = [];
let labels = [];

                    emails.push($w('#emailAddress').value); 

// register as member using form data
wixUsers.register($w(‘#emailAddress’).value, $w(‘#password’).value, {
“contactInfo”: {
“firstName”: $w(‘#firstName’).value,
“lastName”: $w(‘#lastName’).value,
“userName”: $w(‘#userName’).value,
“emailAddress”: $w(‘#emailAddress’).value,
“phoneNumber”: $w(‘#phoneNumber’).value,
“streetAddress”: $w(‘#streetAddress’).value,
“password”: $w(‘#password’).value,
“City”: $w(‘#City’).value,
“State”: $w(‘#State’).value,
“postalCode”: $w(‘#postalCode’).value,
“referred”: $w(‘#referred’).value,
“referredBy”: $w(‘#referredBy’).value,
“Level”: $w(‘#Level’).value,
“Rules”: $w(‘#Rules’).value,
“emails”: emails,
“labels”: labels,
}
});
$w(“#createProfileButton”).onClick(() => {
let fname = $w(“#firstName”).value;
let lname = $w(“#lastName”).value;
let phone = $w(“#phoneNumber”).value;
let refCode = fname.slice(0, 2).toLocaleLowerCase() + phone.slice(phone.length - 4, phone.length) + lname.slice(0, 2).toLocaleLowerCase();

let toInsert = {

“firstName”: fname,

“lastName”: lname,

“emailAddress”: $w(“#emailAddress”).value,

“phone”: phone,

“username”: $w(“#userName”).value,

“referredBy”: $w(“#referredBy”).value,

“referralCode”: refCode

                        }; 

if (($w(‘#work4us’).checked === true )) {
$w(“#work4us”).value = work4Us

                            wixData.query("profile") //change this to the name of your database 

                                .eq("work4us", work4Us) //"email is the name of the field in your database, change as necessary" 

                                .descending("_createdDate") 

                                .find() 

                                .then((results) => { 
                                    console.log(results); 

if (results.items.length > 0) {

let items = results.items;

let firstItem = items[0];

let refCode = firstItem._id

                                        console.log(refCode); 

//then just display the refCode on the page something like:

//$w(“#text1”).text = refCode

                                    }  **else**  { 
                                        console.log("no matches found in database") 
                                    } 
                                }) 

                            wixData.insert("profile", toInsert) 

                                .then(() => { 

                                    wixLocation.to("/account/profile-page"); 

                                }) 

                                . **catch** ((err) => { 

//check error codes and see if taken or not.

let errorMsg = err;

// $w(“#error”).show();
})
}
})

@2tellalie

// $w(“#error”).show();
})
}
})
})
})
}
})

//also you can’t have two different values for " refCode "

@mikemoynihan99 what do you mean i want the refCode to be the first and last initals and phone number,
so what do I do?

@mikemoynihan99 or do I take out

“referralCode”: refCode

this is what I got:

Parsing Error:
// $w(“#error”).show();
})
}
}) //Getting a parsing error here why?
})
})
}
})

Whole Code:
import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;
import wixLocation from ‘wix-location’;
$w.onReady( function () {
$w(‘#createProfileButton’).onClick(() => {
let emails = [];
let labels = [];

    emails.push($w('#emailAddress').value); 

// register as member using form data
wixUsers.register($w(‘#emailAddress’).value, $w(‘#password’).value, {
“contactInfo”: {
“firstName”: $w(‘#firstName’).value,
“lastName”: $w(‘#lastName’).value,
“userName”: $w(‘#userName’).value,
“emailAddress”: $w(‘#emailAddress’).value,
“phoneNumber”: $w(‘#phoneNumber’).value,
“streetAddress”: $w(‘#streetAddress’).value,
“password”: $w(‘#password’).value,
“City”: $w(‘#City’).value,
“State”: $w(‘#State’).value,
“postalCode”: $w(‘#postalCode’).value,
“referred”: $w(‘#referred’).value,
“referredBy”: $w(‘#referredBy’).value,
“Level”: $w(‘#Level’).value,
“Rules”: $w(‘#Rules’).value,
“emails”: emails,
“labels”: labels,
}
});
$w(“#createProfileButton”).onClick(() => {
let fname = $w(“#firstName”).value;
let lname = $w(“#lastName”).value;
let phone = $w(“#phoneNumber”).value;
let refCode = fname.slice(0, 2).toLocaleLowerCase() + phone.slice(phone.length - 4, phone.length) + lname.slice(0, 2).toLocaleLowerCase();

let toInsert = {

“firstName”: fname,

“lastName”: lname,

“emailAddress”: $w(“#emailAddress”).value,

“phone”: phone,

“username”: $w(“#userName”).value,

“referredBy”: $w(“#referredBy”).value,

//“referralCode”: refCode

                    }; 

if (($w(‘#work4us’).checked === true )) {
$w(“#work4us”).value = work4Us

                            wixData.query("profile") //change this to the name of your database 

                                    .eq("work4us", work4Us) //"email is the name of the field in your database, change as necessary" 

                                    .descending("_createdDate") 

                                    .find() 

                                    .then((results) => { 
                                            console.log(results); 

if (results.items.length > 0) {

let items = results.items;

let firstItem = items[0];

let refCode = firstItem._id

                                                    console.log(refCode); 

//then just display the refCode on the page something like:

//$w(“#text1”).text = refCode

                                            }  **else**  { 
                                                    console.log("no matches found in database") 
                                            } 
                                    }) 

                    } 

            }) 

            . **catch** ((err) => { 

//check error codes and see if taken or not.

let errorMsg = err;

// $w(“#error”).show();
})
}
}) //Getting a parsing error here why?
})
})
}
})

Console Error:
public/pages/v0r3i.js: Unexpected token, expected , (100:0) 98 | }) 99 | } > 100 | }) | ^ 101 | }) 102 | }) 103 | }