Last active
December 17, 2015 13:10
-
-
Save spullara/5615436 to your computer and use it in GitHub Desktop.
One idea as to how to do two passes for first compiling the translations and then compiling the regular mustache templates.
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 com.github.mustachejava; | |
import com.google.common.base.Function; | |
import com.google.common.cache.CacheBuilder; | |
import com.google.common.cache.CacheLoader; | |
import com.google.common.cache.LoadingCache; | |
import org.junit.Test; | |
import java.io.IOException; | |
import java.io.Reader; | |
import java.io.StringReader; | |
import java.io.StringWriter; | |
import static junit.framework.Assert.assertEquals; | |
/** | |
* If you want to precompile translations, you will need to do two passes against | |
* templates. This is an example of how to implement this. | |
*/ | |
public class PreTranslateTest { | |
@Test | |
public void testPretranslate() throws IOException { | |
MustacheFactory mf = new DefaultMustacheFactory() { | |
MustacheParser mp = new MustacheParser(this) { | |
@Override | |
public Mustache compile(Reader reader, String file) { | |
return super.compile(reader, file, "{[", "]}"); | |
} | |
}; | |
@Override | |
public Mustache compile(Reader reader, String file, String sm, String em) { | |
return super.compile(reader, file, "{[", "]}"); | |
} | |
@Override | |
protected LoadingCache<String, Mustache> createMustacheCache() { | |
return CacheBuilder.newBuilder().build(new CacheLoader<String, Mustache>() { | |
@Override | |
public Mustache load(String key) throws Exception { | |
return mp.compile(key); | |
} | |
}); | |
} | |
}; | |
Mustache m = mf.compile("pretranslate.html"); | |
StringWriter sw = new StringWriter(); | |
m.execute(sw, new Object() { | |
Function i = new TemplateFunction() { | |
@Override | |
public String apply(java.lang.String input) { | |
return "{{test}} Translate"; | |
} | |
}; | |
}).close(); | |
assertEquals("{{#show}}\n{{test}} Translate\n{{/show}}", sw.toString()); | |
mf = new DefaultMustacheFactory(); | |
m = mf.compile(new StringReader(sw.toString()), "pretranslate.html"); | |
sw = new StringWriter(); | |
m.execute(sw, new Object() { | |
boolean show = true; | |
String test = "Now"; | |
}).close(); | |
assertEquals("Now Translate\n", sw.toString()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment