ソースを参照

latian vaadin

catur 6 年 前
コミット
3300e0fbe1
共有38 個のファイルを変更した14588 個の追加0 個の削除を含む
  1. 39 0
      .classpath
  2. 23 0
      .project
  3. 5 0
      .settings/com.vaadin.designer.prefs
  4. 2 0
      .settings/com.vaadin.integration.eclipse.prefs
  5. 4 0
      .settings/org.eclipse.core.resources.prefs
  6. 6 0
      .settings/org.eclipse.jdt.core.prefs
  7. 4 0
      .settings/org.eclipse.m2e.core.prefs
  8. 52 0
      README.md
  9. 173 0
      pom.xml
  10. 164 0
      src/main/java/my/vaadin/app/Customer.java
  11. 23 0
      src/main/java/my/vaadin/app/CustomerDesign.java
  12. 65 0
      src/main/java/my/vaadin/app/CustomerForm.java
  13. 23 0
      src/main/java/my/vaadin/app/CustomerFormDesign.java
  14. 186 0
      src/main/java/my/vaadin/app/CustomerService.java
  15. 5 0
      src/main/java/my/vaadin/app/CustomerStatus.java
  16. 115 0
      src/main/java/my/vaadin/app/MyUI.java
  17. 1 0
      src/main/resources/README
  18. 7 0
      src/main/webapp/VAADIN/themes/mytheme/addons.scss
  19. BIN
      src/main/webapp/VAADIN/themes/mytheme/favicon.ico
  20. 38 0
      src/main/webapp/VAADIN/themes/mytheme/mytheme.scss
  21. 12414 0
      src/main/webapp/VAADIN/themes/mytheme/styles.css
  22. 11 0
      src/main/webapp/VAADIN/themes/mytheme/styles.scss
  23. 1 0
      target/classes/README
  24. BIN
      target/classes/my/vaadin/app/Customer.class
  25. BIN
      target/classes/my/vaadin/app/CustomerDesign.class
  26. BIN
      target/classes/my/vaadin/app/CustomerForm.class
  27. BIN
      target/classes/my/vaadin/app/CustomerFormDesign.class
  28. BIN
      target/classes/my/vaadin/app/CustomerService$1.class
  29. BIN
      target/classes/my/vaadin/app/CustomerService$2.class
  30. BIN
      target/classes/my/vaadin/app/CustomerService.class
  31. BIN
      target/classes/my/vaadin/app/CustomerStatus.class
  32. BIN
      target/classes/my/vaadin/app/MyUI$MyUIServlet.class
  33. BIN
      target/classes/my/vaadin/app/MyUI.class
  34. 0 0
      target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
  35. 1 0
      target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
  36. 26 0
      target/tomcat/conf/tomcat-users.xml
  37. 1200 0
      target/tomcat/conf/web.xml
  38. 0 0
      target/ws-updated

+ 39 - 0
.classpath

@@ -0,0 +1,39 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<classpath>
3
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
4
+		<attributes>
5
+			<attribute name="optional" value="true"/>
6
+			<attribute name="maven.pomderived" value="true"/>
7
+		</attributes>
8
+	</classpathentry>
9
+	<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
10
+		<attributes>
11
+			<attribute name="maven.pomderived" value="true"/>
12
+		</attributes>
13
+	</classpathentry>
14
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
15
+		<attributes>
16
+			<attribute name="optional" value="true"/>
17
+			<attribute name="maven.pomderived" value="true"/>
18
+			<attribute name="test" value="true"/>
19
+		</attributes>
20
+	</classpathentry>
21
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
22
+		<attributes>
23
+			<attribute name="maven.pomderived" value="true"/>
24
+		</attributes>
25
+	</classpathentry>
26
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
27
+		<attributes>
28
+			<attribute name="maven.pomderived" value="true"/>
29
+		</attributes>
30
+	</classpathentry>
31
+	<classpathentry kind="src" output="target/classes" path="target/generated-resources/gwt">
32
+		<attributes>
33
+			<attribute name="optional" value="true"/>
34
+			<attribute name="maven.pomderived" value="true"/>
35
+			<attribute name="ignore_optional_problems" value="true"/>
36
+		</attributes>
37
+	</classpathentry>
38
+	<classpathentry kind="output" path="target/classes"/>
39
+</classpath>

+ 23 - 0
.project

@@ -0,0 +1,23 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<projectDescription>
3
+	<name>app</name>
4
+	<comment></comment>
5
+	<projects>
6
+	</projects>
7
+	<buildSpec>
8
+		<buildCommand>
9
+			<name>org.eclipse.jdt.core.javabuilder</name>
10
+			<arguments>
11
+			</arguments>
12
+		</buildCommand>
13
+		<buildCommand>
14
+			<name>org.eclipse.m2e.core.maven2Builder</name>
15
+			<arguments>
16
+			</arguments>
17
+		</buildCommand>
18
+	</buildSpec>
19
+	<natures>
20
+		<nature>org.eclipse.jdt.core.javanature</nature>
21
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
22
+	</natures>
23
+</projectDescription>

File diff suppressed because it is too large
+ 5 - 0
.settings/com.vaadin.designer.prefs


+ 2 - 0
.settings/com.vaadin.integration.eclipse.prefs

@@ -0,0 +1,2 @@
1
+com.vaadin.integration.eclipse.mavenLatestVersionsUpgrade=["8.0.7","8.6.0"]
2
+eclipse.preferences.version=1

+ 4 - 0
.settings/org.eclipse.core.resources.prefs

@@ -0,0 +1,4 @@
1
+eclipse.preferences.version=1
2
+encoding//src/main/java=UTF-8
3
+encoding//src/main/resources=UTF-8
4
+encoding/<project>=UTF-8

+ 6 - 0
.settings/org.eclipse.jdt.core.prefs

@@ -0,0 +1,6 @@
1
+eclipse.preferences.version=1
2
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
3
+org.eclipse.jdt.core.compiler.compliance=1.8
4
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
5
+org.eclipse.jdt.core.compiler.release=disabled
6
+org.eclipse.jdt.core.compiler.source=1.8

+ 4 - 0
.settings/org.eclipse.m2e.core.prefs

@@ -0,0 +1,4 @@
1
+activeProfiles=
2
+eclipse.preferences.version=1
3
+resolveWorkspaceProjects=true
4
+version=1

+ 52 - 0
README.md

@@ -0,0 +1,52 @@
1
+app
2
+==============
3
+
4
+Template for a simple Vaadin application that only requires a Servlet 3.0 container to run.
5
+
6
+
7
+Workflow
8
+========
9
+
10
+To compile the entire project, run "mvn install".
11
+
12
+To run the application, run "mvn jetty:run" and open http://localhost:8080/ .
13
+
14
+To produce a deployable production mode WAR:
15
+- change productionMode to true in the servlet class configuration (nested in the UI class)
16
+- run "mvn clean package"
17
+- test the war file with "mvn jetty:run-war"
18
+
19
+Client-Side compilation
20
+-------------------------
21
+
22
+The generated maven project is using an automatically generated widgetset by default. 
23
+When you add a dependency that needs client-side compilation, the maven plugin will 
24
+automatically generate it for you. Your own client-side customisations can be added into
25
+package "client".
26
+
27
+Debugging client side code
28
+  - run "mvn vaadin:run-codeserver" on a separate console while the application is running
29
+  - activate Super Dev Mode in the debug window of the application
30
+
31
+Developing a theme using the runtime compiler
32
+-------------------------
33
+
34
+When developing the theme, Vaadin can be configured to compile the SASS based
35
+theme at runtime in the server. This way you can just modify the scss files in
36
+your IDE and reload the browser to see changes.
37
+
38
+To use the runtime compilation, open pom.xml and comment out the compile-theme 
39
+goal from vaadin-maven-plugin configuration. To remove a possibly existing 
40
+pre-compiled theme, run "mvn clean package" once.
41
+
42
+When using the runtime compiler, running the application in the "run" mode 
43
+(rather than in "debug" mode) can speed up consecutive theme compilations
44
+significantly.
45
+
46
+It is highly recommended to disable runtime compilation for production WAR files.
47
+
48
+Using Vaadin pre-releases
49
+-------------------------
50
+
51
+If Vaadin pre-releases are not enabled by default, use the Maven parameter
52
+"-P vaadin-prerelease" or change the activation default value of the profile in pom.xml .

+ 173 - 0
pom.xml

@@ -0,0 +1,173 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
+	<modelVersion>4.0.0</modelVersion>
5
+
6
+	<groupId>my.vaadin</groupId>
7
+	<artifactId>app</artifactId>
8
+	<packaging>war</packaging>
9
+	<version>0.0.1-SNAPSHOT</version>
10
+	<name>app</name>
11
+
12
+	<prerequisites>
13
+		<maven>3</maven>
14
+	</prerequisites>
15
+
16
+	<properties>
17
+		<vaadin.version>8.0.0</vaadin.version>
18
+		<vaadin.plugin.version>8.0.0</vaadin.plugin.version>
19
+		<jetty.plugin.version>9.3.9.v20160517</jetty.plugin.version>
20
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21
+		<maven.compiler.source>1.8</maven.compiler.source>
22
+		<maven.compiler.target>1.8</maven.compiler.target>
23
+		<!-- If there are no local customisations, this can also be "fetch" or "cdn" -->
24
+		<vaadin.widgetset.mode>local</vaadin.widgetset.mode>
25
+	</properties>
26
+
27
+	<repositories>
28
+		<repository>
29
+			<id>vaadin-addons</id>
30
+			<url>http://maven.vaadin.com/vaadin-addons</url>
31
+		</repository>
32
+	</repositories>
33
+
34
+	<dependencyManagement>
35
+		<dependencies>
36
+			<dependency>
37
+				<groupId>com.vaadin</groupId>
38
+				<artifactId>vaadin-bom</artifactId>
39
+				<version>${vaadin.version}</version>
40
+				<type>pom</type>
41
+				<scope>import</scope>
42
+			</dependency>
43
+		</dependencies>
44
+	</dependencyManagement>
45
+
46
+	<dependencies>
47
+		<dependency>
48
+			<groupId>javax.servlet</groupId>
49
+			<artifactId>javax.servlet-api</artifactId>
50
+			<version>3.0.1</version>
51
+			<scope>provided</scope>
52
+		</dependency>
53
+		<dependency>
54
+			<groupId>com.vaadin</groupId>
55
+			<artifactId>vaadin-server</artifactId>
56
+		</dependency>
57
+		<dependency>
58
+			<groupId>com.vaadin</groupId>
59
+			<artifactId>vaadin-push</artifactId>
60
+		</dependency>
61
+		<dependency>
62
+			<groupId>com.vaadin</groupId>
63
+			<artifactId>vaadin-client-compiled</artifactId>
64
+		</dependency>
65
+		<dependency>
66
+			<groupId>com.vaadin</groupId>
67
+			<artifactId>vaadin-themes</artifactId>
68
+		</dependency>
69
+	</dependencies>
70
+
71
+	<build>
72
+		<plugins>
73
+			<plugin>
74
+				<groupId>org.apache.maven.plugins</groupId>
75
+				<artifactId>maven-war-plugin</artifactId>
76
+				<version>3.0.0</version>
77
+				<configuration>
78
+					<failOnMissingWebXml>false</failOnMissingWebXml>
79
+					<!-- Exclude an unnecessary file generated by the GWT compiler. -->
80
+					<packagingExcludes>WEB-INF/classes/VAADIN/widgetsets/WEB-INF/**</packagingExcludes>
81
+				</configuration>
82
+			</plugin>
83
+			<plugin>
84
+				<groupId>com.vaadin</groupId>
85
+				<artifactId>vaadin-maven-plugin</artifactId>
86
+				<version>${vaadin.plugin.version}</version>
87
+				<executions>
88
+					<execution>
89
+						<goals>
90
+							<goal>update-theme</goal>
91
+							<goal>update-widgetset</goal>
92
+							<goal>compile</goal>
93
+							<!-- Comment out compile-theme goal to use on-the-fly theme compilation -->
94
+							<goal>compile-theme</goal>
95
+						</goals>
96
+					</execution>
97
+				</executions>
98
+			</plugin>
99
+			<plugin>
100
+				<groupId>org.apache.maven.plugins</groupId>
101
+				<artifactId>maven-clean-plugin</artifactId>
102
+				<version>3.0.0</version>
103
+				<!-- Clean up also any pre-compiled themes -->
104
+				<configuration>
105
+					<filesets>
106
+						<fileset>
107
+							<directory>src/main/webapp/VAADIN/themes</directory>
108
+							<includes>
109
+								<include>**/styles.css</include>
110
+								<include>**/styles.scss.cache</include>
111
+							</includes>
112
+						</fileset>
113
+					</filesets>
114
+				</configuration>
115
+			</plugin>
116
+
117
+			<!-- The Jetty plugin allows us to easily test the development build by
118
+				running jetty:run on the command line. -->
119
+			<plugin>
120
+				<groupId>org.eclipse.jetty</groupId>
121
+				<artifactId>jetty-maven-plugin</artifactId>
122
+				<version>${jetty.plugin.version}</version>
123
+				<configuration>
124
+					<scanIntervalSeconds>2</scanIntervalSeconds>
125
+				</configuration>
126
+			</plugin>
127
+		</plugins>
128
+	</build>
129
+
130
+	<profiles>
131
+		<profile>
132
+			<!-- Vaadin pre-release repositories -->
133
+			<id>vaadin-prerelease</id>
134
+			<activation>
135
+				<activeByDefault>false</activeByDefault>
136
+			</activation>
137
+
138
+			<repositories>
139
+				<repository>
140
+					<id>vaadin-prereleases</id>
141
+					<url>http://maven.vaadin.com/vaadin-prereleases</url>
142
+				</repository>
143
+				<repository>
144
+					<id>vaadin-snapshots</id>
145
+					<url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
146
+					<releases>
147
+						<enabled>false</enabled>
148
+					</releases>
149
+					<snapshots>
150
+						<enabled>true</enabled>
151
+					</snapshots>
152
+				</repository>
153
+			</repositories>
154
+			<pluginRepositories>
155
+				<pluginRepository>
156
+					<id>vaadin-prereleases</id>
157
+					<url>http://maven.vaadin.com/vaadin-prereleases</url>
158
+				</pluginRepository>
159
+				<pluginRepository>
160
+					<id>vaadin-snapshots</id>
161
+					<url>https://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
162
+					<releases>
163
+						<enabled>false</enabled>
164
+					</releases>
165
+					<snapshots>
166
+						<enabled>true</enabled>
167
+					</snapshots>
168
+				</pluginRepository>
169
+			</pluginRepositories>
170
+		</profile>
171
+	</profiles>
172
+
173
+</project>

+ 164 - 0
src/main/java/my/vaadin/app/Customer.java

@@ -0,0 +1,164 @@
1
+package my.vaadin.app;
2
+
3
+import java.io.Serializable;
4
+import java.time.LocalDate;
5
+
6
+/**
7
+ * A entity object, like in any other Java application. In a typical real world
8
+ * application this could for example be a JPA entity.
9
+ */
10
+@SuppressWarnings("serial")
11
+public class Customer implements Serializable, Cloneable {
12
+
13
+	private Long id;
14
+
15
+	private String firstName = "";
16
+
17
+	private String lastName = "";
18
+
19
+	private LocalDate birthDate;
20
+
21
+	private CustomerStatus status;
22
+
23
+	private String email = "";
24
+
25
+	public Long getId() {
26
+		return id;
27
+	}
28
+
29
+	public void setId(Long id) {
30
+		this.id = id;
31
+	}
32
+
33
+	/**
34
+	 * Get the value of email
35
+	 *
36
+	 * @return the value of email
37
+	 */
38
+	public String getEmail() {
39
+		return email;
40
+	}
41
+
42
+	/**
43
+	 * Set the value of email
44
+	 *
45
+	 * @param email
46
+	 *            new value of email
47
+	 */
48
+	public void setEmail(String email) {
49
+		this.email = email;
50
+	}
51
+
52
+	/**
53
+	 * Get the value of status
54
+	 *
55
+	 * @return the value of status
56
+	 */
57
+	public CustomerStatus getStatus() {
58
+		return status;
59
+	}
60
+
61
+	/**
62
+	 * Set the value of status
63
+	 *
64
+	 * @param status
65
+	 *            new value of status
66
+	 */
67
+	public void setStatus(CustomerStatus status) {
68
+		this.status = status;
69
+	}
70
+
71
+	/**
72
+	 * Get the value of birthDate
73
+	 *
74
+	 * @return the value of birthDate
75
+	 */
76
+	public LocalDate getBirthDate() {
77
+		return birthDate;
78
+	}
79
+
80
+	/**
81
+	 * Set the value of birthDate
82
+	 *
83
+	 * @param birthDate
84
+	 *            new value of birthDate
85
+	 */
86
+	public void setBirthDate(LocalDate birthDate) {
87
+		this.birthDate = birthDate;
88
+	}
89
+
90
+	/**
91
+	 * Get the value of lastName
92
+	 *
93
+	 * @return the value of lastName
94
+	 */
95
+	public String getLastName() {
96
+		return lastName;
97
+	}
98
+
99
+	/**
100
+	 * Set the value of lastName
101
+	 *
102
+	 * @param lastName
103
+	 *            new value of lastName
104
+	 */
105
+	public void setLastName(String lastName) {
106
+		this.lastName = lastName;
107
+	}
108
+
109
+	/**
110
+	 * Get the value of firstName
111
+	 *
112
+	 * @return the value of firstName
113
+	 */
114
+	public String getFirstName() {
115
+		return firstName;
116
+	}
117
+
118
+	/**
119
+	 * Set the value of firstName
120
+	 *
121
+	 * @param firstName
122
+	 *            new value of firstName
123
+	 */
124
+	public void setFirstName(String firstName) {
125
+		this.firstName = firstName;
126
+	}
127
+
128
+	public boolean isPersisted() {
129
+		return id != null;
130
+	}
131
+
132
+	@Override
133
+	public boolean equals(Object obj) {
134
+		if (this == obj) {
135
+			return true;
136
+		}
137
+		if (this.id == null) {
138
+			return false;
139
+		}
140
+
141
+		if (obj instanceof Customer && obj.getClass().equals(getClass())) {
142
+			return this.id.equals(((Customer) obj).id);
143
+		}
144
+
145
+		return false;
146
+	}
147
+
148
+	@Override
149
+	public int hashCode() {
150
+		int hash = 5;
151
+		hash = 43 * hash + (id == null ? 0 : id.hashCode());
152
+		return hash;
153
+	}
154
+
155
+	@Override
156
+	public Customer clone() throws CloneNotSupportedException {
157
+		return (Customer) super.clone();
158
+	}
159
+
160
+	@Override
161
+	public String toString() {
162
+		return firstName + " " + lastName;
163
+	}
164
+}

+ 23 - 0
src/main/java/my/vaadin/app/CustomerDesign.java

@@ -0,0 +1,23 @@
1
+package my.vaadin.app;
2
+
3
+import com.vaadin.annotations.AutoGenerated;
4
+import com.vaadin.annotations.DesignRoot;
5
+import com.vaadin.ui.VerticalLayout;
6
+import com.vaadin.ui.declarative.Design;
7
+
8
+/** 
9
+ * !! DO NOT EDIT THIS FILE !!
10
+ * 
11
+ * This class is generated by Vaadin Designer and will be overwritten.
12
+ * 
13
+ * Please make a subclass with logic and additional interfaces as needed,
14
+ * e.g class LoginView extends LoginDesign implements View { }
15
+ */
16
+@DesignRoot
17
+@AutoGenerated
18
+@SuppressWarnings("serial")
19
+public class CustomerDesign extends VerticalLayout {
20
+	public CustomerDesign() {
21
+		Design.read(this);
22
+	}
23
+}

+ 65 - 0
src/main/java/my/vaadin/app/CustomerForm.java

@@ -0,0 +1,65 @@
1
+package my.vaadin.app;
2
+
3
+import com.vaadin.data.Binder;
4
+import com.vaadin.event.ShortcutAction.KeyCode;
5
+import com.vaadin.ui.Button;
6
+import com.vaadin.ui.DateField;
7
+import com.vaadin.ui.FormLayout;
8
+import com.vaadin.ui.HorizontalLayout;
9
+import com.vaadin.ui.NativeSelect;
10
+import com.vaadin.ui.TextField;
11
+import com.vaadin.ui.themes.ValoTheme;
12
+
13
+public class CustomerForm extends FormLayout {
14
+
15
+	private TextField firstName = new TextField("First name");
16
+	private TextField lastName = new TextField("Last name");
17
+	private TextField email = new TextField("Email");
18
+	private NativeSelect<CustomerStatus> status = new NativeSelect<>("Status");
19
+	private DateField birthdate = new DateField("Birthday");
20
+	private Button save = new Button("Save");
21
+	private Button delete = new Button("Delete");
22
+	
23
+	//inject class service
24
+	private CustomerService service = CustomerService.getInstance();
25
+	private Customer customer;
26
+	private MyUI myUI;
27
+	private Binder<Customer> binder = new Binder<>(Customer.class);
28
+	
29
+	public CustomerForm(MyUI myUI) {
30
+		this.myUI = myUI;
31
+	
32
+		setSizeUndefined();
33
+		HorizontalLayout buttons = new HorizontalLayout(save,delete);
34
+		addComponents(firstName, lastName, email, status, birthdate, buttons);
35
+		
36
+		//ambil status di class customer status untuk dijadikan value combobox form
37
+		status.setItems(CustomerStatus.values());
38
+		save.setStyleName(ValoTheme.BUTTON_PRIMARY);
39
+		delete.setStyleName(ValoTheme.BUTTON_DANGER);
40
+		save.setClickShortcut(KeyCode.ENTER);
41
+		
42
+		binder.bindInstanceFields(this);
43
+		
44
+		save.addClickListener(e -> save());
45
+		delete.addClickListener(e -> delete());
46
+	}
47
+		public void setCustomer(Customer customer) {
48
+			this.customer = customer;
49
+			binder.setBean(customer);
50
+			
51
+			delete.setVisible(customer.isPersisted());
52
+			setVisible(true);
53
+			firstName.selectAll();
54
+		}
55
+		private void delete() {
56
+			service.delete(customer);
57
+			myUI.tableCustomer();
58
+			setVisible(true);
59
+		}
60
+		private void save() {
61
+			service.save(customer);
62
+			myUI.tableCustomer();
63
+			setVisible(false);
64
+		}
65
+}

+ 23 - 0
src/main/java/my/vaadin/app/CustomerFormDesign.java

@@ -0,0 +1,23 @@
1
+package my.vaadin.app;
2
+
3
+import com.vaadin.annotations.AutoGenerated;
4
+import com.vaadin.annotations.DesignRoot;
5
+import com.vaadin.ui.CustomComponent;
6
+import com.vaadin.ui.declarative.Design;
7
+
8
+/** 
9
+ * !! DO NOT EDIT THIS FILE !!
10
+ * 
11
+ * This class is generated by Vaadin Designer and will be overwritten.
12
+ * 
13
+ * Please make a subclass with logic and additional interfaces as needed,
14
+ * e.g class LoginView extends LoginDesign implements View { }
15
+ */
16
+@DesignRoot
17
+@AutoGenerated
18
+@SuppressWarnings("serial")
19
+public class CustomerFormDesign extends CustomComponent {
20
+	public CustomerFormDesign() {
21
+		Design.read(this);
22
+	}
23
+}

+ 186 - 0
src/main/java/my/vaadin/app/CustomerService.java

@@ -0,0 +1,186 @@
1
+package my.vaadin.app;
2
+
3
+import java.time.LocalDate;
4
+import java.util.ArrayList;
5
+import java.util.Collections;
6
+import java.util.Comparator;
7
+import java.util.HashMap;
8
+import java.util.List;
9
+import java.util.Random;
10
+import java.util.logging.Level;
11
+import java.util.logging.Logger;
12
+
13
+/**
14
+ * An in memory dummy "database" for the example purposes. In a typical Java app
15
+ * this class would be replaced by e.g. EJB or a Spring based service class.
16
+ * <p>
17
+ * In demos/tutorials/examples, get a reference to this service class with
18
+ * {@link CustomerService#getInstance()}.
19
+ */
20
+public class CustomerService {
21
+
22
+	private static CustomerService instance;
23
+	private static final Logger LOGGER = Logger.getLogger(CustomerService.class.getName());
24
+
25
+	private final HashMap<Long, Customer> contacts = new HashMap<>();
26
+	private long nextId = 0;
27
+
28
+	private CustomerService() {
29
+	}
30
+
31
+	/**
32
+	 * @return a reference to an example facade for Customer objects.
33
+	 */
34
+	public static CustomerService getInstance() {
35
+		if (instance == null) {
36
+			instance = new CustomerService();
37
+			instance.ensureTestData();
38
+		}
39
+		return instance;
40
+	}
41
+
42
+	/**
43
+	 * @return all available Customer objects.
44
+	 */
45
+	public synchronized List<Customer> findAll() {
46
+		return findAll(null);
47
+	}
48
+
49
+	/**
50
+	 * Finds all Customer's that match given filter.
51
+	 *
52
+	 * @param stringFilter
53
+	 *            filter that returned objects should match or null/empty string
54
+	 *            if all objects should be returned.
55
+	 * @return list a Customer objects
56
+	 */
57
+	public synchronized List<Customer> findAll(String stringFilter) {
58
+		ArrayList<Customer> arrayList = new ArrayList<>();
59
+		for (Customer contact : contacts.values()) {
60
+			try {
61
+				boolean passesFilter = (stringFilter == null || stringFilter.isEmpty())
62
+						|| contact.toString().toLowerCase().contains(stringFilter.toLowerCase());
63
+				if (passesFilter) {
64
+					arrayList.add(contact.clone());
65
+				}
66
+			} catch (CloneNotSupportedException ex) {
67
+				Logger.getLogger(CustomerService.class.getName()).log(Level.SEVERE, null, ex);
68
+			}
69
+		}
70
+		Collections.sort(arrayList, new Comparator<Customer>() {
71
+
72
+			@Override
73
+			public int compare(Customer o1, Customer o2) {
74
+				return (int) (o2.getId() - o1.getId());
75
+			}
76
+		});
77
+		return arrayList;
78
+	}
79
+
80
+	/**
81
+	 * Finds all Customer's that match given filter and limits the resultset.
82
+	 *
83
+	 * @param stringFilter
84
+	 *            filter that returned objects should match or null/empty string
85
+	 *            if all objects should be returned.
86
+	 * @param start
87
+	 *            the index of first result
88
+	 * @param maxresults
89
+	 *            maximum result count
90
+	 * @return list a Customer objects
91
+	 */
92
+	public synchronized List<Customer> findAll(String stringFilter, int start, int maxresults) {
93
+		ArrayList<Customer> arrayList = new ArrayList<>();
94
+		for (Customer contact : contacts.values()) {
95
+			try {
96
+				boolean passesFilter = (stringFilter == null || stringFilter.isEmpty())
97
+						|| contact.toString().toLowerCase().contains(stringFilter.toLowerCase());
98
+				if (passesFilter) {
99
+					arrayList.add(contact.clone());
100
+				}
101
+			} catch (CloneNotSupportedException ex) {
102
+				Logger.getLogger(CustomerService.class.getName()).log(Level.SEVERE, null, ex);
103
+			}
104
+		}
105
+		Collections.sort(arrayList, new Comparator<Customer>() {
106
+
107
+			@Override
108
+			public int compare(Customer o1, Customer o2) {
109
+				return (int) (o2.getId() - o1.getId());
110
+			}
111
+		});
112
+		int end = start + maxresults;
113
+		if (end > arrayList.size()) {
114
+			end = arrayList.size();
115
+		}
116
+		return arrayList.subList(start, end);
117
+	}
118
+
119
+	/**
120
+	 * @return the amount of all customers in the system
121
+	 */
122
+	public synchronized long count() {
123
+		return contacts.size();
124
+	}
125
+
126
+	/**
127
+	 * Deletes a customer from a system
128
+	 *
129
+	 * @param value
130
+	 *            the Customer to be deleted
131
+	 */
132
+	public synchronized void delete(Customer value) {
133
+		contacts.remove(value.getId());
134
+	}
135
+
136
+	/**
137
+	 * Persists or updates customer in the system. Also assigns an identifier
138
+	 * for new Customer instances.
139
+	 *
140
+	 * @param entry
141
+	 */
142
+	public synchronized void save(Customer entry) {
143
+		if (entry == null) {
144
+			LOGGER.log(Level.SEVERE,
145
+					"Customer is null. Are you sure you have connected your form to the application as described in tutorial chapter 7?");
146
+			return;
147
+		}
148
+		if (entry.getId() == null) {
149
+			entry.setId(nextId++);
150
+		}
151
+		try {
152
+			entry = (Customer) entry.clone();
153
+		} catch (Exception ex) {
154
+			throw new RuntimeException(ex);
155
+		}
156
+		contacts.put(entry.getId(), entry);
157
+	}
158
+
159
+	/**
160
+	 * Sample data generation
161
+	 */
162
+	public void ensureTestData() {
163
+		if (findAll().isEmpty()) {
164
+			final String[] names = new String[] { "Gabrielle Patel", "Brian Robinson", "Eduardo Haugen",
165
+					"Koen Johansen", "Alejandro Macdonald", "Angel Karlsson", "Yahir Gustavsson", "Haiden Svensson",
166
+					"Emily Stewart", "Corinne Davis", "Ryann Davis", "Yurem Jackson", "Kelly Gustavsson",
167
+					"Eileen Walker", "Katelyn Martin", "Israel Carlsson", "Quinn Hansson", "Makena Smith",
168
+					"Danielle Watson", "Leland Harris", "Gunner Karlsen", "Jamar Olsson", "Lara Martin",
169
+					"Ann Andersson", "Remington Andersson", "Rene Carlsson", "Elvis Olsen", "Solomon Olsen",
170
+					"Jaydan Jackson", "Bernard Nilsen" };
171
+			Random r = new Random(0);
172
+			for (String name : names) {
173
+				String[] split = name.split(" ");
174
+				Customer c = new Customer();
175
+				c.setFirstName(split[0]);
176
+				c.setLastName(split[1]);
177
+				c.setEmail(split[0].toLowerCase() + "@" + split[1].toLowerCase() + ".com");
178
+				c.setStatus(CustomerStatus.values()[r.nextInt(CustomerStatus.values().length)]);
179
+                int daysOld = 0 - r.nextInt(365 * 15 + 365 * 60);
180
+                c.setBirthDate(LocalDate.now().plusDays(daysOld));
181
+				save(c);
182
+			}
183
+		}
184
+	}
185
+
186
+}

+ 5 - 0
src/main/java/my/vaadin/app/CustomerStatus.java

@@ -0,0 +1,5 @@
1
+package my.vaadin.app;
2
+
3
+public enum CustomerStatus {
4
+    ImportedLead, NotContacted, Contacted, Customer, ClosedLost
5
+}

+ 115 - 0
src/main/java/my/vaadin/app/MyUI.java

@@ -0,0 +1,115 @@
1
+package my.vaadin.app;
2
+
3
+import java.util.List;
4
+
5
+import javax.servlet.annotation.WebServlet;
6
+
7
+import com.vaadin.annotations.Theme;
8
+import com.vaadin.annotations.VaadinServletConfiguration;
9
+import com.vaadin.icons.VaadinIcons;
10
+import com.vaadin.server.VaadinRequest;
11
+import com.vaadin.server.VaadinServlet;
12
+import com.vaadin.shared.ui.ValueChangeMode;
13
+import com.vaadin.ui.Button;
14
+import com.vaadin.ui.CssLayout;
15
+import com.vaadin.ui.Grid;
16
+import com.vaadin.ui.HorizontalLayout;
17
+import com.vaadin.ui.TextField;
18
+import com.vaadin.ui.UI;
19
+import com.vaadin.ui.VerticalLayout;
20
+import com.vaadin.ui.themes.ValoTheme;
21
+
22
+/**
23
+ * This UI is the application entry point. A UI may either represent a browser window 
24
+ * (or tab) or some part of a html page where a Vaadin application is embedded.
25
+ * <p>
26
+ * The UI is initialized using {@link #init(VaadinRequest)}. This method is intended to be 
27
+ * overridden to add component to the user interface and initialize non-component functionality.
28
+ */
29
+@Theme("mytheme")
30
+public class MyUI extends UI {
31
+
32
+    /**
33
+	 * 
34
+	 */
35
+	private static final long serialVersionUID = 1L;
36
+	
37
+	//inject class service
38
+	private CustomerService service = CustomerService.getInstance();
39
+	//tambahkan grid dengan model Customer untuk menampilkan tabel
40
+	private Grid<Customer> grid = new Grid<>(Customer.class);
41
+	//tambah textfield untuk kolom cari
42
+	private TextField filterText = new TextField();
43
+	
44
+	private CustomerForm form = new CustomerForm(this);
45
+
46
+	@Override
47
+    protected void init(VaadinRequest vaadinRequest) {
48
+        final VerticalLayout layout = new VerticalLayout();
49
+        
50
+        filterText.setPlaceholder("silahkan cari..");
51
+        //menambahkan pembaca untuk value yang dicari
52
+        filterText.addValueChangeListener(e -> tableCustomer());
53
+        filterText.setValueChangeMode(ValueChangeMode.LAZY);
54
+        
55
+        //tambah button untuk hapus filter
56
+        Button hapusButton = new Button(VaadinIcons.CIRCLE);
57
+        hapusButton.setDescription("Hapus Filter");
58
+        hapusButton.addClickListener(e -> filterText.clear());
59
+        //tambah button untuk tambah data
60
+        
61
+        Button tambahButton = new Button("Tambah Customer");
62
+        tambahButton.setStyleName(ValoTheme.BUTTON_PRIMARY);
63
+        tambahButton.addClickListener(e->{
64
+        	grid.asSingleSelect().clear();
65
+        	form.setCustomer(new Customer());
66
+        });
67
+        
68
+        //cara set yang kolom yg mau ditampilkan
69
+        grid.setColumns("id","firstName", "lastName", "status");
70
+        
71
+        HorizontalLayout main = new HorizontalLayout(grid, form);
72
+        main.setSizeFull();
73
+        grid.setSizeFull();
74
+        main.setExpandRatio(grid, 1);
75
+        
76
+        CssLayout filter = new CssLayout();
77
+        filter.addComponents(filterText, hapusButton);
78
+        filter.setStyleName(ValoTheme.LAYOUT_COMPONENT_GROUP);
79
+        
80
+        HorizontalLayout toolbar = new HorizontalLayout(filter, tambahButton);
81
+        //tambahkan filter dan main ke layout
82
+        layout.addComponents(toolbar,main);
83
+        
84
+        tableCustomer();
85
+        
86
+        setContent(layout);
87
+        
88
+        //membuat form tak terlihat sebelum klik tombol tambah
89
+        form.setVisible(false);
90
+        
91
+        grid.asSingleSelect().addValueChangeListener(event -> {
92
+        	if(event.getValue()==null) {
93
+        		form.setVisible(false);
94
+        	}else {
95
+        		form.setCustomer(event.getValue());
96
+        	}
97
+        });
98
+        
99
+    }
100
+	public void tableCustomer() {
101
+		//fetch data customer dan taruh di grid + tambahkan parameter filterText.getValue supaya search berfungsi
102
+		List<Customer> customerList = service.findAll(filterText.getValue());
103
+        grid.setItems(customerList);
104
+	}
105
+
106
+    @WebServlet(urlPatterns = "/*", name = "MyUIServlet", asyncSupported = true)
107
+    @VaadinServletConfiguration(ui = MyUI.class, productionMode = false)
108
+    public static class MyUIServlet extends VaadinServlet {
109
+
110
+		/**
111
+		 * 
112
+		 */
113
+		private static final long serialVersionUID = 1L;
114
+    }
115
+}

+ 1 - 0
src/main/resources/README

@@ -0,0 +1 @@
1
+Please add your static resources here

+ 7 - 0
src/main/webapp/VAADIN/themes/mytheme/addons.scss

@@ -0,0 +1,7 @@
1
+/* This file is automatically managed and will be overwritten from time to time. */
2
+/* Do not manually edit this file. */
3
+
4
+/* Import and include this mixin into your project theme to include the addon themes */
5
+@mixin addons {
6
+}
7
+

BIN
src/main/webapp/VAADIN/themes/mytheme/favicon.ico


+ 38 - 0
src/main/webapp/VAADIN/themes/mytheme/mytheme.scss

@@ -0,0 +1,38 @@
1
+// If you edit this file you need to compile the theme. See README.md for details.
2
+
3
+// Global variable overrides. Must be declared before importing Valo.
4
+
5
+// Defines the plaintext font size, weight and family. Font size affects general component sizing.
6
+//$v-font-size: 16px;
7
+//$v-font-weight: 300;
8
+//$v-font-family: "Open Sans", sans-serif;
9
+
10
+// Defines the border used by all components.
11
+//$v-border: 1px solid (v-shade 0.7);
12
+//$v-border-radius: 4px;
13
+
14
+// Affects the color of some component elements, e.g Button, Panel title, etc
15
+//$v-background-color: hsl(210, 0%, 98%);
16
+// Affects the color of content areas, e.g  Panel and Window content, TextField input etc
17
+//$v-app-background-color: $v-background-color;
18
+
19
+// Affects the visual appearance of all components
20
+//$v-gradient: v-linear 8%;
21
+//$v-bevel-depth: 30%;
22
+//$v-shadow-opacity: 5%;
23
+
24
+// Defines colors for indicating status (focus, success, failure)
25
+//$v-focus-color: valo-focus-color(); // Calculates a suitable color automatically
26
+//$v-friendly-color: #2c9720;
27
+//$v-error-indicator-color: #ed473b;
28
+
29
+// For more information, see: https://vaadin.com/book/-/page/themes.valo.html
30
+// Example variants can be copy/pasted from https://vaadin.com/wiki/-/wiki/Main/Valo+Examples
31
+
32
+@import "../valo/valo.scss";
33
+
34
+@mixin mytheme {
35
+  @include valo;
36
+
37
+  // Insert your own theme rules here
38
+}

File diff suppressed because it is too large
+ 12414 - 0
src/main/webapp/VAADIN/themes/mytheme/styles.css


+ 11 - 0
src/main/webapp/VAADIN/themes/mytheme/styles.scss

@@ -0,0 +1,11 @@
1
+@import "mytheme.scss";
2
+@import "addons.scss";
3
+
4
+// This file prefixes all rules with the theme name to avoid causing conflicts with other themes.
5
+// The actual styles should be defined in mytheme.scss
6
+
7
+.mytheme {
8
+  @include addons;
9
+  @include mytheme;
10
+
11
+}

+ 1 - 0
target/classes/README

@@ -0,0 +1 @@
1
+Please add your static resources here

BIN
target/classes/my/vaadin/app/Customer.class


BIN
target/classes/my/vaadin/app/CustomerDesign.class


BIN
target/classes/my/vaadin/app/CustomerForm.class


BIN
target/classes/my/vaadin/app/CustomerFormDesign.class


BIN
target/classes/my/vaadin/app/CustomerService$1.class


BIN
target/classes/my/vaadin/app/CustomerService$2.class


BIN
target/classes/my/vaadin/app/CustomerService.class


BIN
target/classes/my/vaadin/app/CustomerStatus.class


BIN
target/classes/my/vaadin/app/MyUI$MyUIServlet.class


BIN
target/classes/my/vaadin/app/MyUI.class


+ 0 - 0
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst


+ 1 - 0
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst

@@ -0,0 +1 @@
1
+C:\Users\cadz\eclipse-workspace\app\src\main\java\my\vaadin\app\MyUI.java

+ 26 - 0
target/tomcat/conf/tomcat-users.xml

@@ -0,0 +1,26 @@
1
+<?xml version='1.0' encoding='utf-8'?>
2
+<!--
3
+  Licensed to the Apache Software Foundation (ASF) under one or more
4
+  contributor license agreements.  See the NOTICE file distributed with
5
+  this work for additional information regarding copyright ownership.
6
+  The ASF licenses this file to You under the Apache License, Version 2.0
7
+  (the "License"); you may not use this file except in compliance with
8
+  the License.  You may obtain a copy of the License at
9
+
10
+      http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+  Unless required by applicable law or agreed to in writing, software
13
+  distributed under the License is distributed on an "AS IS" BASIS,
14
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+  See the License for the specific language governing permissions and
16
+  limitations under the License.
17
+-->
18
+<tomcat-users>
19
+<!--
20
+  <role rolename="tomcat"/>
21
+  <role rolename="role1"/>
22
+  <user username="tomcat" password="tomcat" roles="tomcat"/>
23
+  <user username="both" password="tomcat" roles="tomcat,role1"/>
24
+  <user username="role1" password="tomcat" roles="role1"/>
25
+-->
26
+</tomcat-users>

File diff suppressed because it is too large
+ 1200 - 0
target/tomcat/conf/web.xml


+ 0 - 0
target/ws-updated