2015-02-25 11:08:52 -08:00
|
|
|
<div class="t-fixed-position l-fixed-position"
|
2015-01-15 18:53:59 -08:00
|
|
|
ng-controller="FixedController as controller"
|
|
|
|
mct-resize="controller.setBounds(bounds)">
|
2015-01-14 17:48:57 -08:00
|
|
|
|
2015-01-15 18:48:11 -08:00
|
|
|
<!-- Background grid -->
|
2015-02-25 15:53:02 -08:00
|
|
|
<div class="l-grid-holder" ng-click="controller.clearSelection()">
|
|
|
|
<div class="l-grid l-grid-x" ng-style="{ 'background-size': controller.getGridSize() [0] + 'px 100%' }"></div>
|
|
|
|
<div class="l-grid l-grid-y" ng-style="{ 'background-size': '100% ' + controller.getGridSize() [1] + 'px' }"></div>
|
|
|
|
</div>
|
2015-01-15 18:48:11 -08:00
|
|
|
|
2015-02-25 11:08:52 -08:00
|
|
|
|
|
|
|
|
2015-02-18 19:41:27 -08:00
|
|
|
<!-- Fixed position elements -->
|
2015-02-25 18:17:11 -08:00
|
|
|
<!-- TO-DO: Should not be applying positioning styles or CSS classes to the mct-include element.
|
2015-02-25 15:53:02 -08:00
|
|
|
Instead, these should be passed on to the actual HTML element within the template -->
|
2015-02-19 16:24:45 -08:00
|
|
|
<mct-include ng-repeat="element in controller.getElements()"
|
2015-02-18 13:19:59 -08:00
|
|
|
key="element.template"
|
2015-02-20 15:02:16 -08:00
|
|
|
parameters="{ gridSize: controller.getGridSize() }"
|
2015-02-25 15:53:02 -08:00
|
|
|
class="l-fixed-position-item"
|
|
|
|
ng-class="{ 's-not-selected': controller.selected() && !controller.selected(element) }"
|
2015-02-18 19:41:27 -08:00
|
|
|
ng-style="element.style"
|
|
|
|
ng-click="controller.select(element)"
|
2015-02-24 10:06:34 -08:00
|
|
|
ng-model="element">
|
2015-02-18 13:19:59 -08:00
|
|
|
</mct-include>
|
2015-02-24 10:06:34 -08:00
|
|
|
|
|
|
|
<!-- Selection highlight, handles -->
|
|
|
|
<span ng-if="controller.selected()">
|
2015-02-25 15:53:02 -08:00
|
|
|
<div class="l-fixed-position-item s-selected"
|
2015-02-24 11:29:52 -08:00
|
|
|
mct-drag-down="controller.moveHandle().startDrag(controller.selected())"
|
|
|
|
mct-drag="controller.moveHandle().continueDrag(delta)"
|
|
|
|
mct-drag-up="controller.moveHandle().endDrag()"
|
2015-02-24 10:06:34 -08:00
|
|
|
ng-style="controller.selected().style">
|
|
|
|
</div>
|
|
|
|
<div ng-repeat="handle in controller.handles()"
|
2015-02-25 15:53:02 -08:00
|
|
|
class="l-fixed-position-item-handle"
|
2015-02-24 11:00:36 -08:00
|
|
|
ng-style="handle.style()"
|
2015-02-24 10:06:34 -08:00
|
|
|
mct-drag-down="handle.startDrag()"
|
2015-02-24 11:29:52 -08:00
|
|
|
mct-drag="handle.continueDrag(delta)"
|
2015-02-24 10:06:34 -08:00
|
|
|
mct-drag-up="handle.endDrag()">
|
|
|
|
</div>
|
|
|
|
</span>
|
|
|
|
|
2015-01-14 17:48:57 -08:00
|
|
|
</div>
|