{% extends "repo_master.html" %}
{% from "_formhelper.html" import render_field %}
{% block title %}Issue #{{ issueid }} - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
{% macro show_comment(user, date, content) %}
<section class="issue_comment">
<header>
{{ user.user | avatar(16) | safe }}
<a href="{{ url_for('view_user', username=user.user)}}">
{{ user.user }}
</a> - <span title="{{ date }}">{{ date | humanize}}</span>
<aside class="issue_action">
<a class="reply" title="Reply to this comment - loose formating">
reply
</a>
</aside>
</header>
<div class="comment_body">
{% autoescape false %}
{{ content | markdown }}
{% endautoescape %}
</div>
</section>
{% endmacro %}
{% block repo %}
{% if authenticated and form %}
<form action="{{ url_for('update_issue', username=username,
repo=repo.name, issueid=issueid) }}" method="post">
{% endif %}
<h2>
<span class="issueid">#{{ issueid }}</span> {{ issue.title }}
{% if authenticated and repo_admin %}
- <a href="{{ url_for('edit_issue', username=username,
repo=repo.name, issueid=issueid) }}">
Edit</a>
{% endif %}
<aside class="issue_action">
{% if authenticated and repo_admin %}
{{ render_field(form.status) }}
<input type="submit" class="submit positive button" value="Update">
{{ form.csrf_token }}
{% else %}
Status: {{ issue.status }}
{% endif %}
</aside>
</h2>
<section id="tags">
Tags:
{% for tag in issue.tags %}
<a href="{{ url_for('view_issues', username=username,
repo=repo.name, tags=tag.tag) }}">
{{ tag.tag }}</a>{% if not loop.last %},{% endif %}
{% endfor %}
{% if authenticated and repo_admin %}
<input id="tag" type="text" value="" placeholder="tag1, tag2" name="tag">
{% endif %}
</section>
<section id="assigned">
Assigned:
{% if issue.assignee %}
<a href="{{ url_for('view_issues', username=username,
repo=repo.name, assignee=issue.assignee.username) }}">
{{ issue.assignee.username }}</a>
{% endif %}
{% if authenticated %}
<input type="hidden" value="{{ g.fas_user.username }}" name="assignee">
{% endif %}
</section>
<section id="blocks">
Blocking:
{% if issue.parents %}
{% for ticket in issue.parents %}
<a href="{{ url_for('view_issue', username=username,
repo=repo.name, issueid=ticket.id) }}">
{{ ticket.id }}</a>
{% endfor %}
{% endif %}
{% if authenticated %}
<input id="depends" type="text"
placeholder="issue blocked" name="depends">
{% endif %}
</section>
<section id="depends">
Depends on:
{% if issue.children %}
{% for ticket in issue.children %}
<a href="{{ url_for('view_issue', username=username,
repo=repo.name, issueid=ticket.id) }}">
{{ ticket.id }}</a>
{% endfor %}
{% endif %}
{% if authenticated %}
<input id="depends" type="text"
placeholder="issue depending" name="depends">
{% endif %}
</section>
{{ show_comment(issue.user, issue.date_created, issue.content) }}
{% if issue.comments %}
{% for comment in issue.comments %}
{{ show_comment(comment.user, comment.date_created, comment.comment) }}
{% endfor %}
{% endif %}
<section class="issue_comment add_comment">
{% if authenticated and form %}
<header>
<label for="comment">Add new comment</label>
(supports the <a href="http://daringfireball.net/projects/markdown/syntax"
target="_blank">Markdown syntax</a>)
</header>
<div id="tabs">
<ul>
<li><a href="#edit">Comment</a></li>
<li><a href="#preview">Preview</a></li>
</ul>
<div id="edit">
<div>
<textarea id="comment" name="comment" placeholder="Enter your comment here"></textarea>
</div>
<div>
<input type="submit" class="submit positive button" value="Comment">
<input type="button" value="Clear" id="clear_comment" />
</div>
</div>
<div id="preview">
</div>
</div>
{% else %}
<p><a href="{{ url_for('auth_login') }}">Login</a> to comment on this ticket.</p>
{% endif %}
</section>
{% if authenticated and form %}
</form>
{% endif %}
{% endblock %}
{% block jscripts %}
{{ super() }}
<script type="text/javascript">
$(function() {
$( "#tabs" ).tabs();
$( "#tabs" ).on('tabsactivate',
function(event, ui) {
if (ui.newPanel.selector == '#preview') {
var _text = $( "#comment" ).val();
var _url = "{{ url_for('markdown_preview') }}";
$.ajax({
url: _url ,
type: 'POST',
data: {content: _text},
dataType: 'html',
success: function(res) {
$( "#preview" ).html(res);
},
error: function() {
alert('Unable to generate preview!');
}
});
return false;
}
}
);
$( ".reply" ).click(
function() {
var _section = $(this).parent().parent().parent();
var _comment = _section.find('.comment_body');
var _text = _comment.text().split("\n");
var _output = new Array();
for (cnt = 0; cnt < _text.length - 1; cnt ++) {
_output[cnt] = '> ' + jQuery.trim(_text[cnt + 1]);
}
$( "#comment" ).val(_output.join("\n"));
}
);
$( "#clear_comment").click(
function() {
$( "#comment" ).val("");
}
);
var cache = {};
$( "#tag" ).autocomplete({
source: function( request, response ) {
var pattern = request.term;
if ( pattern in cache ) {
response( cache[ pattern ] );
return;
}
$.getJSON(
"{{ url_for('api_ns.api_project_tags', repo=repo.name, username=username) }}", {
pattern: request.term
},
function( data ) {
cache[ pattern ] = data.tags;
response( data.tags );
}
);
},
minLength: 0,
delay: 200,
});
});
</script>
{% endblock %}