org.teamapps.ux.component.field.ImageField Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* TeamApps
* ---
* Copyright (C) 2014 - 2023 TeamApps.org
* ---
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* =========================LICENSE_END==================================
*/
package org.teamapps.ux.component.field;
import org.teamapps.common.format.RgbaColor;
import org.teamapps.common.format.Color;
import org.teamapps.dto.UiImageField;
import org.teamapps.ux.component.absolutelayout.Length;
import org.teamapps.ux.component.format.Border;
import org.teamapps.ux.component.format.ImageSizing;
public class ImageField extends AbstractField {
private Length width = Length.AUTO;
private Length height = Length.AUTO;
private Border border;
private ImageSizing imageSizing = ImageSizing.CONTAIN;
private Color backgroundColor = RgbaColor.TRANSPARENT;
public ImageField() {
super();
}
@Override
public UiImageField createUiComponent() {
UiImageField uiImageField = new UiImageField();
mapAbstractFieldAttributesToUiField(uiImageField);
uiImageField.setWidth(width.toCssString());
uiImageField.setHeight(height.toCssString());
uiImageField.setBorder(border != null ? border.createUiBorder() : null);
uiImageField.setImageSizing(imageSizing.toUiImageSizing());
uiImageField.setBackgroundColor(backgroundColor != null ? backgroundColor.toHtmlColorString(): null);
return uiImageField;
}
public Length getWidth() {
return width;
}
public ImageField setWidth(Length width) {
this.width = width;
queueCommandIfRendered(() -> new UiImageField.UpdateCommand(getId(), createUiComponent()));
return this;
}
public Length getHeight() {
return height;
}
public ImageField setHeight(Length height) {
this.height = height;
queueCommandIfRendered(() -> new UiImageField.UpdateCommand(getId(), createUiComponent()));
return this;
}
public Border getBorder() {
return border;
}
public ImageField setBorder(Border border) {
this.border = border;
queueCommandIfRendered(() -> new UiImageField.UpdateCommand(getId(), createUiComponent()));
return this;
}
public ImageSizing getImageSizing() {
return imageSizing;
}
public ImageField setImageSizing(ImageSizing imageSizing) {
this.imageSizing = imageSizing;
queueCommandIfRendered(() -> new UiImageField.UpdateCommand(getId(), createUiComponent()));
return this;
}
public Color getBackgroundColor() {
return backgroundColor;
}
public void setBackgroundColor(Color backgroundColor) {
this.backgroundColor = backgroundColor;
queueCommandIfRendered(() -> new UiImageField.UpdateCommand(getId(), createUiComponent()));
}
}