| rev | 
   line source | 
| 
bsw@1496
 | 
     1 local issue
 | 
| 
bsw@1496
 | 
     2 local area
 | 
| 
bsw@1496
 | 
     3 local area_id
 | 
| 
bsw/jbe@0
 | 
     4 
 | 
| 
bsw@1496
 | 
     5 local issue_id = param.get("issue_id", atom.integer)
 | 
| 
bsw@1496
 | 
     6 if issue_id then
 | 
| 
bsw@1496
 | 
     7   issue = Issue:new_selector():add_where{"id=?",issue_id}:single_object_mode():exec()
 | 
| 
bsw@1496
 | 
     8   issue:load_everything_for_member_id(app.session.member_id)
 | 
| 
bsw@1496
 | 
     9   area = issue.area
 | 
| 
bsw@1496
 | 
    10 else
 | 
| 
bsw@1496
 | 
    11   area_id = param.get("area_id", atom.integer)
 | 
| 
bsw@1496
 | 
    12   if area_id then
 | 
| 
bsw@1496
 | 
    13     area = Area:new_selector():add_where{"id=?",area_id}:single_object_mode():exec()
 | 
| 
bsw@1496
 | 
    14     area:load_delegation_info_once_for_member_id(app.session.member_id)
 | 
| 
bsw@1534
 | 
    15   else
 | 
| 
bsw@1534
 | 
    16     local firstlife_id = param.get("firstlife_id")
 | 
| 
bsw@1534
 | 
    17     if firstlife_id then
 | 
| 
bsw@1534
 | 
    18       area = Area:new_selector():join("unit", nil, "unit.id = area.unit_id"):add_where{"attr->>'firstlife_id'=?",firstlife_id}:single_object_mode():exec()
 | 
| 
bsw@1534
 | 
    19       area:load_delegation_info_once_for_member_id(app.session.member_id)
 | 
| 
bsw@1534
 | 
    20       area_id = area.id
 | 
| 
bsw@1534
 | 
    21     end
 | 
| 
bsw@1496
 | 
    22   end
 | 
| 
bsw@1496
 | 
    23 end
 | 
| 
bsw@1496
 | 
    24 
 | 
| 
bsw@1496
 | 
    25 local polling = param.get("polling", atom.boolean)
 | 
| 
bsw@1496
 | 
    26 
 | 
| 
bsw@1496
 | 
    27 local policy_id = param.get("policy_id", atom.integer)
 | 
| 
bsw@1496
 | 
    28 local policy
 | 
| 
bsw@1496
 | 
    29 
 | 
| 
bsw@1496
 | 
    30 local preview = param.get("preview")
 | 
| 
bsw@1496
 | 
    31 
 | 
| 
bsw@1496
 | 
    32 if #(slot.get_content("error")) > 0 then
 | 
| 
bsw@1496
 | 
    33   preview = false
 | 
| 
bsw@1496
 | 
    34 end
 | 
| 
bsw@1496
 | 
    35 
 | 
| 
bsw@1496
 | 
    36 if policy_id then
 | 
| 
bsw@1496
 | 
    37   policy = Policy:by_id(policy_id)
 | 
| 
bsw@1135
 | 
    38 end
 | 
| 
bsw@1135
 | 
    39 
 | 
| 
bsw@1535
 | 
    40 local callback = param.get("callback")
 | 
| 
bsw@1496
 | 
    41 
 | 
| 
bsw@1496
 | 
    42 
 | 
| 
bsw@1496
 | 
    43 local initiative_id = param.get("initiative_id")
 | 
| 
bsw@1496
 | 
    44 local initiative = Initiative:by_id(initiative_id)
 | 
| 
bsw@1496
 | 
    45 local draft
 | 
| 
bsw@1496
 | 
    46 if initiative then
 | 
| 
bsw@1496
 | 
    47   initiative:load_everything_for_member_id(app.session.member_id)
 | 
| 
bsw@1496
 | 
    48   initiative.issue:load_everything_for_member_id(app.session.member_id)
 | 
| 
bsw@1496
 | 
    49 
 | 
| 
bsw@1496
 | 
    50   if initiative.issue.closed then
 | 
| 
bsw@1496
 | 
    51     slot.put_into("error", _"This issue is already closed.")
 | 
| 
bsw@1496
 | 
    52     return
 | 
| 
bsw@1496
 | 
    53   elseif initiative.issue.half_frozen then 
 | 
| 
bsw@1496
 | 
    54     slot.put_into("error", _"This issue is already frozen.")
 | 
| 
bsw@1496
 | 
    55     return
 | 
| 
bsw@1496
 | 
    56   elseif initiative.issue.phase_finished then
 | 
| 
bsw@1496
 | 
    57     slot.put_into("error", _"Current phase is already closed.")
 | 
| 
bsw@1496
 | 
    58     return
 | 
| 
bsw/jbe@1309
 | 
    59   end
 | 
| 
bsw@1496
 | 
    60 
 | 
| 
bsw@1496
 | 
    61   draft = initiative.current_draft
 | 
| 
bsw@1496
 | 
    62   if config.initiative_abstract then
 | 
| 
bsw@1496
 | 
    63     draft.abstract = string.match(draft.content, "(.+)<!%--END_OF_ABSTRACT%-->")
 | 
| 
bsw@1496
 | 
    64     if draft.abstract then
 | 
| 
bsw@1496
 | 
    65       draft.content = string.match(draft.content, "<!%--END_OF_ABSTRACT%-->(.*)")
 | 
| 
bsw@1496
 | 
    66     end
 | 
| 
bsw@1496
 | 
    67   end
 | 
| 
bsw@1496
 | 
    68 end
 | 
| 
bsw@1496
 | 
    69 
 | 
| 
bsw@1496
 | 
    70 if not initiative and not issue and not area then
 | 
| 
bsw@1496
 | 
    71   ui.heading{ content = _"Missing parameter" }
 | 
| 
bsw@1496
 | 
    72   return false
 | 
| 
bsw/jbe@1309
 | 
    73 end
 | 
| 
bsw@95
 | 
    74 
 | 
| 
bsw/jbe@0
 | 
    75 ui.form{
 | 
| 
bsw/jbe@1309
 | 
    76   record = draft,
 | 
| 
bsw@1495
 | 
    77   attr = { class = "vertical section", enctype = 'multipart/form-data' },
 | 
| 
bsw/jbe@0
 | 
    78   module = "draft",
 | 
| 
bsw/jbe@0
 | 
    79   action = "add",
 | 
| 
bsw@1496
 | 
    80   params = {
 | 
| 
bsw@1496
 | 
    81     area_id = area and area.id,
 | 
| 
bsw@1496
 | 
    82     issue_id = issue and issue.id or nil,
 | 
| 
bsw@1535
 | 
    83     initiative_id = initiative_id,
 | 
| 
bsw@1535
 | 
    84     callback = callback
 | 
| 
bsw@1496
 | 
    85   },
 | 
| 
bsw/jbe@0
 | 
    86   routing = {
 | 
| 
bsw@95
 | 
    87     ok = {
 | 
| 
bsw/jbe@0
 | 
    88       mode = "redirect",
 | 
| 
bsw/jbe@0
 | 
    89       module = "initiative",
 | 
| 
bsw/jbe@0
 | 
    90       view = "show",
 | 
| 
bsw@1496
 | 
    91       id = initiative_id
 | 
| 
bsw/jbe@0
 | 
    92     }
 | 
| 
bsw/jbe@0
 | 
    93   },
 | 
| 
bsw/jbe@0
 | 
    94   content = function()
 | 
| 
bsw@1045
 | 
    95   
 | 
| 
bsw/jbe@1309
 | 
    96     ui.grid{ content = function()
 | 
| 
bsw/jbe@1309
 | 
    97       ui.cell_main{ content = function()
 | 
| 
bsw/jbe@1309
 | 
    98         ui.container{ attr = { class = "mdl-card mdl-shadow--2dp mdl-card__fullwidth" }, content = function()
 | 
| 
bsw/jbe@1309
 | 
    99           ui.container{ attr = { class = "mdl-card__title mdl-card--border" }, content = function()
 | 
| 
bsw@1496
 | 
   100             if initiative then
 | 
| 
bsw@1496
 | 
   101               ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = initiative.display_name }
 | 
| 
bsw@1496
 | 
   102             elseif param.get("name") then
 | 
| 
bsw@1496
 | 
   103               ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = param.get("name") }
 | 
| 
bsw@1496
 | 
   104             elseif issue then
 | 
| 
bsw@1496
 | 
   105               ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = _("New competing initiative in issue '#{issue}'", { issue = issue.name }) }
 | 
| 
bsw@1496
 | 
   106             elseif area then
 | 
| 
bsw@1496
 | 
   107               ui.heading { attr = { class = "mdl-card__title-text" }, level = 2, content = _("New issue in area '#{area}'", { area = area.name }) }
 | 
| 
bsw@1496
 | 
   108             end
 | 
| 
bsw/jbe@1309
 | 
   109           end }
 | 
| 
bsw/jbe@1309
 | 
   110           ui.container{ attr = { class = "mdl-card__content mdl-card--border" }, content = function()
 | 
| 
bsw@1496
 | 
   111 
 | 
| 
bsw@1496
 | 
   112 -- -------- PREVIEW
 | 
| 
bsw/jbe@1309
 | 
   113             if param.get("preview") then
 | 
| 
bsw/jbe@1309
 | 
   114               ui.sectionRow( function()
 | 
| 
bsw@1496
 | 
   115                 if not issue and not initiative then
 | 
| 
bsw@1496
 | 
   116                   ui.container { content = policy.name }
 | 
| 
bsw@1496
 | 
   117                 end
 | 
| 
bsw@1496
 | 
   118                 if param.get("free_timing") then
 | 
| 
bsw@1496
 | 
   119                   ui.container { content = param.get("free_timing") }
 | 
| 
bsw@1496
 | 
   120                 end
 | 
| 
bsw@1496
 | 
   121                 slot.put("<br />")
 | 
| 
bsw@1496
 | 
   122                 ui.field.hidden{ name = "policy_id", value = param.get("policy_id") }
 | 
| 
bsw@1496
 | 
   123                 ui.field.hidden{ name = "name", value = param.get("name") }
 | 
| 
bsw/jbe@1309
 | 
   124                 if config.initiative_abstract then
 | 
| 
bsw/jbe@1309
 | 
   125                   ui.field.hidden{ name = "abstract", value = param.get("abstract") }
 | 
| 
bsw/jbe@1309
 | 
   126                   ui.container{
 | 
| 
bsw/jbe@1309
 | 
   127                     attr = { class = "abstract" },
 | 
| 
bsw/jbe@1309
 | 
   128                     content = param.get("abstract")
 | 
| 
bsw/jbe@1309
 | 
   129                   }
 | 
| 
bsw/jbe@1309
 | 
   130                   slot.put("<br />")
 | 
| 
bsw/jbe@1309
 | 
   131                 end
 | 
| 
bsw/jbe@1309
 | 
   132                 local draft_text = param.get("content")
 | 
| 
bsw/jbe@1309
 | 
   133                 local draft_text = util.wysihtml_preproc(draft_text)
 | 
| 
bsw/jbe@1309
 | 
   134                 ui.field.hidden{ name = "content", value = draft_text }
 | 
| 
bsw/jbe@1309
 | 
   135                 ui.container{
 | 
| 
bsw/jbe@1309
 | 
   136                   attr = { class = "draft" },
 | 
| 
bsw/jbe@1309
 | 
   137                   content = function()
 | 
| 
bsw/jbe@1309
 | 
   138                     slot.put(draft_text)
 | 
| 
bsw/jbe@1309
 | 
   139                   end
 | 
| 
bsw/jbe@1309
 | 
   140                 }
 | 
| 
bsw/jbe@1309
 | 
   141                 slot.put("<br />")
 | 
| 
bsw@95
 | 
   142 
 | 
| 
bsw@1495
 | 
   143                 if config.attachments then
 | 
| 
bsw@1495
 | 
   144                   local file_upload_session = param.get("file_upload_session") or multirand.string(
 | 
| 
bsw@1495
 | 
   145                     32,
 | 
| 
bsw@1495
 | 
   146                     '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
 | 
| 
bsw@1495
 | 
   147                   )
 | 
| 
bsw@1495
 | 
   148                   file_upload_session = string.gsub(file_upload_session, "[^A-Za-z0-9]", "")
 | 
| 
bsw@1495
 | 
   149                   ui.field.hidden{ name = "file_upload_session", value = file_upload_session }
 | 
| 
bsw@1496
 | 
   150                   if initiative then
 | 
| 
bsw@1496
 | 
   151                      local files = File:new_selector()
 | 
| 
bsw@1496
 | 
   152                       :left_join("draft_attachment", nil, "draft_attachment.file_id = file.id")
 | 
| 
bsw@1496
 | 
   153                       :add_where{ "draft_attachment.draft_id = ?", initiative.current_draft.id }
 | 
| 
bsw@1496
 | 
   154                       :reset_fields()
 | 
| 
bsw@1496
 | 
   155                       :add_field("file.id")
 | 
| 
bsw@1496
 | 
   156                       :add_field("draft_attachment.title")
 | 
| 
bsw@1496
 | 
   157                       :add_field("draft_attachment.description")
 | 
| 
bsw@1496
 | 
   158                       :add_order_by("draft_attachment.id")
 | 
| 
bsw@1496
 | 
   159                       :exec()
 | 
| 
bsw@1495
 | 
   160 
 | 
| 
bsw@1496
 | 
   161                     if #files > 0 then
 | 
| 
bsw@1496
 | 
   162                       ui.container {
 | 
| 
bsw@1496
 | 
   163                         content = function()
 | 
| 
bsw@1496
 | 
   164                           for i, file in ipairs(files) do
 | 
| 
bsw@1496
 | 
   165                             if param.get("file_delete_" .. file.id, atom.boolean) then
 | 
| 
bsw@1496
 | 
   166                               ui.field.hidden{ name = "file_delete_" .. file.id, value = "1" }
 | 
| 
bsw@1496
 | 
   167                             else
 | 
| 
bsw@1496
 | 
   168                               ui.image{ module = "file", view = "show.jpg", id = file.id, params = { preview = true } }
 | 
| 
bsw@1496
 | 
   169                               ui.container{ content = function()
 | 
| 
bsw@1496
 | 
   170                                 ui.tag{ tag = "strong", content = file.title or "" }
 | 
| 
bsw@1496
 | 
   171                               end }
 | 
| 
bsw@1496
 | 
   172                               ui.container{ content = file.description or "" }
 | 
| 
bsw@1496
 | 
   173                               slot.put("<br /><br />")
 | 
| 
bsw@1496
 | 
   174                             end
 | 
| 
bsw@1495
 | 
   175                           end
 | 
| 
bsw@1495
 | 
   176                         end
 | 
| 
bsw@1496
 | 
   177                       }
 | 
| 
bsw@1496
 | 
   178                     end
 | 
| 
bsw@1495
 | 
   179                   end
 | 
| 
bsw@1495
 | 
   180                   local filename = encode.file_path(WEBMCP_BASE_PATH, 'tmp', "file_upload-" .. file_upload_session .. ".json")
 | 
| 
bsw@1495
 | 
   181                   local fh = io.open(filename, "r")
 | 
| 
bsw@1495
 | 
   182                   if fh then
 | 
| 
bsw@1495
 | 
   183                     local file_uploads = json.import(fh:read("*a"))
 | 
| 
bsw@1495
 | 
   184                     for i, file_upload in ipairs(file_uploads) do
 | 
| 
bsw@1495
 | 
   185                       ui.image{ module = "draft", view = "show_file_upload", params = {
 | 
| 
bsw@1495
 | 
   186                         file_upload_session = file_upload_session, file_id = file_upload.id, preview = true
 | 
| 
bsw@1495
 | 
   187                       } }
 | 
| 
bsw@1496
 | 
   188                       ui.container{ content = function()
 | 
| 
bsw@1496
 | 
   189                         ui.tag{ tag = "strong", content = file_upload.title or "" }
 | 
| 
bsw@1496
 | 
   190                       end }
 | 
| 
bsw@1495
 | 
   191                       ui.container{ content = file_upload.description or "" }
 | 
| 
bsw@1495
 | 
   192                       slot.put("<br />")
 | 
| 
bsw@1495
 | 
   193                     end
 | 
| 
bsw@1495
 | 
   194                   end
 | 
| 
bsw@1495
 | 
   195                 end
 | 
| 
bsw@1495
 | 
   196 
 | 
| 
bsw/jbe@1309
 | 
   197                 ui.tag{
 | 
| 
bsw/jbe@1309
 | 
   198                   tag = "input",
 | 
| 
bsw/jbe@1309
 | 
   199                   attr = {
 | 
| 
bsw/jbe@1309
 | 
   200                     type = "submit",
 | 
| 
bsw/jbe@1309
 | 
   201                     class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--colored",
 | 
| 
bsw/jbe@1309
 | 
   202                     value = _'Publish now'
 | 
| 
bsw/jbe@1309
 | 
   203                   },
 | 
| 
bsw/jbe@1309
 | 
   204                   content = ""
 | 
| 
bsw/jbe@1309
 | 
   205                 }
 | 
| 
bsw/jbe@1309
 | 
   206                 slot.put("   ")
 | 
| 
bsw/jbe@1309
 | 
   207 
 | 
| 
bsw/jbe@1309
 | 
   208                 ui.tag{
 | 
| 
bsw/jbe@1309
 | 
   209                   tag = "input",
 | 
| 
bsw/jbe@1309
 | 
   210                   attr = {
 | 
| 
bsw/jbe@1309
 | 
   211                     type = "submit",
 | 
| 
bsw/jbe@1309
 | 
   212                     name = "edit",
 | 
| 
bsw/jbe@1309
 | 
   213                     class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect",
 | 
| 
bsw/jbe@1309
 | 
   214                     value = _'Edit again'
 | 
| 
bsw/jbe@1309
 | 
   215                   },
 | 
| 
bsw/jbe@1309
 | 
   216                   content = ""
 | 
| 
bsw/jbe@1309
 | 
   217                 }
 | 
| 
bsw/jbe@1309
 | 
   218                 slot.put("   ")
 | 
| 
bsw@95
 | 
   219 
 | 
| 
bsw/jbe@1309
 | 
   220                 ui.link{
 | 
| 
bsw/jbe@1309
 | 
   221                   attr = { class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect" },
 | 
| 
bsw/jbe@1309
 | 
   222                   content = _"Cancel",
 | 
| 
bsw@1496
 | 
   223                   module = initiative and "initiative" or "area",
 | 
| 
bsw/jbe@1309
 | 
   224                   view = "show",
 | 
| 
bsw@1496
 | 
   225                   id = initiative_id or area_id
 | 
| 
bsw/jbe@1309
 | 
   226                 }
 | 
| 
bsw/jbe@1309
 | 
   227               end )
 | 
| 
bsw@1045
 | 
   228 
 | 
| 
bsw@1496
 | 
   229 -- -------- EDIT
 | 
| 
bsw/jbe@1309
 | 
   230             else
 | 
| 
bsw@1496
 | 
   231 
 | 
| 
bsw@1496
 | 
   232               if not issue_id and not initiative_id then
 | 
| 
bsw@1496
 | 
   233                 local tmp = { { id = -1, name = "" } }
 | 
| 
bsw@1496
 | 
   234                 for i, allowed_policy in ipairs(area.allowed_policies) do
 | 
| 
bsw@1496
 | 
   235                   if not allowed_policy.polling or app.session.member:has_polling_right_for_unit_id(area.unit_id) then
 | 
| 
bsw@1496
 | 
   236                     tmp[#tmp+1] = allowed_policy
 | 
| 
bsw@1496
 | 
   237                   end
 | 
| 
bsw@1496
 | 
   238                 end
 | 
| 
bsw@1496
 | 
   239                 ui.container{ content = _"Please choose a policy for the new issue:" }
 | 
| 
bsw@1496
 | 
   240                 ui.field.select{
 | 
| 
bsw@1496
 | 
   241                   name = "policy_id",
 | 
| 
bsw@1496
 | 
   242                   foreign_records = tmp,
 | 
| 
bsw@1496
 | 
   243                   foreign_id = "id",
 | 
| 
bsw@1496
 | 
   244                   foreign_name = "name",
 | 
| 
bsw@1496
 | 
   245                   value = param.get("policy_id", atom.integer) or area.default_policy and area.default_policy.id
 | 
| 
bsw@1496
 | 
   246                 }
 | 
| 
bsw@1496
 | 
   247                 if policy and policy.free_timeable then
 | 
| 
bsw@1496
 | 
   248                   local available_timings
 | 
| 
bsw@1496
 | 
   249                   if config.free_timing and config.free_timing.available_func then
 | 
| 
bsw@1496
 | 
   250                     available_timings = config.free_timing.available_func(policy)
 | 
| 
bsw@1496
 | 
   251                     if available_timings == false then
 | 
| 
bsw@1496
 | 
   252                       slot.put_into("error", "error in free timing config")
 | 
| 
bsw@1496
 | 
   253                       return false
 | 
| 
bsw@1496
 | 
   254                     end
 | 
| 
bsw@1496
 | 
   255                   end
 | 
| 
bsw@1496
 | 
   256                   ui.heading{ level = 4, content = _"Free timing:" }
 | 
| 
bsw@1496
 | 
   257                   if available_timings then
 | 
| 
bsw@1496
 | 
   258                     ui.field.select{
 | 
| 
bsw@1496
 | 
   259                       name = "free_timing",
 | 
| 
bsw@1496
 | 
   260                       foreign_records = available_timings,
 | 
| 
bsw@1496
 | 
   261                       foreign_id = "id",
 | 
| 
bsw@1496
 | 
   262                       foreign_name = "name",
 | 
| 
bsw@1496
 | 
   263                       value = param.get("free_timing")
 | 
| 
bsw@1496
 | 
   264                     }
 | 
| 
bsw@1496
 | 
   265                   else
 | 
| 
bsw/jbe@1309
 | 
   266                     ui.field.text{
 | 
| 
bsw@1496
 | 
   267                       name = "free_timing",
 | 
| 
bsw@1496
 | 
   268                       value = param.get("free_timing")
 | 
| 
bsw/jbe@1309
 | 
   269                     }
 | 
| 
bsw@1496
 | 
   270                   end
 | 
| 
bsw/jbe@1309
 | 
   271                 end
 | 
| 
bsw@1496
 | 
   272               end
 | 
| 
bsw@1496
 | 
   273 
 | 
| 
bsw@1496
 | 
   274               if issue and issue.policy.polling and app.session.member:has_polling_right_for_unit_id(area.unit_id) then
 | 
| 
bsw@1496
 | 
   275                 slot.put("<br />")
 | 
| 
bsw@1496
 | 
   276                 ui.field.boolean{ name = "polling", label = _"No admission needed", value = polling }
 | 
| 
bsw@1496
 | 
   277               end
 | 
| 
bsw@1496
 | 
   278 
 | 
| 
bsw@1496
 | 
   279               if not initiative then
 | 
| 
bsw@1496
 | 
   280                 ui.container{ attr = { class = "mdl-textfield mdl-js-textfield mdl-textfield--floating-label mdl-card__fullwidth" }, content = function ()
 | 
| 
bsw@1496
 | 
   281                   ui.field.text{
 | 
| 
bsw@1496
 | 
   282                     attr = { id = "lf-initiative__name", class = "mdl-textfield__input" },
 | 
| 
bsw@1496
 | 
   283                     label_attr = { class = "mdl-textfield__label", ["for"] = "lf-initiative__name" },
 | 
| 
bsw@1496
 | 
   284                     label = _"Title",
 | 
| 
bsw@1496
 | 
   285                     name  = "name",
 | 
| 
bsw@1496
 | 
   286                     value = param.get("name")
 | 
| 
bsw@1496
 | 
   287                   }
 | 
| 
bsw@1496
 | 
   288                 end }
 | 
| 
bsw@1496
 | 
   289               end
 | 
| 
bsw@1495
 | 
   290 
 | 
| 
bsw@1496
 | 
   291               if config.initiative_abstract then
 | 
| 
bsw@1496
 | 
   292                 ui.container { content = _"Enter abstract:" }
 | 
| 
bsw@1496
 | 
   293                 ui.container{ attr = { class = "mdl-textfield mdl-js-textfield mdl-textfield--expandable mdl-textfield__fullwidth" }, content = function()
 | 
| 
bsw@1496
 | 
   294                   ui.field.text{
 | 
| 
bsw@1496
 | 
   295                     name = "abstract",
 | 
| 
bsw@1496
 | 
   296                     multiline = true, 
 | 
| 
bsw@1496
 | 
   297                     attr = { id = "abstract", style = "height: 20ex; width: 100%;" },
 | 
| 
bsw@1496
 | 
   298                     value = param.get("abstract")
 | 
| 
bsw@1496
 | 
   299                   }
 | 
| 
bsw@1496
 | 
   300                 end }
 | 
| 
bsw@1496
 | 
   301               end
 | 
| 
bsw@1496
 | 
   302               
 | 
| 
bsw@1496
 | 
   303               ui.container { content = _"Enter your proposal and/or reasons:" }
 | 
| 
bsw@1496
 | 
   304               ui.field.wysihtml{
 | 
| 
bsw@1496
 | 
   305                 name = "content",
 | 
| 
bsw@1496
 | 
   306                 multiline = true, 
 | 
| 
bsw@1496
 | 
   307                 attr = { id = "draft", style = "height: 50ex; width: 100%;" },
 | 
| 
bsw@1496
 | 
   308                 value = param.get("content")
 | 
| 
bsw@1496
 | 
   309               }
 | 
| 
bsw@1496
 | 
   310               if not issue or issue.state == "admission" or issue.state == "discussion" then
 | 
| 
bsw@1496
 | 
   311                 ui.container { content = _"You can change your text again anytime during admission and discussion phase" }
 | 
| 
bsw@1496
 | 
   312               else
 | 
| 
bsw@1496
 | 
   313                 ui.container { content = _"You cannot change your text again later, because this issue is already in verfication phase!" }
 | 
| 
bsw@1496
 | 
   314               end
 | 
| 
bsw@1496
 | 
   315 
 | 
| 
bsw@1496
 | 
   316               slot.put("<br />")
 | 
| 
bsw@1496
 | 
   317               if config.attachments then
 | 
| 
bsw@1496
 | 
   318                 local file_upload_session = param.get("file_upload_session") or multirand.string(
 | 
| 
bsw@1496
 | 
   319                   32,
 | 
| 
bsw@1496
 | 
   320                   '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
 | 
| 
bsw@1496
 | 
   321                 )
 | 
| 
bsw@1496
 | 
   322                 file_upload_session = string.gsub(file_upload_session, "[^A-Za-z0-9]", "")
 | 
| 
bsw@1496
 | 
   323                 ui.field.hidden{ name = "file_upload_session", value = file_upload_session }
 | 
| 
bsw@1496
 | 
   324                 if initiative then
 | 
| 
bsw@1495
 | 
   325                   local files = File:new_selector()
 | 
| 
bsw@1495
 | 
   326                     :left_join("draft_attachment", nil, "draft_attachment.file_id = file.id")
 | 
| 
bsw@1495
 | 
   327                     :add_where{ "draft_attachment.draft_id = ?", initiative.current_draft.id }
 | 
| 
bsw@1495
 | 
   328                     :reset_fields()
 | 
| 
bsw@1495
 | 
   329                     :add_field("file.id")
 | 
| 
bsw@1495
 | 
   330                     :add_field("draft_attachment.title")
 | 
| 
bsw@1495
 | 
   331                     :add_field("draft_attachment.description")
 | 
| 
bsw@1495
 | 
   332                     :add_order_by("draft_attachment.id")
 | 
| 
bsw@1495
 | 
   333                     :exec()
 | 
| 
bsw@1495
 | 
   334 
 | 
| 
bsw@1495
 | 
   335                   if #files > 0 then
 | 
| 
bsw@1495
 | 
   336                     ui.container {
 | 
| 
bsw@1495
 | 
   337                       content = function()
 | 
| 
bsw@1495
 | 
   338                         for i, file in ipairs(files) do
 | 
| 
bsw@1495
 | 
   339                           ui.image{ module = "file", view = "show.jpg", id = file.id, params = { preview = true } }
 | 
| 
bsw@1496
 | 
   340                           ui.container{ content = function()
 | 
| 
bsw@1496
 | 
   341                             ui.tag{ tag = "strong", content = file.title or "" }
 | 
| 
bsw@1496
 | 
   342                           end }
 | 
| 
bsw@1495
 | 
   343                           ui.container{ content = file.description or "" }
 | 
| 
bsw@1495
 | 
   344                           ui.field.boolean{ label = _"delete", name = "file_delete_" .. file.id, value = param.get("file_delete_" .. file.id) and true or false }
 | 
| 
bsw@1495
 | 
   345                           slot.put("<br /><br />")
 | 
| 
bsw@1495
 | 
   346                         end
 | 
| 
bsw@1495
 | 
   347                       end
 | 
| 
bsw@1495
 | 
   348                     }
 | 
| 
bsw@1495
 | 
   349                   end
 | 
| 
bsw@1496
 | 
   350                 end
 | 
| 
bsw@1496
 | 
   351                 local filename = encode.file_path(WEBMCP_BASE_PATH, 'tmp', "file_upload-" .. file_upload_session .. ".json")
 | 
| 
bsw@1496
 | 
   352                 local fh = io.open(filename, "r")
 | 
| 
bsw@1496
 | 
   353                 if fh then
 | 
| 
bsw@1496
 | 
   354                   local file_uploads = json.import(fh:read("*a"))
 | 
| 
bsw@1496
 | 
   355                   for i, file_upload in ipairs(file_uploads) do
 | 
| 
bsw@1496
 | 
   356                     ui.image{ module = "draft", view = "show_file_upload", params = {
 | 
| 
bsw@1496
 | 
   357                       file_upload_session = file_upload_session, file_id = file_upload.id, preview = true
 | 
| 
bsw@1496
 | 
   358                     } }
 | 
| 
bsw@1496
 | 
   359                     ui.container{ content = function()
 | 
| 
bsw@1496
 | 
   360                       ui.tag{ tag = "strong", content = file_upload.title or "" }
 | 
| 
bsw@1496
 | 
   361                     end }
 | 
| 
bsw@1496
 | 
   362                     ui.container{ content = file_upload.description or "" }
 | 
| 
bsw@1496
 | 
   363                     ui.field.boolean{ label = _"delete", name = "file_upload_delete_" .. file_upload.id }
 | 
| 
bsw@1496
 | 
   364                     slot.put("<br />")
 | 
| 
bsw@1495
 | 
   365                   end
 | 
| 
bsw@1496
 | 
   366                 end
 | 
| 
bsw@1496
 | 
   367                 ui.container{ attr = { id = "file_upload_template", style = "display: none;" }, content = function()
 | 
| 
bsw@1496
 | 
   368                   ui.field.text{ label = _"Title", name = "__ID_title__" }
 | 
| 
bsw@1496
 | 
   369                   ui.field.text{ label = _"Description", name = "__ID_description__" }
 | 
| 
bsw@1496
 | 
   370                   ui.field.image{ field_name = "__ID_file__" }
 | 
| 
bsw@1496
 | 
   371                 end }
 | 
| 
bsw@1496
 | 
   372                 ui.container{ attr = { id = "file_upload" }, content = function()
 | 
| 
bsw@1496
 | 
   373                 end }
 | 
| 
bsw@1496
 | 
   374                 ui.field.hidden{ attr = { id = "file_upload_last_id" }, name = "file_upload_last_id" }
 | 
| 
bsw@1496
 | 
   375                 ui.script{ script = [[ var file_upload_id = 1; ]] }
 | 
| 
bsw@1496
 | 
   376                 ui.tag{ tag = "a", content = _"Attach image", attr = { 
 | 
| 
bsw@1496
 | 
   377                   href = "#",
 | 
| 
bsw@1496
 | 
   378                   onclick = "var html = document.getElementById('file_upload_template').innerHTML; html = html.replace('__ID_file__', 'file_' + file_upload_id); html = html.replace('__ID_title__', 'title_' + file_upload_id); html = html.replace('__ID_description__', 'description_' + file_upload_id); var el = document.createElement('div'); el.innerHTML = html; document.getElementById('file_upload').appendChild(el); document.getElementById('file_upload_last_id').value = file_upload_id; file_upload_id++; return false;"
 | 
| 
bsw@1496
 | 
   379                 } }
 | 
| 
bsw@1496
 | 
   380                 slot.put("<br />")
 | 
| 
bsw@1496
 | 
   381                 
 | 
| 
bsw@1496
 | 
   382                 slot.put("<br />")
 | 
| 
bsw@1495
 | 
   383 
 | 
| 
bsw@1496
 | 
   384               end
 | 
| 
bsw@1045
 | 
   385 
 | 
| 
bsw@1496
 | 
   386               ui.tag{
 | 
| 
bsw@1496
 | 
   387                 tag = "input",
 | 
| 
bsw@1496
 | 
   388                 attr = {
 | 
| 
bsw@1496
 | 
   389                   type = "submit",
 | 
| 
bsw@1496
 | 
   390                   name = "preview",
 | 
| 
bsw@1496
 | 
   391                   class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--colored",
 | 
| 
bsw@1496
 | 
   392                   value = _'Preview'
 | 
| 
bsw@1496
 | 
   393                 },
 | 
| 
bsw@1496
 | 
   394                 content = ""
 | 
| 
bsw@1496
 | 
   395               }
 | 
| 
bsw@1496
 | 
   396               slot.put("   ")
 | 
| 
bsw@1496
 | 
   397               
 | 
| 
bsw@1496
 | 
   398               ui.link{
 | 
| 
bsw@1496
 | 
   399                 content = _"Cancel",
 | 
| 
bsw@1496
 | 
   400                 module = initiative and "initiative" or issue and "issue" or "index",
 | 
| 
bsw@1497
 | 
   401                 view = area and not issue and "index" or "show",
 | 
| 
bsw@1496
 | 
   402                 id = initiative_id or issue_id,
 | 
| 
bsw@1496
 | 
   403                 params = { area = area_id, unit = area and area.unit_id or nil },
 | 
| 
bsw@1496
 | 
   404                 attr = { class = "mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect" }
 | 
| 
bsw@1496
 | 
   405               }
 | 
| 
bsw@1496
 | 
   406               
 | 
| 
bsw/jbe@1309
 | 
   407             end
 | 
| 
bsw/jbe@1309
 | 
   408           end }
 | 
| 
bsw/jbe@1309
 | 
   409         end }
 | 
| 
bsw/jbe@1309
 | 
   410       end }
 | 
| 
bsw@1520
 | 
   411 
 | 
| 
bsw@1520
 | 
   412       if config.map or config.firstlife then
 | 
| 
bsw@1520
 | 
   413         ui.cell_sidebar{ content = function()
 | 
| 
bsw@1520
 | 
   414           ui.container{ attr = { class = "mdl-special-card map mdl-shadow--2dp" }, content = function()
 | 
| 
bsw@1520
 | 
   415             ui.field.location{ name = "location", value = param.get("location") }
 | 
| 
bsw@1520
 | 
   416           end }
 | 
| 
bsw@1520
 | 
   417         end }
 | 
| 
bsw@1520
 | 
   418       end
 | 
| 
bsw@1520
 | 
   419 
 | 
| 
bsw@1550
 | 
   420       if config.firstlife then
 | 
| 
bsw@1550
 | 
   421         ui.field.hidden{ name = "external_reference", value = param.get("external_reference") }
 | 
| 
bsw@1550
 | 
   422       end
 | 
| 
bsw@1550
 | 
   423 
 | 
| 
bsw/jbe@1309
 | 
   424     end }
 | 
| 
bsw/jbe@0
 | 
   425   end
 | 
| 
bsw/jbe@0
 | 
   426 }
 |