com.ocs.dynamo.ui.converter.LocalDateWeekCodeConverter Maven / Gradle / Ivy
/*
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.
*/
package com.ocs.dynamo.ui.converter;
import java.time.LocalDate;
import org.apache.commons.lang3.StringUtils;
import com.ocs.dynamo.exception.OCSRuntimeException;
import com.ocs.dynamo.utils.DateUtils;
import com.vaadin.flow.data.binder.Result;
import com.vaadin.flow.data.binder.ValueContext;
import com.vaadin.flow.data.converter.Converter;
/**
* Converter for converting between a String (representing a week code, e.g. '2018-01') and a
* LocalDate
*
* @author bas.rutten
*
*/
public class LocalDateWeekCodeConverter implements Converter {
private static final long serialVersionUID = -3286439685884522679L;
@Override
public Result convertToModel(String value, ValueContext context) {
if (StringUtils.isEmpty(value)) {
return Result.ok(null);
}
try {
return Result.ok(DateUtils.getStartDateOfWeek(value));
} catch (OCSRuntimeException ex) {
return Result.error(ex.getMessage());
}
}
@Override
public String convertToPresentation(LocalDate value, ValueContext context) {
if (value == null) {
return "";
}
return DateUtils.toWeekCode(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy