-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreward.js
244 lines (167 loc) · 7.67 KB
/
reward.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
const backBtn = document.querySelector("#fi");
const notifyBtn = document.querySelector("#fi-bell");
backBtn.addEventListener("click", function goBack() {
window.history.back();
})
notifyBtn.addEventListener("click", function notifyPage() {
window.location.href = 'notification.html';
})
const inviteLink = document.getElementById('invite-link');
const inviteCode = document.getElementById('invite-code');
const copyLink = document.getElementById('copy-link');
const copyCode = document.getElementById('copy-code');
inviteLink.value = 'https://primetek-org.netlify.app/signup?id=' + localStorage.getItem('userphone');
inviteLink.readOnly = true;
inviteCode.value = localStorage.getItem('userphone');
inviteCode.readOnly = true;
function remCopy1() {
copyLink.classList.remove('active');
copyLink.innerHTML = 'Copy';
}
function remCopy2() {
copyCode.classList.remove('active');
copyCode.innerHTML = 'Copy';
}
copyLink.addEventListener('click', function(){
copyLink.classList.add('active');
inviteLink.select();
navigator.clipboard.writeText(inviteLink.value);
copyLink.innerHTML = 'Copied!';
setTimeout(remCopy1, 1000);
iziToast.success({
timeout: 3000,
title: 'Success!',
message: 'Invite Link Copied successfully!',
});
});
copyCode.addEventListener('click', function(){
copyCode.classList.add('active');
inviteCode.select();
navigator.clipboard.writeText(inviteCode.value);
copyCode.innerHTML = 'Copied!';
setTimeout(remCopy2, 1000);
iziToast.success({
timeout: 3000,
title: 'Success!',
message: 'Invite Code Copied successfully!',
});
});
// code to add 30 Naira to client reward balance
const claimBtn = document.getElementById('claim-reward')
var rewardBalance = document.getElementById('rewardBal');
rewardBalance.readOnly = true;
let initialBal = 200;
var checkInBonus = localStorage.getItem('checkInBonus');
rewardLoop = () => {
if (localStorage.getItem('currentRewardBal') == null) {
rewardBalance.value = initialBal;
localStorage.setItem('currentRewardBal', rewardBalance.value);
}
else if (checkInBonus) {
rewardBalvalue = JSON.parse(localStorage.getItem('currentRewardBal')) + JSON.parse(checkInBonus);
localStorage.setItem('currentRewardBal', rewardBalvalue);
localStorage.removeItem('checkInBonus');
}
else {
rewardBalance.value = JSON.parse(localStorage.getItem('currentRewardBal'));
}
}
setInterval(rewardLoop, 100);
//rewardBalance.value = initialBal;
var totalInvites = document.getElementById('inv');
totalInvites.readOnly = true;
let initialInvites = 0;
inviteLoop = () => {
if (localStorage.getItem('currentInvites') == null) {
totalInvites.value = initialInvites;
localStorage.setItem('currentInvites', totalInvites.value);
}
else {
totalInvites.value = JSON.parse(localStorage.getItem('currentInvites'));
}
}
setInterval(inviteLoop, 100);
// var checkInDate = document.getElementById('date').innerHTML = date;
//localStorage.removeItem('claimed');
//localStorage.removeItem('checkInBonus');
claimBtn.addEventListener('click',
function checkIn() {
var lastCheckinDate = localStorage.getItem("lastCheckinDate");
var checkInBonus = 30;
var reward = 30;
var threshold = 1000 * 60 * 60 * 24; // 24 hours in milliseconds
let currentDate = Date.now();
var reTime = (threshold - (currentDate - lastCheckinDate)) / (1000 * 3600);
var hoursLeftToCheckin = Math.round(reTime);
if (currentDate - lastCheckinDate < threshold) {
iziToast.error({
timeout: 3000,
title: 'Error!',
message: "You can't check in again yet. Please come back in " + hoursLeftToCheckin + " hours time!",
});
//alert('Please check again in ' + hoursLeftToCheckin + ' hours');
// Not enough time has passed since the last reward
}
else {
localStorage.setItem('checkInBonus', checkInBonus);
localStorage.setItem('reward', reward);
localStorage.setItem("lastCheckinDate", currentDate);
iziToast.success({
timeout: 3000,
title: 'Congrats!',
message: "You've earned N" + checkInBonus + "!",
});
var today = new Date();
var date = today.getFullYear() + '/' + (today.getMonth() + 1) + '/' + today.getDate();
var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
var dateTime = date + ' ' + time;
var checkInDate = dateTime;
localStorage.setItem('checkInDate', checkInDate);
document.getElementById('date').innerHTML = dateTime;
}
})
document.getElementById('date').innerHTML = localStorage.getItem('checkInDate');
/*function addBonus(){
var date = new Date();
var checkInHour = date.getHours();
let checkInBonus = 30;
var elapsedHours = checkInHour - JSON.parse(localStorage.getItem('checkInHour'));
//document.getElementById('daily-checkin').innerHTML = elapsedHours;
if(localStorage.getItem('claimed') && elapsedHours < 12){
//localStorage.removeItem('claimed');
claimBtn.innerHTML = 'Claimed!';
claimBtn.classList.add('active');
iziToast.error({
timeout: 3000,
title: 'Error!',
message: 'You have checked-in already!',
});
}
else if (localStorage.getItem('claimed') && elapsedHours >= 12) {
localStorage.removeItem('claimed');
}
else {
claimBtn.innerHTML = 'Claimed!';
claimBtn.classList.add('active');
localStorage.setItem('checkInHour', checkInHour);
var today = new Date();
var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
var dateTime = date+' '+time;
var checkInDate = dateTime;
localStorage.setItem('checkInDate', checkInDate);
document.getElementById('date').innerHTML = dateTime;
localStorage.setItem('checkInBonus', checkInBonus);
iziToast.success({
timeout: 3000,
title: 'Congrats!',
message: 'You have received ₦30 CheckIn reward!',
});
localStorage.setItem('claimed', claimBtn.value);
}
//block of code to add #30 to reward balance
});
document.getElementById('date').innerHTML = localStorage.getItem('checkInDate');
close.addEventListener('click', function(){
bonusCard.style.display = 'none'
})*/