commit
2d710c20e9
@ -0,0 +1,50 @@ |
|||||||
|
export class Workspace { |
||||||
|
constructor (title, description, activate, deactivate) { |
||||||
|
this.title = title |
||||||
|
this.description = description |
||||||
|
this.activate = activate |
||||||
|
this.deactivate = deactivate |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
export const defaultWorkspaces = (appManager, appStore) => { |
||||||
|
return [ |
||||||
|
new Workspace('Close All Modules', '', () => { |
||||||
|
appStore.getActives() |
||||||
|
.filter(({profile}) => !profile.required) |
||||||
|
.forEach((profile) => { appManager.deactivateOne(profile.name) }) |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Solidity Basic', '', () => { |
||||||
|
appManager.ensureActivated('solidity') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Solidity Unit testing', '', () => { |
||||||
|
appManager.ensureActivated('solidity') |
||||||
|
appManager.ensureActivated('solidityUnitTesting') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Solidity Full Environement', '', () => { |
||||||
|
appManager.ensureActivated('solidity') |
||||||
|
appManager.ensureActivated('run') |
||||||
|
appManager.ensureActivated('solidityStaticAnalysis') |
||||||
|
appManager.ensureActivated('solidityUnitTesting') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Vyper Basic', '', () => { |
||||||
|
appManager.ensureActivated('vyper') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Pipeline', '', () => { |
||||||
|
appManager.ensureActivated('solidity') |
||||||
|
appManager.ensureActivated('run') |
||||||
|
appManager.ensureActivated('pipeline') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Deploy and Run Solidity', '', () => { |
||||||
|
appManager.ensureActivated('solidity') |
||||||
|
appManager.ensureActivated('run') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Deploy and Run Vyper', '', () => { |
||||||
|
appManager.ensureActivated('vyper') |
||||||
|
appManager.ensureActivated('run') |
||||||
|
}, () => {}), |
||||||
|
new Workspace('Debugger', '', () => { |
||||||
|
appManager.ensureActivated('debugger') |
||||||
|
}, () => {}) |
||||||
|
] |
||||||
|
} |
Loading…
Reference in new issue