-
Notifications
You must be signed in to change notification settings - Fork 0
/
dapp.js
39 lines (31 loc) · 1014 Bytes
/
dapp.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
var gun = Gun(['http://localhost:8765/gun', 'https://gunjs.herokuapp.com/gun', 'ssh -p 14811 [email protected]']);
//Instantiate a user chain off of Gun
var user = gun.user();
//Create a user in Gun
$('#up').on('click', function (event) {
user.create($('#alias').val(), $('#pass').val());
console.log($('#alias').val());
});
//Authorize/Log the user in Gun
$('#sign').on('submit', function (event) {
event.preventDefault();
console.log($('#alias').val());
user.auth($('#alias').val(), $('#pass').val());
});
//Add a task to Gun and Sync
$('#said').on('submit', function (event) {
event.preventDefault();
if (!user.is) { return }
user.get('said').set($('#say').val());
$('#say').val('');
})
//Update the UI
function UI(say, id) {
var li = $('#' + id).get(0) || $('<li>').attr('id', id).appendTo('ul');
$(li).text(say);
}
//Change the UI upon loggin in or out the APP
gun.on('auth', function () {
$('#sign').hide();
user.get('said').map().once(UI);
});