PageRenderTime 23ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 1ms

/uitracker-root/README.md

https://bitbucket.org/oostman/uitracker
Markdown | 107 lines | 64 code | 43 blank | 0 comment | 0 complexity | 8c5e4cadf001e62021b67b126e9dc42c MD5 | raw file
  1. # UITracker Add-on for Vaadin 7
  2. UITracker is an UI component add-on for Vaadin 7.
  3. ## Online demo
  4. Try the add-on demo at http://okasoft.jelastic.servint.net/uitracker/
  5. ## Download release
  6. Official releases of this add-on are available at Vaadin Directory. For Maven instructions, download and reviews, go to http://vaadin.com/addon/uitracker
  7. ## Building and running demo
  8. git clone https://bitbucket.org/oostman/uitracker.git
  9. mvn clean install
  10. cd demo
  11. mvn jetty:run
  12. To see the demo, navigate to http://localhost:8080/
  13. ## Development with Eclipse IDE
  14. For further development of this add-on, the following tool-chain is recommended:
  15. - Eclipse IDE
  16. - m2e wtp plug-in (install it from Eclipse Marketplace)
  17. - Vaadin Eclipse plug-in (install it from Eclipse Marketplace)
  18. - JRebel Eclipse plug-in (install it from Eclipse Marketplace)
  19. - Chrome browser
  20. ### Importing project
  21. Choose File > Import... > Existing Maven Projects
  22. Note that Eclipse may give "Plugin execution not covered by lifecycle configuration" errors for pom.xml. Use "Permanently mark goal resources in pom.xml as ignored in Eclipse build" quick-fix to mark these errors as permanently ignored in your project. Do not worry, the project still works fine.
  23. ### Debugging server-side
  24. If you have not already compiled the widgetset, do it now by running vaadin:install Maven target for uitracker-root project.
  25. If you have a JRebel license, it makes on the fly code changes faster. Just add JRebel nature to your uitracker-demo project by clicking project with right mouse button and choosing JRebel > Add JRebel Nature
  26. To debug project and make code modifications on the fly in the server-side, right-click the uitracker-demo project and choose Debug As > Debug on Server. Navigate to http://localhost:8080/uitracker-demo/ to see the application.
  27. ### Debugging client-side
  28. The most common way of debugging and making changes to the client-side code is dev-mode. To create debug configuration for it, open uitracker-demo project properties and click "Create Development Mode Launch" button on the Vaadin tab. Right-click newly added "GWT development mode for uitracker-demo.launch" and choose Debug As > Debug Configurations... Open up Classpath tab for the development mode configuration and choose User Entries. Click Advanced... and select Add Folders. Choose Java and Resources under uitracker/src/main and click ok. Now you are ready to start debugging the client-side code by clicking debug. Click Launch Default Browser button in the GWT Development Mode in the launched application. Now you can modify and breakpoints to client-side classes and see changes by reloading the web page.
  29. Another way of debugging client-side is superdev mode. To enable it, uncomment devModeRedirectEnabled line from the end of DemoWidgetSet.gwt.xml located under uitracker-demo resources folder and compile the widgetset once by running vaadin:compile Maven target for uitracker-demo. Refresh uitracker-demo project resources by right clicking the project and choosing Refresh. Click "Create SuperDevMode Launch" button on the Vaadin tab of the uitracker-demo project properties panel to create superder mode code server launch configuration and modify the class path as instructed above. After starting the code server by running SuperDevMode launch as Java application, you can navigate to http://localhost:8080/uitracker-demo/?superdevmode. Now all code changes you do to your client side will get compiled as soon as you reload the web page. You can also access Java-sources and set breakpoints inside Chrome if you enable source maps from inspector settings.
  30. ## Release notes
  31. ### Version 0.1.0
  32. - Possibility to extend any layout and get all click events within the layout
  33. - An mandatory listener interface "UiClickListener" that is receiving all click events with event text and element class
  34. ## Roadmap
  35. This component is developed as a hobby with no public roadmap or any guarantees of upcoming releases. That said, the following features are planned for upcoming releases:
  36. - Saving pixel for each click and DOM tree as identifier
  37. - Possibility to track mouse movements
  38. - Nicer looking demo application
  39. ## Issue tracking
  40. The issues for this add-on are tracked on its bitbucket.com page. All bug reports and feature requests are appreciated.
  41. ## Contributions
  42. Contributions are welcome, but there are no guarantees that they are accepted as such. Process for contributing is the following:
  43. - Fork this project
  44. - Create an issue to this project about the contribution (bug or feature) if there is no such issue about it already. Try to keep the scope minimal.
  45. - Develop and test the fix or functionality carefully. Only include minimum amount of code needed to fix the issue.
  46. - Refer to the fixed issue in commit
  47. - Send a pull request for the original project
  48. - Comment on the original issue that you have implemented a fix for it
  49. ## License & Author
  50. Add-on is distributed under Apache License 2.0. For license terms, see LICENSE.txt.
  51. UITracker is written by Oskar Östman
  52. # Developer Guide
  53. ## Getting started
  54. Here is a simple example on how to try out the add-on component:
  55. final VerticalLayout layout = new VerticalLayout();
  56. UiClickListener listener = new UiTrackerListenerImplementation(); // the listener implementation for getting the data
  57. UITracker tracker = new UITracker(listener);
  58. tracker.extend(layout);
  59. For a more comprehensive example, see src/test/java/org/vaadin/template/demo/DemoUI.java
  60. ## Features
  61. ### Feature layout specific tracking
  62. -Possibility to extend any layout and get all click events within the layout
  63. ### Feature An listener interface
  64. -Listener interface that the user need to implement