rev |
line source |
bsw@414
|
1 local global = param.get("global", atom.boolean)
|
bsw@414
|
2 local for_member = param.get("for_member", "table")
|
bsw@414
|
3 local for_unit = param.get("for_unit", "table")
|
bsw@414
|
4 local for_area = param.get("for_area", "table")
|
bsw@422
|
5 local event_max_id = param.get_all_cgi()["event_max_id"]
|
bsw@414
|
6 local event_selector = Event:new_selector()
|
bsw@414
|
7 :add_order_by("event.id DESC")
|
bsw@414
|
8 :limit(25)
|
bsw@414
|
9 :join("issue", nil, "issue.id = event.issue_id")
|
bsw@437
|
10 :add_field("now()::date - event.occurrence::date", "time_ago")
|
bsw@437
|
11
|
bsw@422
|
12 if event_max_id then
|
bsw@422
|
13 event_selector:add_where{ "event.id < ?", event_max_id }
|
bsw@422
|
14 end
|
bsw@422
|
15
|
bsw@414
|
16 if for_member then
|
bsw@414
|
17 event_selector:add_where{ "event.member_id = ?", for_member.id }
|
bsw@414
|
18 elseif for_unit then
|
bsw@414
|
19 event_selector:join("area", nil, "area.id = issue.area_id")
|
bsw@414
|
20 event_selector:add_where{ "area.unit_id = ?", for_unit.id }
|
bsw@414
|
21 elseif for_area then
|
bsw@414
|
22 event_selector:add_where{ "issue.area_id = ?", for_area.id }
|
bsw@414
|
23 elseif not global then
|
bsw@414
|
24 event_selector:join("event_seen_by_member", nil, { "event_seen_by_member.id = event.id AND event_seen_by_member.seen_by_member_id = ?", app.session.member_id })
|
bsw@414
|
25 end
|
bsw@414
|
26
|
bsw@414
|
27 if app.session.member_id then
|
bsw@414
|
28 event_selector
|
bsw@414
|
29 :left_join("interest", "_interest", { "_interest.issue_id = issue.id AND _interest.member_id = ?", app.session.member.id } )
|
bsw@414
|
30 :add_field("(_interest.member_id NOTNULL)", "is_interested")
|
bsw@414
|
31 :left_join("delegating_interest_snapshot", "_delegating_interest", { "_delegating_interest.issue_id = issue.id AND _delegating_interest.member_id = ? AND _delegating_interest.event = issue.latest_snapshot_event", app.session.member.id } )
|
bsw@414
|
32 :add_field("_delegating_interest.delegate_member_ids[1]", "is_interested_by_delegation_to_member_id")
|
bsw@414
|
33 :add_field("_delegating_interest.delegate_member_ids[array_upper(_delegating_interest.delegate_member_ids, 1)]", "is_interested_via_member_id")
|
bsw@414
|
34 :add_field("array_length(_delegating_interest.delegate_member_ids, 1)", "delegation_chain_length")
|
bsw@414
|
35 end
|
bsw@414
|
36
|
bsw@422
|
37 local last_event_id
|
bsw@414
|
38
|
bsw@596
|
39 local events = event_selector:exec()
|
bsw@596
|
40
|
bsw@422
|
41 ui.container{ attr = { class = "issues events" }, content = function()
|
bsw@414
|
42
|
bsw@422
|
43 local last_event_date
|
bsw@596
|
44 for i, event in ipairs(events) do
|
bsw@422
|
45 last_event_id = event.id
|
bsw@553
|
46 event.issue:load_everything_for_member_id(app.session.member_id)
|
bsw@414
|
47
|
bsw@676
|
48 ui.container{ attr = { class = "event_info" }, content = function()
|
bsw@619
|
49 local event_name = event.event_name
|
bsw@619
|
50 local event_image
|
bsw@619
|
51 if event.event == "issue_state_changed" then
|
bsw@619
|
52 if event.state == "discussion" then
|
bsw@619
|
53 event_name = _"Discussion started"
|
bsw@619
|
54 event_image = "comments.png"
|
bsw@619
|
55 elseif event.state == "verification" then
|
bsw@619
|
56 event_name = _"Verification started"
|
bsw@619
|
57 event_image = "lock.png"
|
bsw@619
|
58 elseif event.state == "voting" then
|
bsw@619
|
59 event_name = _"Voting started"
|
bsw@619
|
60 event_image = "email_open.png"
|
bsw@619
|
61 else
|
bsw@619
|
62 event_name = event.state_name
|
bsw@619
|
63 end
|
bsw@619
|
64 if event_image then
|
bsw@619
|
65 ui.image{ static = "icons/16/" .. event_image }
|
bsw@619
|
66 slot.put(" ")
|
bsw@619
|
67 end
|
bsw@619
|
68 end
|
bsw@619
|
69 local days_ago_text
|
bsw@619
|
70 if event.time_ago == 0 then
|
bsw@619
|
71 days_ago_text = _("Today at #{time}", { time = format.time(event.occurrence) })
|
bsw@619
|
72 elseif event.time_ago == 1 then
|
bsw@619
|
73 days_ago_text = _("Yesterday at #{time}", { time = format.time(event.occurrence) })
|
bsw@619
|
74 else
|
bsw@619
|
75 days_ago_text = _("#{date} at #{time}", { date = format.date(event.occurrence.date), time = format.time(event.occurrence) })
|
bsw@619
|
76 end
|
bsw@619
|
77 ui.tag{ attr = { class = "event_name" }, content = event_name }
|
bsw@686
|
78 slot.put("<br />")
|
bsw@619
|
79 ui.tag{ content = days_ago_text }
|
bsw@688
|
80 --[[ if event.time_ago > 1 then
|
bsw@686
|
81 slot.put("<br />(")
|
bsw@619
|
82 ui.tag{ content = _("#{count} days ago", { count = event.time_ago }) }
|
bsw@619
|
83 slot.put(")")
|
bsw@619
|
84 end
|
bsw@688
|
85 --]]
|
bsw@688
|
86 if (app.session.member_id or config.public_access == "pseudonym") and event.member_id then
|
bsw@688
|
87 slot.put("<br />")
|
bsw@688
|
88 slot.put("<br />")
|
bsw@688
|
89 if app.session.member_id then
|
bsw@688
|
90 ui.link{
|
bsw@688
|
91 content = function()
|
bsw@688
|
92 execute.view{
|
bsw@688
|
93 module = "member_image",
|
bsw@688
|
94 view = "_show",
|
bsw@688
|
95 params = {
|
bsw@688
|
96 member = event.member,
|
bsw@688
|
97 image_type = "avatar",
|
bsw@688
|
98 show_dummy = true,
|
bsw@688
|
99 class = "micro_avatar",
|
bsw@688
|
100 popup_text = text
|
bsw@688
|
101 }
|
bsw@688
|
102 }
|
bsw@688
|
103 end,
|
bsw@688
|
104 module = "member", view = "show", id = event.member_id
|
bsw@688
|
105 }
|
bsw@688
|
106 slot.put(" ")
|
bsw@688
|
107 end
|
bsw@688
|
108 ui.link{
|
bsw@688
|
109 text = event.member.name,
|
bsw@688
|
110 module = "member", view = "show", id = event.member_id
|
bsw@688
|
111 }
|
bsw@688
|
112 end
|
bsw@619
|
113 end }
|
bsw@525
|
114
|
bsw@635
|
115 ui.container{ attr = { class = "issue" }, content = function()
|
bsw@635
|
116
|
bsw@635
|
117 execute.view{ module = "delegation", view = "_info", params = { issue = event.issue } }
|
bsw@414
|
118
|
bsw@635
|
119 ui.container{ attr = { class = "content" }, content = function()
|
bsw@678
|
120 ui.link{
|
bsw@678
|
121 module = "unit", view = "show", id = event.issue.area.unit_id,
|
bsw@678
|
122 attr = { class = "unit_link" }, text = event.issue.area.unit.name
|
bsw@678
|
123 }
|
bsw@678
|
124 slot.put(" ")
|
bsw@678
|
125 ui.link{
|
bsw@678
|
126 module = "area", view = "show", id = event.issue.area_id,
|
bsw@678
|
127 attr = { class = "area_link" }, text = event.issue.area.name
|
bsw@678
|
128 }
|
bsw@422
|
129 end }
|
bsw@422
|
130
|
bsw@635
|
131 ui.container{ attr = { class = "title" }, content = function()
|
bsw@635
|
132 ui.link{
|
bsw@635
|
133 attr = { class = "issue_id" },
|
bsw@635
|
134 text = _("#{policy} ##{id}", { policy = event.issue.policy.name, id = event.issue_id }),
|
bsw@635
|
135 module = "issue",
|
bsw@635
|
136 view = "show",
|
bsw@635
|
137 id = event.issue_id
|
bsw@635
|
138 }
|
bsw@635
|
139 end }
|
bsw@635
|
140
|
bsw@422
|
141 if event.suggestion_id then
|
bsw@422
|
142 ui.container{ attr = { class = "suggestion" }, content = function()
|
bsw@422
|
143 ui.link{
|
bsw@422
|
144 text = event.suggestion.name,
|
bsw@422
|
145 module = "suggestion", view = "show", id = event.suggestion_id
|
bsw@422
|
146 }
|
bsw@422
|
147 end }
|
bsw@422
|
148 end
|
bsw@422
|
149
|
bsw@422
|
150 ui.container{ attr = { class = "initiative_list" }, content = function()
|
bsw@422
|
151 if not event.initiative_id then
|
bsw@422
|
152 local initiatives_selector = Initiative:new_selector()
|
bsw@422
|
153 :add_where{ "initiative.issue_id = ?", event.issue_id }
|
bsw@509
|
154 :add_order_by("initiative.rank, initiative.supporter_count DESC")
|
bsw@422
|
155 execute.view{ module = "initiative", view = "_list", params = {
|
bsw@422
|
156 issue = event.issue,
|
bsw@422
|
157 initiatives_selector = initiatives_selector,
|
bsw@422
|
158 no_sort = true,
|
bsw@422
|
159 limit = 3
|
bsw@422
|
160 } }
|
bsw@422
|
161 else
|
bsw@422
|
162 local initiatives_selector = Initiative:new_selector()
|
bsw@422
|
163 :add_where{ "initiative.id = ?", event.initiative_id }
|
bsw@422
|
164 execute.view{ module = "initiative", view = "_list", params = {
|
bsw@422
|
165 issue = event.issue,
|
bsw@422
|
166 initiatives_selector = initiatives_selector,
|
bsw@422
|
167 no_sort = true,
|
bsw@422
|
168 limit = 1
|
bsw@422
|
169 } }
|
bsw@414
|
170 end
|
bsw@414
|
171 end }
|
bsw@414
|
172
|
bsw@422
|
173 --[[
|
bsw@422
|
174 if event.initiative_id then
|
bsw@422
|
175 ui.container{ attr = { class = "initiative_id" }, content = event.initiative_id }
|
bsw@422
|
176 end
|
bsw@422
|
177 if event.draft_id then
|
bsw@422
|
178 ui.container{ attr = { class = "draft_id" }, content = event.draft_id }
|
bsw@422
|
179 end
|
bsw@422
|
180 if event.suggestion_id then
|
bsw@422
|
181 ui.container{ attr = { class = "suggestion_id" }, content = event.suggestion_id }
|
bsw@422
|
182 end
|
bsw@422
|
183 --]]
|
bsw@422
|
184
|
bsw@422
|
185 end }
|
bsw@422
|
186 end
|
bsw@414
|
187
|
bsw@422
|
188 end }
|
bsw@422
|
189
|
bsw@596
|
190 slot.put("<br />")
|
bsw@596
|
191
|
bsw@596
|
192 if #events > 0 then
|
bsw@596
|
193 ui.link{
|
bsw@596
|
194 text = _"Show older events",
|
bsw@596
|
195 module = request.get_module(),
|
bsw@596
|
196 view = request.get_view(),
|
bsw@596
|
197 id = param.get_id(),
|
bsw@596
|
198 params = {
|
bsw@596
|
199 tab = param.get_all_cgi()["tab"],
|
bsw@596
|
200 events = param.get_all_cgi()["events"],
|
bsw@596
|
201 event_max_id = last_event_id
|
bsw@596
|
202 }
|
bsw@422
|
203 }
|
bsw@596
|
204 else
|
bsw@596
|
205 ui.tag{ content = _"No more events available" }
|
bsw@596
|
206 end
|
bsw@456
|
207
|
bsw@456
|
208 slot.put("<br />")
|
bsw@456
|
209 slot.put("<br />")
|