git ssb

30+

cel / git-ssb-web



Tree: ce171726150b63b15a82a7416797bb7926742a25

Files: ce171726150b63b15a82a7416797bb7926742a25 / lib / repos / issues.js

8247 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 reverse: true,
58 open: {open: true, closed: false}[state]
59 }),
60 pull.map(function (issue) {
61 count++
62 var state = (issue.open ? 'open' : 'closed')
63 var stateStr = req._t(issue.open ?
64 'issue.state.Open' : 'issue.state.Closed')
65 return '<section class="collapse">' +
66 '<i class="issue-state issue-state-' + state + '"' +
67 ' title="' + stateStr + '">◼</i> ' +
68 '<a href="' + u.encodeLink(issue.id) + '">' +
69 u.escape(issue.title) +
70 '<span class="right-bar">' +
71 new Date(issue.created_at).toLocaleString(req._locale) +
72 '</span>' +
73 '</a>' +
74 '</section>'
75 })
76 ),
77 u.readOnce(function (cb) {
78 cb(null, count > 0 ? '' :
79 '<p>' + req._t(isPRs ? 'NoPullRequests' : 'NoIssues') + '</p>')
80 })
81 ]))
82}
83
84/* New Issue */
85
86I.serveRepoNewIssue = function (req, repo, issueId, path) {
87 var title = req._t('issue.New') + ' · %{author}/%{repo}'
88 return this.repo.renderRepoPage(req, repo, 'issues', null, title, pull.once(
89 '<h3>' + req._t('issue.New') + '</h3>' +
90 '<section><form action="" method="post">' +
91 '<input type="hidden" name="action" value="new-issue">' +
92 forms.post(req, repo, null, 8) +
93 '<button type="submit" class="btn">' + req._t('Create') + '</button>' +
94 '</form></section>'))
95}
96
97/* Issue */
98
99I.serveRepoIssue = function (req, repo, issue, path, postId) {
100 var self = this
101 var newestMsg = {key: issue.id, value: {timestamp: issue.created_at}}
102 var title = u.escape(issue.title) + ' · %{author}/%{repo}'
103 return self.repo.renderRepoPage(req, repo, 'issues', null, title, cat([
104 pull.once(
105 '<h3>' + u.link([issue.id], issue.title) + '</h3>' +
106 '<code>' + issue.id + '</code>' +
107 '<section class="collapse">' +
108 (issue.open
109 ? '<strong class="issue-status open">' +
110 req._t('issue.state.Open') + '</strong>'
111 : '<strong class="issue-status closed">' +
112 req._t('issue.state.Closed') + '</strong>')),
113 u.readOnce(function (cb) {
114 self.web.about.getName(issue.author, function (err, authorName) {
115 if (err) return cb(err)
116 var authorLink = u.link([issue.author], authorName)
117 cb(null, req._t('issue.Opened',
118 {name: authorLink, datetime: u.timestamp(issue.created_at, req)}))
119 })
120 }),
121 pull.once('<hr/>' + markdown(issue.text, repo) + '</section>'),
122 // render posts and edits
123 pull(
124 self.web.ssb.links({
125 dest: issue.id,
126 values: true
127 }),
128 pull.unique('key'),
129 self.web.addAuthorName(),
130 u.sortMsgs(),
131 pull.through(function (msg) {
132 // the newest message in the issue thread
133 // becomes the branch of the new post
134 if (msg.value
135 && msg.value.timestamp > newestMsg.value.timestamp
136 && msg.value.content.root == issue.id)
137 newestMsg = msg
138 }),
139 pull.map(self.renderIssueActivityMsg.bind(self, req, repo, issue,
140 req._t('issue.'), postId))
141 ),
142 self.web.isPublic ? pull.empty() : u.readOnce(function (cb) {
143 cb(null, forms.issueComment(req, issue, repo,
144 newestMsg.key, req._t('issue.')))
145 })
146 ]))
147}
148
149I.renderIssueActivityMsg = function (req, repo, issue, type, postId, msg) {
150 var authorLink = u.link([msg.value.author], msg.authorName)
151 var msgHref = u.encodeLink(msg.key) + '#' + encodeURIComponent(msg.key)
152 var msgTimeLink = '<a href="' + msgHref + '"' +
153 ' name="' + u.escape(msg.key) + '">' +
154 new Date(msg.value.timestamp).toLocaleString(req._locale) + '</a>'
155 var c = msg.value.content
156 switch (c.type) {
157 case 'vote':
158 return ''
159 case 'post':
160 if (c.root == issue.id) {
161 var changed = this.web.issues.isStatusChanged(msg, issue)
162 return '<section class="collapse">' +
163 (msg.key == postId ? '<div class="highlight">' : '') +
164 '<tt class="right-bar item-id">' + msg.key + '</tt> ' +
165 (changed == null ? authorLink : req._t(
166 changed ? 'issue.Reopened' : 'issue.Closed',
167 {name: authorLink, type: type})) +
168 ' &middot; ' + msgTimeLink +
169 (msg.key == postId ? '</div>' : '') +
170 markdown(c.text, repo) +
171 '</section>'
172 } else {
173 var text = c.text || (c.type + ' ' + msg.key)
174 return '<section class="collapse mention-preview">' +
175 req._t('issue.MentionedIn', {
176 name: authorLink,
177 type: type,
178 post: '<a href="/' + msg.key + '#' + msg.key + '">' +
179 String(text).substr(0, 140) + '</a>'
180 }) + '</section>'
181 }
182 case 'issue':
183 case 'pull-request':
184 return '<section class="collapse mention-preview">' +
185 req._t('issue.MentionedIn', {
186 name: authorLink,
187 type: type,
188 post: u.link([msg.key], u.messageTitle(msg))
189 }) + '</section>'
190 case 'issue-edit':
191 return '<section class="collapse">' +
192 (msg.key == postId ? '<div class="highlight">' : '') +
193 // handle deprecated rename
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