Last active
          June 10, 2018 22:34 
        
      - 
      
- 
        Save alexvcasillas/e74a697d927ed3b987b6b27937198adf to your computer and use it in GitHub Desktop. 
    Types Union Thing
  
        
  
    
      This file contains hidden or 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 { types } from 'mobx-state-tree'; | |
| const ItemUI = types.model( | |
| 'ItemUI', | |
| { | |
| id: types.identifier(), | |
| position: types.optional(types.frozen, { x: 0, y: 0 }), | |
| text: types.string, | |
| width: types.string, | |
| height: types.string, | |
| backgroundColor: types.string, | |
| selected: types.optional(types.boolean, false), | |
| type: types.optional(types.literal('text'), 'text') | |
| }, | |
| { | |
| setPosition(x, y) { | |
| this.position = { x: x, y: y }; | |
| }, | |
| setSelected(selected) { | |
| this.selected = selected; | |
| } | |
| } | |
| ); | |
| const ImageUI = types.model( | |
| 'ImageUI', | |
| { | |
| id: types.identifier(), | |
| position: types.optional(types.frozen, { x: 0, y: 0 }), | |
| text: types.string, | |
| width: types.string, | |
| height: types.string, | |
| backgroundColor: types.string, | |
| rotation: types.number, | |
| selected: types.optional(types.boolean, false), | |
| type: types.optional(types.literal('image'), 'image') | |
| }, | |
| { | |
| setPosition(x, y) { | |
| this.position = { x: x + 20, y: y + 20 }; | |
| }, | |
| setSelected(selected) { | |
| this.selected = selected; | |
| } | |
| } | |
| ); | |
| const ItemStoreUI = types.model( | |
| 'ItemStoreUI', | |
| { | |
| items: types.optional(types.array(types.union(ItemUI, ImageUI)), []), | |
| get selectedItems() { | |
| return this.items.filter(item => item.selected); | |
| }, | |
| get updatedItems() { | |
| return this.items.filter(item => item.selected); | |
| } | |
| }, | |
| { | |
| addItem(item) { | |
| this.items.push(item); | |
| }, | |
| updatePosition() { | |
| this.items[0].setPosition(Math.random(), Math.random()); | |
| this.items[1].setPosition(Math.random(), Math.random()); | |
| } | |
| } | |
| ); | |
| export { ItemUI, ImageUI, ItemStoreUI }; | 
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment