This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"presets": [ | |
[ "next/babel", { "preset-env": { "modules": "commonjs" }} ] | |
], | |
"plugins": [ | |
[ | |
"module-resolver", | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import _ from 'lodash'; | |
import React from 'react'; | |
import { | |
streamClose, | |
manageAudio, | |
manageVideo, | |
} from './methods'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import _ from 'lodash'; | |
import React from 'react'; | |
import { | |
streamClose, | |
manageAudio, | |
manageVideo, | |
} from './methods'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createChecksStore } from '/imports/common/classes'; | |
import { LocalStoreClass } from '/imports/common/classes'; // SHARED | |
import { AlertsStore } from './stores/(_Alerts_)/(_Alerts_)'; | |
import { State } from './stores/(_State_)/(_State_)'; | |
import createClocksStore from './stores/(_Clocks_)/(_Clocks_)'; | |
import createSyslidesStore from './stores/(_Syslides_)/(_Syslides_)'; | |
import createMeetingsStore from './stores/((Meetings))/((Meetings))'; | |
import createMembersStore from './stores/((Members))/((Members))'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createStore } from '/imports/common/classes/'; | |
import { myMeetings } from './extends/myMeetings'; | |
import { myMeeting } from './sets'; | |
export const createStoreDefinition = Stores => ({ | |
name: 'MeetingsStore', | |
Stores, | |
computed: { | |
myMeetings, | |
myMeeting, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { computed } from 'mobx'; | |
import { StoreClass } from '/common/classes/'; | |
import { myMeetings } from './extends/myMeetings'; | |
import { myMeeting } from './sets'; | |
export default class Store extends StoreClass { | |
constructor(Stores) { | |
super('MeetingsStore', Stores); | |
} |