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

com.jwebmp.plugins.verticaltimeline.VerticalTimelineContent Maven / Gradle / Ivy

/*
 * Copyright (C) 2017 Marc Magon
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package com.jwebmp.plugins.verticaltimeline;

import com.jwebmp.core.base.html.Div;
import com.jwebmp.core.base.html.H2;
import com.jwebmp.core.base.html.Link;
import com.jwebmp.core.base.html.Span;
import com.jwebmp.core.base.html.attributes.NoAttributes;
import com.jwebmp.core.base.html.interfaces.GlobalFeatures;
import com.jwebmp.core.base.html.interfaces.events.GlobalEvents;
import com.jwebmp.core.base.interfaces.IComponentHierarchyBase;

/**
 * A content div for the vertical Timeline
 *
 * @author GedMarc
 * @since Oct 24, 2016
 */
public class VerticalTimelineContent
		extends Div
		implements IVerticalTimelineContent
{

	/**
	 * The header of the time-line block
	 */
	private H2 header;
	/**
	 * The actual text for the block
	 */
	private String text;
	/**
	 * The link for the read more text
	 */
	private Link readMoreLink;
	/**
	 * A span showing the date of the occurrence
	 */
	private Span spanText;

	public VerticalTimelineContent()
	{
		addClass("cd-timeline-content");
	}

	/**
	 * Returns the vertical time-line content as only a content
	 *
	 * @return
	 */
	public IVerticalTimelineContent asVerticalTimelineContent()
	{
		return this;
	}

	@Override
	public void preConfigure()
	{
		if (!isConfigured())
		{
			add(getHeader());
			add(getText());
			add(getReadMoreLink());
			add(getSpanText());
		}
		super.preConfigure();
	}

	/**
	 * Returns the header object
	 *
	 * @return
	 */
	@Override
	public H2 getHeader()
	{
		if (header == null)
		{
			setHeader(new H2(""));
		}
		return header;
	}

	/**
	 * Sets the header object
	 *
	 * @param header
	 */
	@Override
	public void setHeader(H2 header)
	{
		this.header = header;
	}

	/**
	 * The link for the read more
	 *
	 * @return
	 */
	@Override
	public Link getReadMoreLink()
	{
		if (readMoreLink == null)
		{
			setReadMoreLink(new Link());
		}
		return readMoreLink;
	}

	/**
	 * Sets the read more link
	 *
	 * @param readMoreLink
	 */
	@Override
	public void setReadMoreLink(Link readMoreLink)
	{
		this.readMoreLink = readMoreLink;
		if (this.readMoreLink != null)
		{
			this.readMoreLink.addClass("cd-read-more");
		}
	}

	/**
	 * Gets the span for where the date displays
	 *
	 * @return
	 */
	@Override
	public Span getSpanText()
	{
		if (spanText == null)
		{
			setSpanText(new Span());
		}
		return spanText;
	}

	/**
	 * Sets the span for where the date displays
	 *
	 * @param spanText
	 */
	@Override
	public void setSpanText(Span spanText)
	{
		this.spanText = spanText;
		if (this.spanText != null)
		{
			this.spanText.addClass("cd-date");
		}
	}

	/**
	 * Returns the text object
	 *
	 * @return
	 */
	@Override
	public String getText()
	{
		return text;
	}

	public void setContentText(String text)
	{
		this.text = text;
	}

	@Override
	public int hashCode()
	{
		return super.hashCode();
	}

	@Override
	public boolean equals(Object o)
	{
		return super.equals(o);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy