All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.teamapps.databinding.DataBindings Maven / Gradle / Ivy

There is a newer version: 0.9.194
Show newest version
/*-
 * ========================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.databinding;

import org.teamapps.event.Event;

import java.util.function.Consumer;
import java.util.function.Supplier;

public final class DataBindings {

	public static  ObservableValue createObservableValueWithEmptyEvent(Event changeEvent, Supplier provider) {
		return new ObservableValue() {
			@Override
			public Event onChanged() {
				Event eventWithData = new Event<>();
				changeEvent.addListener(o -> eventWithData.fire(get()));
				return eventWithData;
			}

			@Override
			public T get() {
				return provider.get();
			}
		};
	}

	public static  ObservableValue createObservableValue(Event changeEvent, Supplier provider) {
		return new ObservableValue() {
			@Override
			public Event onChanged() {
				return changeEvent;
			}

			@Override
			public T get() {
				return provider.get();
			}
		};
	}

	public static  ObservableValue createObservableValue(Event changeEvent) {
		return new ObservableValue() {

			private T lastSeenValue;

			{
				changeEvent.addListener(t -> this.lastSeenValue = t);
			}

			@Override
			public Event onChanged() {
				return changeEvent;
			}

			@Override
			public T get() {
				return lastSeenValue;
			}
		};
	}

	public static  MutableValue createMutableValue(Consumer consumer) {
		return consumer::accept;
	}

	public static  TwoWayBindableValue createTwoWayBindable(Event changeEvent, Supplier supplier, Consumer consumer) {
		return new TwoWayBindableValue() {
			@Override
			public Event onChanged() {
				return changeEvent;
			}

			@Override
			public T get() {
				return supplier.get();
			}

			@Override
			public void set(T value) {
				consumer.accept(value);
			}
		};
	}

	public static  TwoWayBindableValue createTwoWayBindable(Event changeEvent, Consumer consumer) {
		return new TwoWayBindableValue() {

			private T lastSeenValue;

			{
				changeEvent.addListener(t -> this.lastSeenValue = t);
			}

			@Override
			public Event onChanged() {
				return changeEvent;
			}

			@Override
			public T get() {
				return lastSeenValue;
			}

			@Override
			public void set(T value) {
				consumer.accept(value);
			}
		};
	}

	public static  void bindOneWay(ObservableValue observableValue, MutableValue mutableValue) {
		mutableValue.set(observableValue.get()); // initialize value
		observableValue.onChanged().addListener(value -> mutableValue.set(observableValue.get()));
	}

	public static  void bindTwoWays(TwoWayBindableValue bindable1, TwoWayBindableValue bindable2) {
		NonRecursiveEventListenerBuilder nonRecursiveEventListenerBuilder = new NonRecursiveEventListenerBuilder();
		bindable1.onChanged().addListener(nonRecursiveEventListenerBuilder.create(aVoid -> bindable2.set(bindable1.get())));
		bindable2.onChanged().addListener(nonRecursiveEventListenerBuilder.create(aVoid -> bindable1.set(bindable2.get())));
		bindable2.set(bindable1.get());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy