Created
September 18, 2015 00:19
-
-
Save oyvindberg/bdfad38a971578a312cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package chandu0101.macros.tojs | |
import japgolly.scalajs.react.CallbackTo | |
import scala.collection.{GenMap, GenTraversableOnce} | |
import scala.language.experimental.macros | |
import scala.reflect.macros.blackbox | |
import scala.scalajs.js | |
/** | |
* modified version of https://github.com/wav/scala-macros/blob/master/src/main/scala/wav/common/scalajs/macros/Macros.scala | |
* via https://github.com/chandu0101/macros/blob/master/src/main/scala/chandu0101/macros/tojs/JSMacro.scala | |
*/ | |
object JSMacro { | |
type TOJS = { | |
val toJS: js.Object | |
} | |
implicit def apply[T]: T => js.Object = macro applyImpl[T] | |
def applyImpl[T: c.WeakTypeTag](c: blackbox.Context): c.Tree = { | |
import c.universe._ | |
def isOptional(tpe: Type): Boolean = | |
tpe <:< typeOf[Option[_]] || tpe <:< typeOf[js.UndefOr[_]] | |
def isNotPrimitiveAnyVal(tpe: Type) = | |
!tpe.typeSymbol.fullName.startsWith("scala.") | |
def getJSValueTree(target: Tree, rt: Type) = { | |
if (rt <:< typeOf[TOJS]) | |
q"""if ($target != null) $target.toJS else null""" | |
/* scala collections */ | |
else if (rt <:< typeOf[GenMap[String, _]]) | |
if (rt.typeArgs(1) <:< typeOf[TOJS]) | |
q"""$target.map{ case (k, o) => k -> (if(o == null) null else o.toJS)}.toJSDictionary""" | |
else | |
q"""$target.toJSDictionary""" | |
else if (rt <:< typeOf[GenTraversableOnce[_]] || (rt <:< typeOf[Array[_]])) | |
if (rt.typeArgs.head <:< typeOf[TOJS]) | |
q"""$target.map(o => if(o == null) null else o.toJS).toJSArray""" | |
else | |
q"""$target.toJSArray""" | |
/* javascript collections. Only need to rewrite if type parameter is <:< TOJS */ | |
else if (rt <:< typeOf[js.Dictionary[_]] && rt.typeArgs.head <:< typeOf[TOJS]) | |
q"""$target.map{case(k, o) => (k, if(o == null) null else o.toJS)}.toJSDictionary""" | |
else if (rt <:< typeOf[js.Array[_]] && rt.typeArgs.head <:< typeOf[TOJS]) | |
q"""$target.map(o => if(o == null) null else o.toJS)""" | |
/* rewrite functions returning a Callback so that javascript land can call them */ | |
else if (rt <:< typeOf[CallbackTo[_]]) | |
q"""$target.toJsFn""" | |
else if (rt <:< typeOf[Function0[CallbackTo[_]]]) | |
q"""$target().toJsFn""" | |
else if (rt <:< typeOf[Function1[_, CallbackTo[_]]]) | |
q"""((t0: ${rt.typeArgs(0)}) => $target(t0).runNow())""" | |
else if (rt <:< typeOf[Function2[_, _, CallbackTo[_]]]) | |
q"""((t0: ${rt.typeArgs(0)}, t1: ${rt.typeArgs(1)}) => $target(t0, t1).runNow())""" | |
else if (rt <:< typeOf[Function3[_, _, _, CallbackTo[_]]]) | |
q"""((t0: ${rt.typeArgs(0)}, t1: ${rt.typeArgs(1)}, t2: ${rt.typeArgs(2)}) => $target(t0, t1, t2).runNow())""" | |
/* Other values. Keep AnyVal below at least CallbackTo */ | |
else if (rt <:< typeOf[AnyVal] && isNotPrimitiveAnyVal(rt)) | |
q"""$target.value""" | |
else if (rt <:< typeOf[Enumeration#Value]) | |
q"""$target.toString()""" | |
else | |
q"""$target""" | |
} | |
val tpe = c.weakTypeOf[T] | |
val target = c.freshName[TermName](TermName("t")) | |
val props = c.freshName[TermName](TermName("p")) | |
val fieldSymbols: List[Symbol] = tpe.decls.collectFirst { | |
case m: MethodSymbol if m.isPrimaryConstructor => m | |
}.get.paramLists.head | |
val fieldUpdates = fieldSymbols.map{ | |
f => | |
val name = f.asTerm.name | |
val decoded = name.decodedName.toString | |
if (isOptional(f.typeSignature)){ | |
val valueTree = getJSValueTree(q"v", f.typeSignature.typeArgs.head) | |
q"""$target.$name.foreach(v => $props.updateDynamic($decoded)($valueTree))""" | |
} else { | |
val valueTree = getJSValueTree(q"$target.$name", f.typeSignature) | |
q"""$props.updateDynamic($decoded)($valueTree)""" | |
} | |
} | |
q""" ($target: $tpe) => { | |
import scala.language.reflectiveCalls | |
import scalajs.js.JSConverters._ | |
val $props = scala.scalajs.js.Dynamic.literal() | |
..$fieldUpdates | |
$props | |
}""" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment