Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

  • Create MVP classes for your widget editor. See the YouTube view, editor, and view implementation.
    • For your widget to be inline, add to the editor's updateDescriptorFromView() method:

      descriptor.put(WidgetConstants.INLINE_WIDGET_KEY, "true");
  • Bind your Widget editor view to the implementation by modifying the Portal gin module:

    bind(YouTubeConfigView.class).to(YouTubeConfigViewImpl.class);
  • Add a unit test for your editor! (see YouTubeConfigEditorTest)

...

  • Hook up automatic dependency injection by first adding methods to the Portal gin injector class (see getYouTubeConfigEditor() and getYouTubeRenderer()).  
  • Add a unique content type (to identify your widget in Markdown, like the YOUTUBE_CONTENT_TYPE constant) to WidgetConstants.   
  • Add code to the Widget Registrar Implementation that call the methods you added to the Portal gin injector (resolve content type to your editor and renderer).  Also register your widget in initWithKnownWidgets() method of this class to give your widget a friendly name.  
  • Add the new command to the menu (see MarkdownEditorWidget.createWidgetMenu()).
  • (Optionally) Add css styles to Portal.css. These will be automatically applied to the div that surrounds your Widget (see youtube in Portal.css).  NOTE: The style name must match the content type that you specified in WidgetConstants.

...