Need help to writh wishlist code!!

@photo

https://www.wix.com/corvid/example/wishlist

https://codequeen.wixsite.com/wishlist
THE WISH LIST CODE
import wixUsers from ‘wix-users’;
import wixData from ‘wix-data’;

$w.onReady( () => {
if(wixUsers.currentUser.loggedIn) {
$w(“#addtowishlist”).label = “ADD TO WISH LIST”;
}
else {
$w(“#addtowishlist”).label = “SIGN IN TO SAVE”;
}
} );

export function addtowishlist_onclick() {
wixData.insert(‘wishlist’,
{wishlist_item: $w(‘#Itemdetails’).getCurrentItem()._id}),
$w(‘#success’).show(), //These are extra lines in case you have buttons or other
$w(‘#addtowishlist’).hide(), //These are extra lines in case you have buttons or other
$w(‘#viewlist’).show(); //These are extra lines in case you have buttons or other
}