Improve home page, hide cards depending on account type

This commit is contained in:
Skylar Ittner 2019-03-30 01:37:28 -06:00
parent e492b36ead
commit 4be006fe8e
3 changed files with 15 additions and 18 deletions

View File

@ -93,9 +93,4 @@ function loadHomePage(callback) {
callback(); callback();
} }
}); });
} }
setTimeout(function () {
loadHomePage(function () {
});
}, 500);

View File

@ -51,6 +51,7 @@
</div> </div>
</div> </div>
{{#if receiver}}
<div class="col-100 tablet-50 desktop-33"> <div class="col-100 tablet-50 desktop-33">
<div class="card card-expandable card-expandable-animate-width elevation-2" id="receive-card" style="margin-top: var(--f7-card-margin-vertical);" onclick="openReceiveCard()"> <div class="card card-expandable card-expandable-animate-width elevation-2" id="receive-card" style="margin-top: var(--f7-card-margin-vertical);" onclick="openReceiveCard()">
@ -80,7 +81,7 @@
</div> </div>
</div> </div>
</div> </div>
{{else}}
<div class="col-100 tablet-50 desktop-33"> <div class="col-100 tablet-50 desktop-33">
<div class="card card-expandable elevation-2" id="map-card" style="margin-top: var(--f7-card-margin-vertical);" onclick="openMapCard()"> <div class="card card-expandable elevation-2" id="map-card" style="margin-top: var(--f7-card-margin-vertical);" onclick="openMapCard()">
@ -114,6 +115,7 @@
</div> </div>
</div> </div>
</div> </div>
{{/if}}
</div> </div>

View File

@ -10,17 +10,17 @@ var routes = [
path: '/home', path: '/home',
templateUrl: './pages/home.html', templateUrl: './pages/home.html',
name: 'home', name: 'home',
async: function (routeTo, routeFrom, resolve, reject) { keepAlive: true,
var giver = localStorage.getItem("accttype") == "giver"; options: {
var receiver = localStorage.getItem("accttype") == "receiver"; context: {
resolve({ giver: localStorage.getItem("accttype") == "giver",
templateUrl: './pages/home.html' receiver: localStorage.getItem("accttype") == "receiver"
}, { }
context: { },
giver: giver, on: {
receiver: receiver pageAfterIn: function () {
} loadHomePage(function () {});
}); }
} }
}, },
{ {