git ssb

30+

cel / git-ssb-web



Tree: ea333278df31de123808813a031b904b32dab41f

Files: ea333278df31de123808813a031b904b32dab41f / lib / repos / issues.js

8395 bytesRaw
1var pull = require('pull-stream')
2var cat = require('pull-cat')
3var u = require('../util')
4var markdown = require('../markdown')
5var forms = require('../forms')
6
7module.exports = function (repoRoutes, web) {
8 return new RepoIssueRoutes(repoRoutes, web)
9}
10
11function RepoIssueRoutes(repoRoutes, web) {
12 this.repo = repoRoutes
13 this.web = web
14}
15
16var I = RepoIssueRoutes.prototype
17
18function getMention(msg, id) {
19 if (msg.key == id) return msg
20 var mentions = msg.value.content.mentions
21 if (mentions) for (var i = 0; i < mentions.length; i++) {
22 var mention = mentions[i]
23 if (mention.link == id)
24 return mention
25 }
26 return null
27}
28
29/* Issues */
30
31I.serveRepoIssues = function (req, repo, isPRs) {
32 var self = this
33 var count = 0
34 var state = req._u.query.state || 'open'
35 var newPath = isPRs ? [repo.id, 'compare'] : [repo.id, 'issues', 'new']
36 var title = req._t('Issues') + ' · %{author}/%{repo}'
37 var page = isPRs ? 'pulls' : 'issues'
38 return self.repo.renderRepoPage(req, repo, page, null, title, cat([
39 pull.once(
40 (self.web.isPublic ? '' :
41 '<form class="right-bar" method="get"' +
42 ' action="' + u.encodeLink(newPath) + '">' +
43 '<button class="btn">&plus; ' +
44 req._t(isPRs ? 'pullRequest.New' : 'issue.New') +
45 '</button>' +
46 '</form>') +
47 '<h3>' + req._t(isPRs ? 'PullRequests' : 'Issues') + '</h3>' +
48 u.nav([
49 ['?', req._t('issues.Open'), 'open'],
50 ['?state=closed', req._t('issues.Closed'), 'closed'],
51 ['?state=all', req._t('issues.All'), 'all']
52 ], state)),
53 pull(
54 (isPRs ? self.web.pullReqs : self.web.issues).list({
55 repo: repo.id,
56 project: repo.id,
57 open: {open: true, closed: false}[state]
58 }),
59 pull.map(function (issue) {
60 count++
61 var state = (issue.open ? 'open' : 'closed')
62 var stateStr = req._t(issue.open ?
63 'issue.state.Open' : 'issue.state.Closed')
64 return '<section class="collapse">' +
65 '<i class="issue-state issue-state-' + state + '"' +
66 ' title="' + stateStr + '">◼</i> ' +
67 '<a href="' + u.encodeLink(issue.id) + '">' +
68 u.escape(issue.title) +
69 '<span class="right-bar">' +
70 new Date(issue.created_at).toLocaleString(req._locale) +
71 '</span>' +
72 '</a>' +
73 '</section>'
74 })
75 ),
76 u.readOnce(function (cb) {
77 cb(null, count > 0 ? '' :
78 '<p>' + req._t(isPRs ? 'NoPullRequests' : 'NoIssues') + '</p>')
79 })
80 ]))
81}
82
83/* New Issue */
84
85I.serveRepoNewIssue = function (req, repo, issueId, path) {
86 var title = req._t('issue.New') + ' · %{author}/%{repo}'
87 return this.repo.renderRepoPage(req, repo, 'issues', null, title, pull.once(
88 '<h3>' + req._t('issue.New') + '</h3>' +
89 '<section><form action="" method="post">' +
90 '<input type="hidden" name="action" value="new-issue">' +
91 '<p><input class="wide-input" name="title" placeholder="' +
92 req._t('issue.Title') + '" size="77" /></p>' +
93 forms.post(req, repo, req._t('Description'), 8) +
94 '<button type="submit" class="btn">' + req._t('Create') + '</button>' +
95 '</form></section>'))
96}
97
98/* Issue */
99
100I.serveRepoIssue = function (req, repo, issue, path, postId) {
101 var self = this
102 var isAuthor = (self.web.myId == issue.author)
103 || (self.web.myId == repo.feed)
104 var newestMsg = {key: issue.id, value: {timestamp: issue.created_at}}
105 var title = u.escape(issue.title) + ' · %{author}/%{repo}'
106 return self.repo.renderRepoPage(req, repo, 'issues', null, title, cat([
107 pull.once(
108 forms.name(req, !self.web.isPublic, issue.id, issue.title,
109 'issue-title', null, req._t('issue.Rename'),
110 '<h3>' + u.link([issue.id], issue.title) + '</h3>') +
111 '<code>' + issue.id + '</code>' +
112 '<section class="collapse">' +
113 (issue.open
114 ? '<strong class="issue-status open">' +
115 req._t('issue.state.Open') + '</strong>'
116 : '<strong class="issue-status closed">' +
117 req._t('issue.state.Closed') + '</strong>')),
118 u.readOnce(function (cb) {
119 self.web.about.getName(issue.author, function (err, authorName) {
120 if (err) return cb(err)
121 var authorLink = u.link([issue.author], authorName)
122 cb(null, req._t('issue.Opened',
123 {name: authorLink, datetime: u.timestamp(issue.created_at, req)}))
124 })
125 }),
126 pull.once('<hr/>' + markdown(issue.text, repo) + '</section>'),
127 // render posts and edits
128 pull(
129 self.web.ssb.links({
130 dest: issue.id,
131 values: true
132 }),
133 pull.unique('key'),
134 self.web.addAuthorName(),
135 u.sortMsgs(),
136 pull.through(function (msg) {
137 if (msg.value.timestamp > newestMsg.value.timestamp)
138 newestMsg = msg
139 }),
140 pull.map(self.renderIssueActivityMsg.bind(self, req, repo, issue,
141 req._t('issue.'), postId))
142 ),
143 self.web.isPublic ? pull.empty() : u.readOnce(function (cb) {
144 cb(null, forms.issueComment(req, issue, repo,
145 newestMsg.key, isAuthor, req._t('issue.')))
146 })
147 ]))
148}
149
150I.renderIssueActivityMsg = function (req, repo, issue, type, postId, msg) {
151 var authorLink = u.link([msg.value.author], msg.authorName)
152 var msgHref = u.encodeLink(msg.key) + '#' + encodeURIComponent(msg.key)
153 var msgTimeLink = '<a href="' + msgHref + '"' +
154 ' name="' + u.escape(msg.key) + '">' +
155 new Date(msg.value.timestamp).toLocaleString(req._locale) + '</a>'
156 var c = msg.value.content
157 switch (c.type) {
158 case 'vote':
159 return ''
160 case 'post':
161 if (c.root == issue.id) {
162 var changed = this.web.issues.isStatusChanged(msg, issue)
163 return '<section class="collapse">' +
164 (msg.key == postId ? '<div class="highlight">' : '') +
165 '<tt class="right-bar item-id">' + msg.key + '</tt> ' +
166 (changed == null ? authorLink : req._t(
167 changed ? 'issue.Reopened' : 'issue.Closed',
168 {name: authorLink, type: type})) +
169 ' &middot; ' + msgTimeLink +
170 (msg.key == postId ? '</div>' : '') +
171 markdown(c.text, repo) +
172 '</section>'
173 } else {
174 var text = c.text || (c.type + ' ' + msg.key)
175 return '<section class="collapse mention-preview">' +
176 req._t('issue.MentionedIn', {
177 name: authorLink,
178 type: type,
179 post: '<a href="/' + msg.key + '#' + msg.key + '">' +
180 String(text).substr(0, 140) + '</a>'
181 }) + '</section>'
182 }
183 case 'issue':
184 case 'pull-request':
185 return '<section class="collapse mention-preview">' +
186 req._t('issue.MentionedIn', {
187 name: authorLink,
188 type: type,
189 post: u.link([msg.key], String(c.title || msg.key).substr(0, 140))
190 }) + '</section>'
191 case 'issue-edit':
192 return '<section class="collapse">' +
193 (msg.key == postId ? '<div class="highlight">' : '') +
194 (c.title == null ? '' : req._t('issue.Renamed', {
195 author: authorLink,
196 type: type,
197 name: '<q>' + u.escape(c.title) + '</q>'
198 })) + ' &middot; ' + msgTimeLink +
199 (msg.key == postId ? '</div>' : '') +
200 '</section>'
201 case 'git-update':
202 var mention = this.web.issues.getMention(msg, issue)
203 if (mention) {
204 var commitLink = u.link([repo.id, 'commit', mention.object],
205 mention.label || mention.object)
206 return '<section class="collapse">' +
207 req._t(mention.open ? 'issue.Reopened' : 'issue.Closed', {
208 name: authorLink,
209 type: type
210 }) + ' &middot; ' + msgTimeLink + '<br/>' +
211 commitLink +
212 '</section>'
213 } else if ((mention = getMention(msg, issue.id))) {
214 var commitLink = u.link(mention.object ?
215 [repo.id, 'commit', mention.object] : [msg.key],
216 mention.label || mention.object || msg.key)
217 return '<section class="collapse">' +
218 req._t('issue.Mentioned', {
219 name: authorLink,
220 type: type
221 }) + ' &middot; ' + msgTimeLink + '<br/>' +
222 commitLink +
223 '</section>'
224 } else {
225 // fallthrough
226 }
227
228 default:
229 return '<section class="collapse">' +
230 authorLink +
231 ' &middot; ' + msgTimeLink +
232 u.json(c) +
233 '</section>'
234 }
235}
236

Built with git-ssb-web