Mercurial > hg > isophonics-drupal-site
view core/modules/contextual/js/views/RegionView.es6.js @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
/** * @file * A Backbone View that renders the visual view of a contextual region element. */ (function(Drupal, Backbone, Modernizr) { Drupal.contextual.RegionView = Backbone.View.extend( /** @lends Drupal.contextual.RegionView# */ { /** * Events for the Backbone view. * * @return {object} * A mapping of events to be used in the view. */ events() { let mapping = { mouseenter() { this.model.set('regionIsHovered', true); }, mouseleave() { this.model .close() .blur() .set('regionIsHovered', false); }, }; // We don't want mouse hover events on touch. if (Modernizr.touchevents) { mapping = {}; } return mapping; }, /** * Renders the visual view of a contextual region element. * * @constructs * * @augments Backbone.View */ initialize() { this.listenTo(this.model, 'change:hasFocus', this.render); }, /** * @inheritdoc * * @return {Drupal.contextual.RegionView} * The current contextual region view. */ render() { this.$el.toggleClass('focus', this.model.get('hasFocus')); return this; }, }, ); })(Drupal, Backbone, Modernizr);