git ssb

30+

cel / git-ssb-web



Tree: f4de6185a9ab8d859093c6270327cf70d43533c7

Files: f4de6185a9ab8d859093c6270327cf70d43533c7 / lib / repos / issues.js

8506 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.serveRepoTemplate(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 btn-primary">&plus; ' +
44 req._t(isPRs ? 'pullRequest.New' : 'issue.New') +
45 '</button>' +
46 '</form>') +
47 '<h3>' + req._t(isPRs ? 'PullRequests' : 'Issues') + '</h3>'
48 ),
49 u.nav([
50 ['?', req._t('issues.Open'), 'open'],
51 ['?state=closed', req._t('issues.Closed'), 'closed'],
52 ['?state=all', req._t('issues.All'), 'all']
53 ], state),
54 pull(
55 (isPRs ? self.web.pullReqs : self.web.issues).list({
56 repo: repo.id,
57 project: repo.id,
58 reverse: true,
59 open: {open: true, closed: false}[state]
60 }),
61 pull.map(function (issue) {
62 count++
63 var state = (issue.open ? 'open' : 'closed')
64 var stateStr = req._t(issue.open ?
65 'issue.state.Open' : 'issue.state.Closed')
66 return '<section class="collapse">' +
67 '<i class="issue-state issue-state-' + state + '"' +
68 ' title="' + stateStr + '">◼</i> ' +
69 '<a href="' + u.encodeLink(issue.id) + '">' +
70 u.formatMarkdownTitle(issue.title) +
71 '<span class="right-bar">' +
72 new Date(issue.created_at).toLocaleString(req._locale) +
73 '</span>' +
74 '</a>' +
75 '</section>'
76 })
77 ),
78 u.readOnce(function (cb) {
79 cb(null, count > 0 ? '' :
80 '<p>' + req._t(isPRs ? 'NoPullRequests' : 'NoIssues') + '</p>')
81 })
82 ]))
83}
84
85/* New Issue */
86
87I.serveRepoNewIssue = function (req, repo, issueId, path) {
88 var title = req._t('issue.New') + ' · %{author}/%{repo}'
89 return this.repo.serveRepoTemplate(req, repo, 'issues', null, title, pull.once(
90 '<h3>' + req._t('issue.New') + '</h3>' +
91 '<section><form action="" method="post">' +
92 '<input type="hidden" name="action" value="new-issue">' +
93 forms.post(req, repo, null, 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 newestMsg = {key: issue.id, value: {timestamp: issue.created_at}}
103 var title = u.formatMarkdownTitle(issue.title) + ' · %{author}/%{repo}'
104 return self.repo.serveRepoTemplate(req, repo, 'issues', null, title, cat([
105 pull.once(
106 '<h3>' + u.link([issue.id], u.formatMarkdownTitle(issue.title), true) + '</h3>' +
107 '<code>' + issue.id + '</code>' +
108 '<section class="collapse">' +
109 (issue.open
110 ? '<strong class="issue-status open">' +
111 req._t('issue.state.Open') + '</strong>'
112 : '<strong class="issue-status closed">' +
113 req._t('issue.state.Closed') + '</strong>')),
114 u.readOnce(function (cb) {
115 self.web.about.getName(issue.author, function (err, authorName) {
116 if (err) return cb(err)
117 var authorLink = u.link([issue.author], authorName)
118 cb(null, req._t('issue.Opened',
119 {name: authorLink, datetime: u.timestamp(issue.created_at, req)}))
120 })
121 }),
122 pull.once('<hr/>' + markdown(issue.text, repo) + '</section>'),
123 // render posts and edits
124 pull(
125 self.web.ssb.links({
126 dest: issue.id,
127 values: true
128 }),
129 pull.unique('key'),
130 u.decryptMessages(self.web.ssb),
131 u.readableMessages(),
132 self.web.addAuthorName(),
133 u.sortMsgs(),
134 pull.through(function (msg) {
135 // the newest message in the issue thread
136 // becomes the branch of the new post
137 if (msg.value
138 && msg.value.timestamp > newestMsg.value.timestamp
139 && msg.value.content.root == issue.id)
140 newestMsg = msg
141 }),
142 pull.map(self.renderIssueActivityMsg.bind(self, req, repo, issue,
143 req._t('issue.'), postId))
144 ),
145 self.web.isPublic ? pull.empty() : u.readOnce(function (cb) {
146 cb(null, forms.issueComment(req, issue, repo,
147 newestMsg.key, req._t('issue.')))
148 })
149 ]))
150}
151
152I.renderIssueActivityMsg = function (req, repo, issue, type, postId, msg) {
153 var id = u.msgIdToDomId(msg.key)
154 var authorLink = u.link([msg.value.author], msg.authorName)
155 var msgHref = u.encodeLink(msg.key) + '#' + id
156 var msgTimeLink = '<a href="' + msgHref + '"' +
157 ' name="' + u.escape(msg.key) + '">' +
158 new Date(msg.value.timestamp).toLocaleString(req._locale) + '</a>'
159 var c = msg.value.content
160 switch (c.type) {
161 case 'vote':
162 return ''
163 case 'post':
164 if (c.root == issue.id) {
165 var changed = this.web.issues.isStatusChanged(msg, issue)
166 return '<section class="collapse" id="' + id + '">' +
167 (msg.key == postId ? '<div class="highlight">' : '') +
168 '<tt class="right-bar item-id">' + msg.key + '</tt> ' +
169 (changed == null ? authorLink : req._t(
170 changed ? 'issue.Reopened' : 'issue.Closed',
171 {name: authorLink, type: type})) +
172 ' &middot; ' + msgTimeLink +
173 (msg.key == postId ? '</div>' : '') +
174 markdown(c.text, repo) +
175 '</section>'
176 } else {
177 var text = c.text || (c.type + ' ' + msg.key)
178 return '<section class="collapse mention-preview" id="' + id + '">' +
179 req._t('issue.MentionedIn', {
180 name: authorLink,
181 type: type,
182 post: '<a href="/' + msg.key + '#' + msg.key + '">' +
183 String(text).substr(0, 140) + '</a>'
184 }) + '</section>'
185 }
186 case 'issue':
187 case 'pull-request':
188 return '<section class="collapse mention-preview" id="' + id + '">' +
189 req._t('issue.MentionedIn', {
190 name: authorLink,
191 type: type,
192 post: u.link([msg.key], u.messageTitle(msg))
193 }) + '</section>'
194 case 'issue-edit':
195 return '<section class="collapse" id="' + id + '">' +
196 (msg.key == postId ? '<div class="highlight">' : '') +
197 // handle deprecated rename
198 (c.title == null ? '' : req._t('issue.Renamed', {
199 author: authorLink,
200 type: type,
201 name: '<q>' + u.escape(c.title) + '</q>'
202 })) + ' &middot; ' + msgTimeLink +
203 (msg.key == postId ? '</div>' : '') +
204 '</section>'
205 case 'git-update':
206 var mention = this.web.issues.getMention(msg, issue)
207 if (mention) {
208 var commitLink = u.link([repo.id, 'commit', mention.object],
209 mention.label || mention.object)
210 return '<section class="collapse" id="' + id + '">' +
211 req._t(mention.open ? 'issue.Reopened' : 'issue.Closed', {
212 name: authorLink,
213 type: type
214 }) + ' &middot; ' + msgTimeLink + '<br/>' +
215 commitLink +
216 '</section>'
217 } else if ((mention = getMention(msg, issue.id))) {
218 var commitLink = u.link(mention.object ?
219 [repo.id, 'commit', mention.object] : [msg.key],
220 mention.label || mention.object || msg.key)
221 return '<section class="collapse" id="' + id + '">' +
222 req._t('issue.Mentioned', {
223 name: authorLink,
224 type: type
225 }) + ' &middot; ' + msgTimeLink + '<br/>' +
226 commitLink +
227 '</section>'
228 } else {
229 // fallthrough
230 }
231
232 default:
233 return '<section class="collapse" id="' + id + '">' +
234 authorLink +
235 ' &middot; ' + msgTimeLink +
236 u.json(c) +
237 '</section>'
238 }
239}
240

Built with git-ssb-web