mirror of
https://github.com/TangentFoxy/memex.git
synced 2024-11-22 04:54:23 +00:00
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
function Main()
|
|
{
|
|
this.db = null;
|
|
this.view = null;
|
|
this.add = null;
|
|
this.queryPrev = '';
|
|
this.queryCur = '';
|
|
|
|
this.install = function()
|
|
{
|
|
this.db = new Wrap(DATABASE);
|
|
this.db.install();
|
|
this.view = new View();
|
|
this.view.install();
|
|
this.add = new Add();
|
|
this.add.install();
|
|
|
|
var escape = document.getElementById("escape");
|
|
escape.onclick = function()
|
|
{
|
|
main.load(main.queryPrev);
|
|
}
|
|
}
|
|
|
|
this.start = function()
|
|
{
|
|
this.load(window.document.location.hash);
|
|
this.view.stats(this.db.stats());
|
|
}
|
|
|
|
this.load = function(target)
|
|
{
|
|
document.activeElement.blur();
|
|
if (this.queryCur != 'add')
|
|
{
|
|
this.queryPrev = this.queryCur;
|
|
}
|
|
|
|
target = target.substr(0,1) == "#" ? target.substr(1,target.length-1) : target;
|
|
this.queryCur = target.trim();
|
|
|
|
if (window.location.hash != this.queryCur)
|
|
{
|
|
window.location.hash = this.queryCur;
|
|
}
|
|
|
|
if (this.queryCur == 'add')
|
|
{
|
|
this.add.show();
|
|
}
|
|
else
|
|
{
|
|
this.view.display(this.db.filter(this.queryCur));
|
|
}
|
|
}
|
|
}
|
|
|
|
window.addEventListener("hashchange", function() { main.load(window.document.location.hash); }); |