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

org.dominokit.domino.ui.utils.LazyChild Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
/*
 * Copyright © 2019 Dominokit
 *
 * 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 org.dominokit.domino.ui.utils;

import static org.dominokit.domino.ui.utils.Domino.*;
import static org.dominokit.domino.ui.utils.ElementsFactory.elements;

import elemental2.dom.Element;
import java.util.function.Supplier;
import org.dominokit.domino.ui.IsElement;

/**
 * The {@code LazyChild} class allows for the lazy initialization and management of child elements
 * within a parent element. Child elements are initialized on-demand, improving performance when
 * working with complex UI structures.
 *
 * @param  The type of the child element, which must implement the {@link
 *     org.dominokit.domino.ui.IsElement} interface.
 */
public class LazyChild> extends BaseLazyInitializer> {

  private T element;

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and parent element.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent element to which the child will be added.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild of(T element, IsElement parent) {
    return new LazyChild<>(element, () -> parent);
  }

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and a supplier for
   * the parent element.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent A supplier that provides the parent element to which the child will be added.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild of(T element, Supplier> parent) {
    return new LazyChild<>(element, parent);
  }

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and a parent {@code
   * LazyChild}.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent {@code LazyChild} to which the child will be added.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild of(T element, LazyChild parent) {
    return new LazyChild<>(element, parent);
  }

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and parent element,
   * inserting it as the first child.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent element to which the child will be inserted as the first child.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild ofInsertFirst(
      T element, IsElement parent) {
    return new LazyChild<>(
        element, () -> parent, (p, child) -> elements.elementOf(p).insertFirst(child.element()));
  }

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and a supplier for
   * the parent element, inserting it as the first child.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent A supplier that provides the parent element to which the child will be inserted
   *     as the first child.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild ofInsertFirst(
      T element, Supplier> parent) {
    return new LazyChild<>(
        element, parent, (p, child) -> elements.elementOf(p).insertFirst(child.element()));
  }

  /**
   * Creates a new {@code LazyChild} instance with the specified child element and a parent {@code
   * LazyChild}, inserting it as the first child.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent {@code LazyChild} to which the child will be inserted as the first
   *     child.
   * @return A new {@code LazyChild} instance.
   */
  public static > LazyChild ofInsertFirst(
      T element, LazyChild parent) {
    return new LazyChild<>(
        element, parent, (p, child) -> elements.elementOf(p).insertFirst(child.element()));
  }

  /**
   * Constructs a new {@code LazyChild} instance with the specified child element and parent element
   * supplier.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent A supplier that provides the parent element to which the child will be added.
   */
  public LazyChild(T element, Supplier> parent) {
    this(element, parent, (p, child) -> elements.elementOf(p).appendChild(child));
    this.element = element;
  }

  /**
   * Constructs a new {@code LazyChild} instance with the specified child element, parent element
   * supplier, and append strategy.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent A supplier that provides the parent element to which the child will be added.
   * @param appendStrategy The strategy for adding the child element to the parent.
   */
  public LazyChild(T element, Supplier> parent, AppendStrategy appendStrategy) {
    super(() -> appendStrategy.onAppend(parent.get().element(), element));
    this.element = element;
  }

  /**
   * Constructs a new {@code LazyChild} instance with the specified child element and a parent
   * {@code LazyChild}.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent {@code LazyChild} to which the child will be added.
   */
  public LazyChild(T element, LazyChild parent) {
    this(element, parent, (p, child) -> elements.elementOf(p).appendChild(child));
  }

  /**
   * Constructs a new {@code LazyChild} instance with the specified child element, parent {@code
   * LazyChild}, and append strategy.
   *
   * @param element The child element to be lazily initialized and managed.
   * @param parent The parent {@code LazyChild} to which the child will be added.
   * @param appendStrategy The strategy for adding the child element to the parent.
   */
  public LazyChild(T element, LazyChild parent, AppendStrategy appendStrategy) {
    super(() -> appendStrategy.onAppend(parent.get().element(), element));
    this.element = element;
  }

  /**
   * Gets the lazily initialized child element. If the child element has not been initialized, it
   * will be created and added to the parent element.
   *
   * @return The child element.
   */
  public T get() {
    apply();
    return element;
  }

  /**
   * Removes the child element from its parent element. If the child element has not been
   * initialized, this method has no effect.
   *
   * @return This {@code LazyChild} instance.
   */
  public LazyChild remove() {
    if (isInitialized()) {
      element.element().remove();
      reset();
    }
    return this;
  }

  /**
   * Gets the child element without initializing it. If the child element has not been initialized,
   * this method returns {@code null}.
   *
   * @return The child element or {@code null} if not initialized.
   */
  public T element() {
    return element;
  }

  /**
   * Initializes or removes the child element based on the specified state. If {@code state} is
   * {@code true}, the child element will be lazily initialized; otherwise, it will be removed from
   * the parent element.
   *
   * @param state {@code true} to initialize the child element, {@code false} to remove it.
   * @return This {@code LazyChild} instance.
   */
  public LazyChild initOrRemove(boolean state) {
    if (state) {
      get();
    } else {
      remove();
    }
    return this;
  }

  /**
   * An interface for defining strategies to append a child element to a parent element.
   *
   * @param  The type of the child element.
   */
  public interface AppendStrategy {
    /**
     * Appends the child element to the parent element.
     *
     * @param parent The parent element.
     * @param child The child element.
     */
    void onAppend(Element parent, C child);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy