2015-02-13 07:22:32 +03:00
|
|
|
import Ember from 'ember';
|
2014-09-16 08:55:37 +04:00
|
|
|
|
2014-10-25 01:09:50 +04:00
|
|
|
// Routes that extend MobileIndexRoute need to implement
|
2014-09-16 08:55:37 +04:00
|
|
|
// desktopTransition, a function which is called when
|
|
|
|
// the user resizes to desktop levels.
|
2015-08-19 14:55:40 +03:00
|
|
|
export default Ember.Route.extend({
|
2014-09-16 08:55:37 +04:00
|
|
|
desktopTransition: Ember.K,
|
2015-11-20 20:26:34 +03:00
|
|
|
_callDesktopTransition: null,
|
2014-09-16 08:55:37 +04:00
|
|
|
|
2015-11-20 20:26:34 +03:00
|
|
|
mediaQueries: Ember.inject.service(),
|
2014-09-16 08:55:37 +04:00
|
|
|
|
2015-11-20 20:26:34 +03:00
|
|
|
activate: function () {
|
|
|
|
this._callDesktopTransition = () => {
|
|
|
|
if (!this.get('mediaQueries.isMobile')) {
|
|
|
|
this.desktopTransition();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
Ember.addObserver(this, 'mediaQueries.isMobile', this._callDesktopTransition);
|
2014-09-16 08:55:37 +04:00
|
|
|
},
|
|
|
|
|
2015-11-20 20:26:34 +03:00
|
|
|
deactivate: function () {
|
|
|
|
if (this._callDesktopTransition) {
|
|
|
|
Ember.removeObserver(this, 'mediaQueries.isMobile', this._callDesktopTransition);
|
|
|
|
this._callDesktopTransition = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-16 08:55:37 +04:00
|
|
|
});
|