-
rhenck authored
This way elements can handle their logic themselves without having to rely on outside utility classes. Also restructure files in common in a more logical way.
rhenck authoredThis way elements can handle their logic themselves without having to rely on outside utility classes. Also restructure files in common in a more logical way.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
frame.component.ts 890 B
import { Component, Input } from '@angular/core';
import { ElementComponent } from '../../directives/element-component.directive';
import { FrameElement } from 'common/models/elements/frame/frame';
@Component({
selector: 'aspect-frame',
template: `
<div [style.width]="'calc(100% - ' + (elementModel.styling.borderWidth * 2) + 'px)'"
[style.height]="'calc(100% - ' + (elementModel.styling.borderWidth * 2) + 'px)'"
[style.border-style]="elementModel.styling.borderStyle"
[style.border-width.px]="elementModel.styling.borderWidth"
[style.border-color]="elementModel.styling.borderColor"
[style.border-radius.px]="elementModel.styling.borderRadius"
[style.background-color]="elementModel.styling.backgroundColor">
</div>
`
})
export class FrameComponent extends ElementComponent {
@Input() elementModel!: FrameElement;
}