alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Lift Framework example source code file (DateField.scala)

This example Lift Framework source code file (DateField.scala) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Lift Framework tags/keywords

box, date, date, datefield, full, full, jnothing, jobject, jvalue, jvalue, ownertype, some, string, string, util

The Lift Framework DateField.scala source code

/*
* Copyright 2010-2011 WorldWide Conferencing, LLC
*
* 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 net.liftweb 
package mongodb 
package record 
package field 

import java.util.Date

import scala.xml.NodeSeq

import net.liftweb.common.{Box, Empty, Failure, Full}
import net.liftweb.http.js.JE.{JsNull, JsRaw}
import net.liftweb.http.S
import net.liftweb.json.JsonAST._
import net.liftweb.json.Printer
import net.liftweb.mongodb.record._
import net.liftweb.record.{Field, FieldHelpers, MandatoryTypedField}
import net.liftweb.util.Helpers._

/*
* Since MongoDB only stores UTC dates, Calendar data is not necessary.
*/
class DateField[OwnerType <: BsonRecord[OwnerType]](rec: OwnerType)
  extends Field[Date, OwnerType]
  with MandatoryTypedField[Date]
{

  def owner = rec

  def defaultValue = new Date

  override def toString = value match {
    case null => "null"
    case d => valueBox.map {
      v => owner.meta.formats.dateFormat.format(v)
    } openOr ""
  }

  def setFromAny(in: Any): Box[Date] = in match {
    case d: Date => setBox(Full(d))
    case Some(d: Date) => setBox(Full(d))
    case Full(d: Date) => setBox(Full(d))
    case (d: Date) :: _ => setBox(Full(d))
    case s: String => setFromString(s)
    case Some(s: String) => setFromString(s)
    case Full(s: String) => setFromString(s)
    case null|None|Empty => setBox(defaultValueBox)
    case f: Failure => setBox(f)
    case o => setFromString(o.toString)
  }

  def setFromString(in: String): Box[Date] = owner.meta.formats.dateFormat.parse(in) match {
    case Some(d: Date) => setBox(Full(d))
    case other => setBox(Failure("Invalid Date string: "+in))
  }

  def setFromJValue(jvalue: JValue): Box[Date] = jvalue match {
    case JNothing|JNull if optional_? => setBox(Empty)
    case JObject(JField("$dt", JString(s)) :: Nil) => setFromString(s)
    case other => setBox(FieldHelpers.expectedA("JObject", other))
  }

  private def elem =
    S.fmapFunc(S.SFuncHolder(this.setFromAny(_))){funcName =>
      <input type="text"
        name={funcName}
        value={valueBox.map(v => owner.meta.formats.dateFormat.format(v)) openOr ""}
        tabindex={tabIndex.toString}/>
    }

  def toForm =
    uniqueFieldId match {
      case Full(id) => Full(elem % ("id" -> id))
      case _ => Full(elem)
    }

  def asJs = asJValue match {
    case JNothing => JsNull
    case jv => JsRaw(Printer.compact(render(jv)))
  }

  def asJValue: JValue = valueBox.map(v => Meta.dateAsJValue(v, owner.meta.formats)) openOr (JNothing: JValue)
}

Other Lift Framework examples (source code examples)

Here is a short list of links related to this Lift Framework DateField.scala source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.