aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/quickSwitch/index.ts
blob: 9d584dc6236cea28e159be1d20e71a99c45d7b1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { state as ModalState } from './store';

export { default as Component } from './Component';
const state = ModalState;

const debug = require('debug')('Ferdium:feature:quickSwitch');

export default function initialize() {
  debug('Initialize quickSwitch feature');

  function showModal() {
    state.isModalVisible = true;
  }

  window['ferdium'].features.quickSwitch = {
    state,
    showModal,
  };
}