1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-11 22:24:21 +01:00
fab-manager/app/assets/javascripts/controllers/home.js

62 lines
2.1 KiB
JavaScript
Raw Normal View History

/*
* decaffeinate suggestions:
* DS102: Remove unnecessary code created because of implicit returns
* Full docs: https://github.com/decaffeinate/decaffeinate/blob/master/docs/suggestions.md
*/
'use strict';
2015-05-05 03:10:25 +02:00
Application.Controllers.controller("HomeController", ['$scope', '$stateParams', 'Twitter', 'lastMembersPromise', 'lastProjectsPromise', 'upcomingEventsPromise', 'homeBlogpostPromise', 'twitterNamePromise', function($scope, $stateParams, Twitter, lastMembersPromise, lastProjectsPromise, upcomingEventsPromise, homeBlogpostPromise, twitterNamePromise){
2015-05-05 03:10:25 +02:00
/* PUBLIC SCOPE */
2015-05-05 03:10:25 +02:00
//# The last registered members who confirmed their addresses
$scope.lastMembers = lastMembersPromise;
2015-05-05 03:10:25 +02:00
//# The last tweets from the Fablab official twitter account
$scope.lastTweets = [];
2015-05-05 03:10:25 +02:00
//# The last projects published/documented on the plateform
$scope.lastProjects = lastProjectsPromise;
2015-05-05 03:10:25 +02:00
//# The closest upcoming events
$scope.upcomingEvents = upcomingEventsPromise;
2016-03-23 18:39:41 +01:00
//# The admin blogpost
$scope.homeBlogpost = homeBlogpostPromise.setting.value;
2016-03-23 18:39:41 +01:00
//# Twitter username
$scope.twitterName = twitterNamePromise.setting.value;
2016-03-23 18:39:41 +01:00
//#
// Test if the provided event run on a single day or not
// @param event {Object} single event from the $scope.upcomingEvents array
// @returns {boolean} false if the event runs on more that 1 day
//#
$scope.isOneDayEvent = event => moment(event.start_date).isSame(event.end_date, 'day');
2015-05-05 03:10:25 +02:00
/* PRIVATE SCOPE */
2015-05-05 03:10:25 +02:00
//#
// Kind of constructor: these actions will be realized first when the controller is loaded
//#
const initialize = function() {
// we retrieve tweets from here instead of ui-router's promise because, if adblock stop the API request,
// this prevent the whole home page to be blocked
$scope.lastTweets = Twitter.query({limit: 1});
2016-03-23 18:39:41 +01:00
// if we recieve a token to reset the password as GET parameter, trigger the
// changePassword modal from the parent controller
if ($stateParams.reset_password_token) {
return $scope.$parent.editPassword($stateParams.reset_password_token);
}
};
2015-05-05 03:10:25 +02:00
//# !!! MUST BE CALLED AT THE END of the controller
return initialize();
}
]);