summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/gitblit/wicket/panels/CommentPanel.java
blob: 1d49ff0fc3c944d9e7945e08d829c46c2c5fbf04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
/*
 * Copyright 2013 gitblit.com.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.gitblit.wicket.panels;

import org.apache.wicket.ajax.AjaxRequestTarget;
import org.apache.wicket.ajax.markup.html.form.AjaxButton;
import org.apache.wicket.markup.html.basic.Label;
import org.apache.wicket.markup.html.form.Form;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.Model;

import com.gitblit.models.RepositoryModel;
import com.gitblit.models.TicketModel;
import com.gitblit.models.TicketModel.Change;
import com.gitblit.models.UserModel;
import com.gitblit.wicket.WicketUtils;
import com.gitblit.wicket.pages.BasePage;

public class CommentPanel extends BasePanel {
	private static final long serialVersionUID = 1L;

	final UserModel user;

	final TicketModel ticket;

	final Change change;

	final Class<? extends BasePage> pageClass;

	private MarkdownTextArea markdownEditor;

	private Label markdownPreview;

	private String repositoryName;

	public CommentPanel(String id, final UserModel user, final TicketModel ticket,
			final Change change, final Class<? extends BasePage> pageClass) {
		super(id);
		this.user = user;
		this.ticket = ticket;
		this.change = change;
		this.pageClass = pageClass;
	}

	@Override
	protected void onInitialize() {
		super.onInitialize();

		Form<String> form = new Form<String>("editorForm");
		add(form);

		form.add(new AjaxButton("submit", new Model<String>(getString("gb.comment")), form) {
			private static final long serialVersionUID = 1L;

			@Override
			public void onSubmit(AjaxRequestTarget target, Form<?> form) {
				String txt = markdownEditor.getText();
				if (change == null) {
					// new comment
					Change newComment = new Change(user.username);
					newComment.comment(txt);
					if (!ticket.isWatching(user.username)) {
						newComment.watch(user.username);
					}
					RepositoryModel repository = app().repositories().getRepositoryModel(ticket.repository);
					TicketModel updatedTicket = app().tickets().updateTicket(repository, ticket.number, newComment);
					if (updatedTicket != null) {
						app().tickets().createNotifier().sendMailing(updatedTicket);
						setResponsePage(pageClass, WicketUtils.newObjectParameter(updatedTicket.repository, "" + ticket.number));
					} else {
						error("Failed to add comment!");
					}
				} else {
					// TODO update comment
				}
			}
		}.setVisible(ticket != null && ticket.number > 0));

		final IModel<String> markdownPreviewModel = new Model<String>();
		markdownPreview = new Label("markdownPreview", markdownPreviewModel);
		markdownPreview.setEscapeModelStrings(false);
		markdownPreview.setOutputMarkupId(true);
		add(markdownPreview);

		markdownEditor = new MarkdownTextArea("markdownEditor", markdownPreviewModel, markdownPreview);
		markdownEditor.setRepository(repositoryName);
		WicketUtils.setInputPlaceholder(markdownEditor, getString("gb.leaveComment"));
		add(markdownEditor);
	}

	public void setRepository(String repositoryName) {
		this.repositoryName = repositoryName;
		if (markdownEditor != null) {
			markdownEditor.setRepository(repositoryName);
		}
	}
}