
The user can now zoom in/out the network graph in the home page with two buttons. Added the cordova device plugin to detect when the phone is ready and the change the behavior of the backbutton on android. Disabled the panel left swipe because of some scroll problems in landscape mode.
94 lines
3.0 KiB
JavaScript
94 lines
3.0 KiB
JavaScript
routes = [
|
|
{
|
|
path: '/',
|
|
templateUrl: './index.html',
|
|
on: {
|
|
pageAfterIn: () => {
|
|
displayCharacters();
|
|
onDeviceReady();
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: 'classes',
|
|
path: '/classes/',
|
|
templateUrl: './pages/classes.html',
|
|
on: {
|
|
pageAfterIn: () => {
|
|
displayAllClasses();
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: 'stat',
|
|
path: '/stat/:charId',
|
|
templateUrl: './pages/stat.html',
|
|
on: {
|
|
pageInit: (e, page) => {
|
|
const charId = page.route.params.charId;
|
|
if (charId != null) {
|
|
const char = feData.characters.find(x => x.id == charId);
|
|
let charFullName = (char.lastName) ? char.firstName + " " + char.lastName
|
|
: char.firstName;
|
|
|
|
$$("#title-char").text(charFullName);
|
|
$$("#picture-char").attr("src", "img/characters/" + char.firstName + ".png");
|
|
actualCharId = charId;
|
|
createTableOfStats();
|
|
createListOfAvailableClasses();
|
|
displayCharGrowthRates();
|
|
}
|
|
createEventForGraphSwitch(displayGraphOfGrowthRatesForChar);
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: 'feclass',
|
|
path: '/class/:id',
|
|
templateUrl: './pages/feclass.html',
|
|
on: {
|
|
pageInit: (e, page) => {
|
|
const id = page.route.params.id;
|
|
if (id != null) {
|
|
const feclass = feData.classes.find(x => x.id == id);
|
|
$$("#title-char").text(feclass.name);
|
|
actualClassId = id;
|
|
createTableOfStats();
|
|
displayClassGrowthRates();
|
|
}
|
|
createEventForGraphSwitch(displayGraphOfGrowthRatesForClass);
|
|
}
|
|
}
|
|
},
|
|
{
|
|
name: 'comparator',
|
|
path: '/comparator/',
|
|
templateUrl: './pages/comparator.html',
|
|
on: {
|
|
pageInit: (e, page) => createEventForGraphSwitch(displayCurrentGraph),
|
|
// We must use the pageAfterIn event in order to open the smartselect directly
|
|
pageAfterIn: (e, page) => {
|
|
configureSmartSelectOfCharacters();
|
|
},
|
|
pageBeforeRemove: function (e, page) {
|
|
// Reset the classes selected when exiting the page
|
|
feData.characters.forEach(char => {
|
|
char.idClassSelected = null;
|
|
});
|
|
},
|
|
}
|
|
},
|
|
{
|
|
path: '/about/',
|
|
templateUrl: './pages/about.html'
|
|
},
|
|
];
|
|
|
|
function createEventForGraphSwitch(callback) {
|
|
$$("#btn-graph-column-chart").on("click", (event) => {
|
|
switchGraph(event, callback);
|
|
});
|
|
$$("#btn-graph-spider-web").on("click", (event) => {
|
|
switchGraph(event, callback);
|
|
});
|
|
} |