Skip to content

Commit

Permalink
Stop chant audio on accordion selection but not scroll
Browse files Browse the repository at this point in the history
Listens to a click on any chant accordion header to
stop audio, but keeps audio playing even if user has
scrolled to a new image.
  • Loading branch information
dchiller committed Sep 7, 2023
1 parent 242d1be commit 7de6988
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import Marionette from 'marionette';
import Backbone from 'backbone';
import ChantRecordView from './ChantRecordView';

import template from './chant-item.template.html';

var manuscriptChannel = Backbone.Radio.channel('manuscript');

/**
* A panel containing chant information
*/
Expand All @@ -18,12 +21,14 @@ export default Marionette.LayoutView.extend({
},

ui: {
collapse: '.collapse'
collapse: '.collapse',
panelHeading: '.panel-heading'
},

events: {
'hide.bs.collapse': '_triggerFoldChant',
'show.bs.collapse': '_triggerUnfoldChant'
'show.bs.collapse': '_triggerUnfoldChant',
'click @ui.panelHeading': 'onChantAccordionClick'
},

collapseContent: function ()
Expand Down Expand Up @@ -74,5 +79,13 @@ export default Marionette.LayoutView.extend({
_triggerUnfoldChant: function ()
{
this.trigger('unfold:chant');
},

/**
* Trigger an event to stop any audio that is playing
*/
onChantAccordionClick: function ()
{
manuscriptChannel.trigger('chantAccordion:click');
}
});
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export default Marionette.ItemView.extend({
this.model.set('volpiano', formattedVolpiano);
var cdb_uri = this.model.get('cdb_uri');
this.model.set({ 'cdb_link_url': 'https://cantus.uwaterloo.ca/node/' + cdb_uri });
this.listenTo(manuscriptChannel, 'change:chant', this.chantChanged);
manuscriptChannel.on('chantAccordion:click',this.stopChantAudio, this);
},
ui : {
volpianoSyllables: ".volpiano-syllable",
Expand All @@ -265,9 +265,12 @@ export default Marionette.ItemView.extend({
stop: function(){
audioStopReset(MIDI);
},
chantChanged: function(){
stopChantAudio: function(){
if (MIDI.getContext().state === "running"){
audioStopReset(MIDI);
}
},
onDestroy: function(){
manuscriptChannel.off('chantAccordion:click',this.stopChantAudio, this);
}
});

0 comments on commit 7de6988

Please sign in to comment.