git ssb

30+

cel / git-ssb-web



Tree: 7f17070bd0ea7f8d0c5e6ab971e847e2a09e28ce

Files: 7f17070bd0ea7f8d0c5e6ab971e847e2a09e28ce / lib / repos / issues.js

8538 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 // the newest message in the issue thread
138 // becomes the branch of the new post
139 if (msg.value.timestamp > newestMsg.value.timestamp
140 && msg.value.content.root == issue.id)
141 newestMsg = msg
142 }),
143 pull.map(self.renderIssueActivityMsg.bind(self, req, repo, issue,
144 req._t('issue.'), postId))
145 ),
146 self.web.isPublic ? pull.empty() : u.readOnce(function (cb) {
147 cb(null, forms.issueComment(req, issue, repo,
148 newestMsg.key, isAuthor, req._t('issue.')))
149 })
150 ]))
151}
152
153I.renderIssueActivityMsg = function (req, repo, issue, type, postId, msg) {
154 var authorLink = u.link([msg.value.author], msg.authorName)
155 var msgHref = u.encodeLink(msg.key) + '#' + encodeURIComponent(msg.key)
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">' +
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">' +
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">' +
189 req._t('issue.MentionedIn', {
190 name: authorLink,
191 type: type,
192 post: u.link([msg.key], String(c.title || msg.key).substr(0, 140))
193 }) + '</section>'
194 case 'issue-edit':
195 return '<section class="collapse">' +
196 (msg.key == postId ? '<div class="highlight">' : '') +
197 (c.title == null ? '' : req._t('issue.Renamed', {
198 author: authorLink,
199 type: type,
200 name: '<q>' + u.escape(c.title) + '</q>'
201 })) + ' &middot; ' + msgTimeLink +
202 (msg.key == postId ? '</div>' : '') +
203 '</section>'
204 case 'git-update':
205 var mention = this.web.issues.getMention(msg, issue)
206 if (mention) {
207 var commitLink = u.link([repo.id, 'commit', mention.object],
208 mention.label || mention.object)
209 return '<section class="collapse">' +
210 req._t(mention.open ? 'issue.Reopened' : 'issue.Closed', {
211 name: authorLink,
212 type: type
213 }) + ' &middot; ' + msgTimeLink + '<br/>' +
214 commitLink +
215 '</section>'
216 } else if ((mention = getMention(msg, issue.id))) {
217 var commitLink = u.link(mention.object ?
218 [repo.id, 'commit', mention.object] : [msg.key],
219 mention.label || mention.object || msg.key)
220 return '<section class="collapse">' +
221 req._t('issue.Mentioned', {
222 name: authorLink,
223 type: type
224 }) + ' &middot; ' + msgTimeLink + '<br/>' +
225 commitLink +
226 '</section>'
227 } else {
228 // fallthrough
229 }
230
231 default:
232 return '<section class="collapse">' +
233 authorLink +
234 ' &middot; ' + msgTimeLink +
235 u.json(c) +
236 '</section>'
237 }
238}
239

Built with git-ssb-web