From a7e001db637e46e64d00edbf436a61c9816d6a4c Mon Sep 17 00:00:00 2001 From: Felix Niklas Date: Thu, 25 Jun 2015 16:10:22 +0200 Subject: [PATCH] add calendar subscriptions layout_ref --- .../app/controllers/layout_ref.js.coffee | 73 +++++++++++++++++++ .../layout_ref/calendar_subscription.jst.eco | 60 +++++++++++++++ .../app/views/layout_ref/index.jst.eco | 1 + app/assets/stylesheets/bootstrap.css | 1 - app/assets/stylesheets/zammad.css.scss | 47 +++++++++++- 5 files changed, 178 insertions(+), 4 deletions(-) create mode 100644 app/assets/javascripts/app/views/layout_ref/calendar_subscription.jst.eco diff --git a/app/assets/javascripts/app/controllers/layout_ref.js.coffee b/app/assets/javascripts/app/controllers/layout_ref.js.coffee index 2d6c953f2..2a0f005a6 100644 --- a/app/assets/javascripts/app/controllers/layout_ref.js.coffee +++ b/app/assets/javascripts/app/controllers/layout_ref.js.coffee @@ -1428,4 +1428,77 @@ class searchableSelectRef extends App.ControllerContent App.Config.set( 'layout_ref/search_select', searchableSelectRef, 'Routes' ) + +class calendarSubscriptionsRef extends App.ControllerContent + + elements: + 'input[type=checkbox]': 'options' + 'output': 'output' + + events: + 'change input[type=checkbox]': 'onOptionsChange' + 'click .js-select': 'selectAll' + + constructor: -> + super + @render() + + render: -> + @html App.view('layout_ref/calendar_subscription') + + selectAll: (e) -> + e.currentTarget.focus() + e.currentTarget.select() + + onOptionsChange: => + optionCount = 3 + data = @options.serializeArray() + modules = [] + translationTable = + own: 'my' + not_assigned: 'not assigned' + new_open: 'new & open' + pending: 'pending' + escalating: 'escalating' + + # check if there is any data + if data.length is 0 + @output + .attr 'disabled', true + .text "No subscriptions active" + return + + # check if all my tickets got selected + own = data.filter((entry) -> entry.name.indexOf('own') >= 0) + not_assigned = data.filter((entry) -> entry.name.indexOf('not_assigned') >= 0) + + if own.length is optionCount + modules.push "all my" + else + modules.push.apply modules, own.map (entry) -> + [option, value] = entry.name.split('/') + return "#{ translationTable[value] } #{ translationTable[option] }" + + if not_assigned.length is optionCount + modules.push "all not assigned" + else + modules.push.apply modules, not_assigned.map (entry) -> + [option, value] = entry.name.split('/') + return "#{ translationTable[value] } #{ translationTable[option] }" + + @output + .attr 'disabled', false + .text "Subscription to #{ @joinItems modules } tickets:" + + joinItems: (items) -> + switch items.length + when 1 then return items[0] + when 2 then return "#{ items[0] } and #{ items[1] }" + else + return "#{ items.slice(0, -1).join(', ') } and #{ items[items.length-1] }" + + +App.Config.set( 'layout_ref/calendar_subscription', calendarSubscriptionsRef, 'Routes' ) + + App.Config.set( 'LayoutRef', { prio: 1700, parent: '#current_user', name: 'Layout Reference', translate: true, target: '#layout_ref', role: [ 'Admin' ] }, 'NavBarRight' ) \ No newline at end of file diff --git a/app/assets/javascripts/app/views/layout_ref/calendar_subscription.jst.eco b/app/assets/javascripts/app/views/layout_ref/calendar_subscription.jst.eco new file mode 100644 index 000000000..a24e0916b --- /dev/null +++ b/app/assets/javascripts/app/views/layout_ref/calendar_subscription.jst.eco @@ -0,0 +1,60 @@ + + +
+ +

Ticket Subscriptions

+ +

See your tickets from within your favorite calendar by adding the following url to your calendar app.

+ +

Url

+
+ Subscription to all my tickets: + +
+ +

Settings

+ + + + + + + + + + + + + +
Status Type + Options + Direct URL +
new/open + + + +
pending + + + +
escalating + + + +
+
\ No newline at end of file diff --git a/app/assets/javascripts/app/views/layout_ref/index.jst.eco b/app/assets/javascripts/app/views/layout_ref/index.jst.eco index 1593b38b8..facb2a3e4 100644 --- a/app/assets/javascripts/app/views/layout_ref/index.jst.eco +++ b/app/assets/javascripts/app/views/layout_ref/index.jst.eco @@ -4,6 +4,7 @@