mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
First contribution to gun!
This commit is contained in:
parent
ee91ae7612
commit
082a87db05
53
examples/vanilla/todo.html
Normal file
53
examples/vanilla/todo.html
Normal file
@ -0,0 +1,53 @@
|
||||
<html>
|
||||
|
||||
<body>
|
||||
<h1>Thoughts</h1>
|
||||
|
||||
<form id="form">
|
||||
<input id="input">
|
||||
<button>Add</button>
|
||||
</form>
|
||||
|
||||
<ul id="parentList"></ul>
|
||||
<!-- <script src="https://code.jquery.com/jquery-1.11.3.min.js"></script> -->
|
||||
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script>
|
||||
<link href="style.css" rel="stylesheet">
|
||||
<script>
|
||||
var gun = Gun().get('thoughts');
|
||||
document.getElementById('form').addEventListener('submit', function (e) {
|
||||
e.preventDefault(); // attaches event listener and prevent default form action
|
||||
var data = document.getElementById('input').value;
|
||||
gun.set(data);
|
||||
document.getElementById('input').value = "";
|
||||
});
|
||||
gun.map().on(function (thought, id) {
|
||||
var li = document.getElementById(id) || document.getElementById('parentList').insertAdjacentHTML('beforeend', '<li id =' + id + '> ' + thought + '</li>');
|
||||
var $ = function (selector) {
|
||||
return document.querySelector(selector);
|
||||
};
|
||||
// attach the event listener to the selected li items
|
||||
var links = $('#parentList').getElementsByTagName('li');
|
||||
for (var i = 0; i < links.length; i++) {
|
||||
var link = links[i];
|
||||
// console.log(link.innerHTML);
|
||||
link.ondblclick = dynamicEvent;
|
||||
if (link.innerHTML === " null" || link.innerHTML === " " || link.innerHTML === "") {
|
||||
link.style.display = "none";
|
||||
} else {
|
||||
link.style.display = "list-item";
|
||||
};
|
||||
};
|
||||
});
|
||||
function dynamicEvent() {
|
||||
gun.get(this.id).put(null);
|
||||
this.innerHTML = document.getElementById(this.id.innerHTML);
|
||||
if (this.innerHTML === " null" || this.innerHTML === " " || this.innerHTML === "") {
|
||||
this.style.display = "none";
|
||||
} else {
|
||||
this.style.display = "list-item";
|
||||
};
|
||||
};
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
x
Reference in New Issue
Block a user