summaryrefslogtreecommitdiffstats
path: root/toolkit/jetpack/sdk/context-menu@2.js
blob: 45ad804e9bef3c51e9218e2ea4f4a7e062dc89c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* 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/. */
"use strict";

const shared = require("toolkit/require");
const { Item, Separator, Menu, Contexts, Readers } = shared.require("sdk/context-menu/core");
const { setupDisposable, disposeDisposable, Disposable } = require("sdk/core/disposable")
const { Class } = require("sdk/core/heritage")

const makeDisposable = Type => Class({
  extends: Type,
  implements: [Disposable],
  initialize: Type.prototype.initialize,
  setup(...params) {
    Type.prototype.setup.call(this, ...params);
    setupDisposable(this);
  },
  dispose(...params) {
    disposeDisposable(this);
    Type.prototype.dispose.call(this, ...params);
  }
});

exports.Separator = Separator;
exports.Contexts = Contexts;
exports.Readers = Readers;

// Subclass Item & Menu shared classes so their items
// will be unloaded when add-on is unloaded.
exports.Item = makeDisposable(Item);
exports.Menu = makeDisposable(Menu);