summaryrefslogtreecommitdiffstats
path: root/documentation/clientside
diff options
context:
space:
mode:
authorTeemu Suo-Anttila <teemusa@vaadin.com>2016-05-12 14:24:33 +0300
committerMarko Grönroos <magi@vaadin.com>2016-07-12 12:33:26 +0000
commit7ac2089afb27af6fdb4f187c934a9a1dde937f1b (patch)
tree84034baa517f5ca2dacabc3938a1a582324fba4d /documentation/clientside
parent7898b7fc034b8587fd083f8f5e82930f9c36cd2f (diff)
downloadvaadin-framework-7ac2089afb27af6fdb4f187c934a9a1dde937f1b.tar.gz
vaadin-framework-7ac2089afb27af6fdb4f187c934a9a1dde937f1b.zip
Add basic AppWidgetset documentation
Change-Id: Iaea8b5267c7ccb2a6bc667cc89078bd3c4bf2435
Diffstat (limited to 'documentation/clientside')
-rw-r--r--documentation/clientside/clientside-compiling.asciidoc186
-rw-r--r--documentation/clientside/img/widgetset-compiling-toolbar.pngbin0 -> 4556 bytes
2 files changed, 145 insertions, 41 deletions
diff --git a/documentation/clientside/clientside-compiling.asciidoc b/documentation/clientside/clientside-compiling.asciidoc
index 328487d178..ac1c41bf5d 100644
--- a/documentation/clientside/clientside-compiling.asciidoc
+++ b/documentation/clientside/clientside-compiling.asciidoc
@@ -7,68 +7,172 @@ layout: page
[[clientside.compiling]]
= Compiling a Client-Side Module
-A client-side module, either a widget set or a pure client-side module, needs to
-be compiled to JavaScript using the Vaadin Client Compiler. During development,
-the Development Mode makes the compilation automatically when you reload the
-page, provided that the module has been initially compiled once with the
-compiler.
-
-As most Vaadin add-ons include widgets, widget set compilation is usually needed
-when using add-ons. In that case, the widget sets from different add-ons are
-compiled into a __project widget set__, as described in
-<<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview,"Using Vaadin Add-ons">>.
-
-////
-TODO Provide a link to a proper add-on compilation section when one is
-available.
-////
+A client-side module, either a Vaadin widget set or a pure client-side module, needs to be compiled to JavaScript using the Vaadin Client Compiler.
+
+Widget set compilation is most often needed when using add-ons.
+In that case, the widget sets from different add-ons are compiled into an _application widget set_, as described in <<dummy/../../../framework/addons/addons-overview.asciidoc#addons.overview, "Using Vaadin Add-ons">>.
+
+When doing client-side development, you need to compile the widget set every time you modify the client-side code.
[[clientside.compiling.overview]]
== Vaadin Compiler Overview
-The Vaadin Client Compiler compiles Java to JavaScript. It is provided as the
-[filename]#vaadin-client-compiler# JAR, which you can execute with the
-[literal]#++-jar++# parameter for the Java runtime. It requires the
-[filename]#vaadin-client# JAR, which contains the Vaadin client-side framework.
+The Vaadin Client Compiler compiles Java to JavaScript.
+It is provided as the executable [filename]#vaadin-client-compiler# JAR.
+// You can run it with the [literal]#++-jar++# parameter for the Java runtime.
+It requires the [filename]#vaadin-client# JAR, which contains the [classname]#DefaultWidgetSet#, Vaadin client-side framework.
+
+The compiler compiles a _client module_, which can either be a pure client-side module or a Vaadin widget set, that is, the Vaadin Client-Side Engine that includes the widgets used in the application.
+The client module is defined with a module descriptor, which was described in <<clientside-module#clientside.module, "Client-Side Module Descriptor">>.
+The module descriptor for application widget sets is automatically generated.
+
+While you can compile client modules individually, in Vaadin applications you normally combine them in one application widget set.
+The application widget set includes any add-on and custom widgets.
+The compiler scans the class path for any widget sets to include in the application widget set.
+
+=== Compilation Result
+
+The compiler writes the compilation result to a target folder that will include the compiled JavaScript with any static resources included in the module.
+
+[[clientside.compiling.maven]]
+== Compiling in Maven Projects
+
+The Vaadin Maven Plugin, which is enabled in all Vaadin archetypes, makes Maven to automatically compile the widget set when necessary.
+
+ifdef::web[]
+=== Plugin Configuration
+
+[source,xml]
+----
+<plugin>
+ <groupId>com.vaadin</groupId>
+ <artifactId>vaadin-maven-plugin</artifactId>
+ <version>${vaadin.plugin.version}</version>
+
+ <configuration>
+ <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
+ <webappDirectory>${basedir}/target/classes/VAADIN/widgetsets</webappDirectory>
+ <draftCompile>false</draftCompile>
+ <compileReport>false</compileReport>
+ <style>OBF</style>
+ <strict>true</strict>
+ </configuration>
+
+ <executions>
+ <execution>
+ <goals>
+ <goal>update-theme</goal>
+ <goal>update-widgetset</goal>
+ <goal>compile</goal>
+ <goal>compile-theme</goal>
+ </goals>
+ </execution>
+ </executions>
+</plugin>
+----
+endif::web[]
+
+[[clientside.compiling.maven.modes]]
+=== Compilation Modes
+
+The Vaadin Maven Plugin can compile widget sets either locally or online by using a cloud service.
+The online compilation requires that all the widget sets are available in certain public Maven repositories.
+As this is not the case when developing custom widgets, you must use the `local` mode.
+
+Local compilation is the default mode, so you only need to enable it if you have changed the mode to use the online service.
+
+See <<DUMMY/../../addons/addons-maven#addons.maven.modes, "Widget Set Modes">> for more information.
+
+[[clientside.compiling.maven.compiling]]
+=== Compiling
-The compiler compiles a __client module__, which can be either a pure
-client-side module or a Vaadin widget set, that is, the Vaadin Client-Side
-Engine that includes the widgets used in the application. The client module is
-defined with a module descriptor, which was described in
-<<clientside-module#clientside.module, "Client-Side Module Descriptor">>.
+You can explicitly compile the widget set with the [literal]#vaadin:compile# goal.
-The compiler writes the compilation result to a target folder that will include
-the compiled JavaScript with any static resources included in the module.
+On command-line:
+[subs="normal"]
+----
+[prompt]#$# [command]#mvn# [parameter]#vaadin:compile#
+----
+
+If there is no widget set defined, but you have add-on dependencies that need a
+custom widget set, the Vaadin Maven plugin will automatically generate a widget set definition for you.
[[clientside.compiling.eclipse]]
== Compiling in Eclipse
-When the Vaadin Plugin is installed in Eclipse, you can simply click the
-button in the toolbar.
+When you have the Vaadin Plugin installed in Eclipse, you can simply click the *Compile Vaadin Widgetset* button in the toolbar.
+
+.Widget set compilation button in Eclipse
+image::img/widgetset-compiling-toolbar.png[width=50%, scaledwidth=60%]
+
It will compile the widget set it finds from the project.
If the project has multiple widget sets, such as one for custom widgets and another one for the project, you need to select the module descriptor of the widget set to compile before clicking the button.
-The compilation with Vaadin Plugin for Eclipse currently requires that the
-module descriptor has suffix [filename]#Widgetset.gwt.xml#, although you can use
-it to compile also other client-side modules than widget sets. The result is
-written under [filename]#WebContent/VAADIN/widgetsets# folder.
+Compiling with the Vaadin Plugin for Eclipse currently requires that the module descriptor has suffix [filename]#Widgetset.gwt.xml#, although you can use it to compile also other client-side modules than widget sets.
+The result is written under [filename]#WebContent/VAADIN/widgetsets# folder.
+ifdef::web[]
[[clientside.compiling.ant]]
== Compiling with Ant
-You can find a script template for compiling widget sets with Ant and Ivy at the
-link:http://vaadin.com/download/[Vaadin download page].
-You can copy the build script to your project and, once configured, run it with Ant.
+Consider the following configuration:
-[[clientside.compiling.maven]]
-== Compiling with Maven
+[source, xml, subs="normal"]
+----
+<target name="configure">
+ <!-- Where project source files are located -->
+ <property name="sources" value="[replaceable]#src#" />
-You can compile the widget set with the [literal]#++vaadin:compile++# goal as
-follows:
+ <!-- Path to root of web application folder -->
+ <property name="webroot" value="[replaceable]#WebContent#" />
-[subs="normal"]
+ <!-- Compilation work directory -->
+ <property name="workdir" value="[replaceable]#build/work#"/>
+</target>
----
-[prompt]#$# [command]#mvn# [parameter]#vaadin:compile#
+
+The script assumes the Eclipse project layout with [filename]#WebContent# folder.
+
+The `compile-widgetset` target invokes the Vaadin Compiler to compile the widget set.
+The class path includes source folder in case there are custom widgets, compiled server-side classes, and the dependencies resolved with Ivy.
+
+[source, xml]
+----
+<target name="compile-widgetset" depends="init,resolve">
+ <java classname="com.google.gwt.dev.Compiler"
+ failonerror="yes" fork="yes">
+ <arg value="-war" />
+ <arg value="${webroot}/VAADIN/widgetsets" />
+ <arg value="${widgetset}" />
+ <arg value="-logLevel"/>
+ <arg value="INFO"/>
+ <!-- <arg value="-strict"/> -->
+ <jvmarg value="-Xmx1024M"/>
+ <jvmarg value="-Xss512M"/>
+ <jvmarg value="-Djava.awt.headless=true"/>
+
+ <classpath>
+ <!-- Location of source code -->
+ <pathelement path="${sources}" />
+
+ <!-- Compiled server-side classes -->
+ <pathelement path="${workdir}/WEB-INF/classes" />
+
+ <!-- Dependencies retrieved with Ivy -->
+ <path refid="ivy.deps.widgetset"/>
+ </classpath>
+ <sysproperty key="vFailIfNotSerializable" value="${failifnotserializable}" />
+ </java>
+
+ <!-- Cleanup -->
+ <delete dir="${webroot}/VAADIN/gwt-unitCache"/>
+ <delete dir="${webroot}/VAADIN/widgetsets/WEB-INF"/>
+</target>
----
+
+You can find the complete example build script for compiling widget sets with Ant and Ivy in the https://github.com/vaadin/book-examples/blob/master/build/build.xml[build.xml for the Book Examples].
+You can copy the build script to your project and, once configured, run it with Ant.
+You may need to do some configuration in the build targets, such as to exclude or include source or target paths.
+endif::web[]
diff --git a/documentation/clientside/img/widgetset-compiling-toolbar.png b/documentation/clientside/img/widgetset-compiling-toolbar.png
new file mode 100644
index 0000000000..8a77aaaf58
--- /dev/null
+++ b/documentation/clientside/img/widgetset-compiling-toolbar.png
Binary files differ