forked from mirrors/gecko-dev
		
	Differential Revision: https://phabricator.services.mozilla.com/D37217 --HG-- extra : moz-landing-system : lando
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/* This Source Code Form is subject to the terms of the Mozilla Public
 | 
						|
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 | 
						|
 * You can obtain one at http://mozilla.org/MPL/2.0/. */
 | 
						|
 | 
						|
const { actionTypes: at } = ChromeUtils.import(
 | 
						|
  "resource://activity-stream/common/Actions.jsm"
 | 
						|
);
 | 
						|
const { ASRouter } = ChromeUtils.import(
 | 
						|
  "resource://activity-stream/lib/ASRouter.jsm"
 | 
						|
);
 | 
						|
 | 
						|
/**
 | 
						|
 * @class ASRouterFeed - Connects ASRouter singleton (see above) to Activity Stream's
 | 
						|
 * store so that it can use the RemotePageManager.
 | 
						|
 */
 | 
						|
class ASRouterFeed {
 | 
						|
  constructor(options = {}) {
 | 
						|
    this.router = options.router || ASRouter;
 | 
						|
  }
 | 
						|
 | 
						|
  async enable() {
 | 
						|
    if (!this.router.initialized) {
 | 
						|
      await this.router.init(
 | 
						|
        this.store._messageChannel.channel,
 | 
						|
        this.store.dbStorage.getDbTable("snippets"),
 | 
						|
        this.store.dispatch
 | 
						|
      );
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  disable() {
 | 
						|
    if (this.router.initialized) {
 | 
						|
      this.router.uninit();
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  onAction(action) {
 | 
						|
    switch (action.type) {
 | 
						|
      case at.INIT:
 | 
						|
        this.enable();
 | 
						|
        break;
 | 
						|
      case at.UNINIT:
 | 
						|
        this.disable();
 | 
						|
        break;
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
this.ASRouterFeed = ASRouterFeed;
 | 
						|
 | 
						|
const EXPORTED_SYMBOLS = ["ASRouterFeed"];
 |