Coder Social home page Coder Social logo

j2html-gwt's Introduction

License: MIT

j2html-gwt

A simple wrapper for the j2html.com template engine that makes it possible to run inside GWT environment.

Getting started

Add the j2html-gwt maven repository

<repositories>
    <repository>
        <id>j2html-gwt-mvn-repo</id>
        <url>https://raw.github.com/throwable/j2html-gwt/mvn-repo/</url>
        <snapshots>
            <enabled>true</enabled>
        </snapshots>
    </repository>
</repositories>

Add these maven dependencies

<dependencies>
    <!-- j2html-gwt wrapper -->
    <dependency>
        <groupId>com.j2html</groupId>
        <artifactId>j2html-gwt</artifactId>
        <version>0.1-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
    <!-- original j2html library -->
    <dependency>
        <groupId>com.j2html</groupId>
        <artifactId>j2html</artifactId>
        <version>1.2.2</version>
        <scope>provided</scope>
    </dependency>
    <!-- source code needed for GWT compilation -->
    <dependency>
        <groupId>com.j2html</groupId>
        <artifactId>j2html</artifactId>
        <version>1.2.2</version>
        <classifier>sources</classifier>
        <scope>provided</scope>
    </dependency>
</dependencies>

Include J2Html library into YOUR-MODULE.gwt.xml file

<module>
    <inherits name="j2html.J2Html"/>
</module>

Sample usage

public class J2HtmlGwtTest implements EntryPoint {
    public void onModuleLoad() {
        Document.get().getBody().setInnerHTML(
            div(
                h1("Html generated by j2html"),
                p("This is a sample text"),
                span(
                      button("Sample button"),
                      input().withType("text").withValue("Sample input")
                )
            ).render()
        );
    }
}

Limitations

You can not use some tags that refer to the local file (InlineStaticResource) and JS/CSS minifiers as they are not GWT-compatible.

j2html-gwt's People

Contributors

throwable avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.