Merge pull request #8427 from eileenmcnaughton/event_cart
[civicrm-core.git] / templates / CRM / Campaign / Form / Gotv.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.7 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2016 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 *}
26
27 {if $errorMessages}
28 <div class="messages status crm-error no-popup">
29 <div class="icon inform-icon"></div>
30 <ul>
31 {foreach from=$errorMessages item=errorMsg}
32 <li>{ts}{$errorMsg}{/ts}</li>
33 {/foreach}
34 </ul>
35 </div>
36 </div>
37
38 {elseif $buildSelector}
39
40 {* load voter selector for reserve/release *}
41
42 {literal}
43 <script type="text/javascript">
44 CRM.$(function($) {
45 loadVoterList( );
46 });
47 </script>
48 {/literal}
49
50 <table class="gotvVoterRecords">
51 <thead>
52 <tr class="columnheader">
53 <th></th>
54 <th>{ts}Name{/ts}</th>
55 <th>{ts}Street Address{/ts}</th>
56 <th>{ts}Street Name{/ts}</th>
57 <th>{ts}Street Number{/ts}</th>
58 <th>{ts}Street Unit{/ts}</th>
59 {if $searchVoterFor eq 'release'}
60 <th>{ts}Is Interview Conducted?{/ts}</th>
61 {elseif $searchVoterFor eq 'gotv'}
62 <th>{ts}Voted?{/ts}</th>
63 {else}
64 <th>{ts}Is Reserved?{/ts}</th>
65 {/if}
66 </tr>
67 </thead>
68 <tbody></tbody>
69 </table>
70
71 {else}
72
73 {* build search form *}
74 {include file='CRM/Campaign/Form/Search/Common.tpl' context='gotv'}
75 <div id='voterList'></div>
76
77 {/if} {* end of search form build *}
78
79
80 {literal}
81 <script type="text/javascript">
82
83 {/literal}
84 {* load selector when force *}
85 {if $force and !$buildSelector}
86 {literal}
87 CRM.$(function($) {
88 searchVoters( {/literal}'{$qfKey}'{literal} );
89 });
90
91 {/literal}
92 {/if}
93 {literal}
94
95 function searchVoters( qfKey )
96 {
97 var dataUrl = {/literal}"{crmURL h=0 q='search=1&snippet=4'}"{literal};
98
99 //carry survey and interviewer id,
100 //might be helpful if user jump from current tab to interview tab.
101 var surveyId = CRM.$( '#campaign_survey_id' ).val();
102 var interviewerId = CRM.$( '#survey_interviewer_id' ).val();
103 if ( surveyId ) dataUrl = dataUrl + '&sid=' + surveyId;
104 if ( interviewerId ) dataUrl = dataUrl + '&cid=' + interviewerId;
105
106 //lets carry qfKey to retain form session.
107 if ( qfKey ) dataUrl = dataUrl + '&qfKey=' + qfKey;
108
109 CRM.$.get( dataUrl, null, function( voterList ) {
110 CRM.$( '#voterList' ).html( voterList ).trigger('crmLoad');
111
112 //collapse the search form.
113 var searchFormName = '#search_form_' + {/literal}'{$searchVoterFor}'{literal};
114 CRM.$( searchFormName + '.crm-accordion-wrapper:not(.collapsed)').crmAccordionToggle();
115 }, 'html' );
116 }
117
118 function loadVoterList( )
119 {
120 var sourceUrl = {/literal}"{crmURL p='civicrm/ajax/rest' h=0 q='snippet=4&className=CRM_Campaign_Page_AJAX&fnName=voterList' }"{literal};
121
122 var searchVoterFor = {/literal}'{$searchVoterFor}'{literal};
123 CRM.$( 'table.gotvVoterRecords', 'form.{/literal}{$form.formClass}{literal}').dataTable({
124 "bFilter" : false,
125 "bAutoWidth" : false,
126 "bProcessing": true,
127 "bJQueryUI" : true,
128 "aaSorting": [[0,''],[1,'asc'], [2,'asc'], [3,'asc'], [4,'asc'], [5,'asc'] ],
129 "aoColumns":[{bSortable:false},{sClass:""},{sClass:""},{sClass:""},{sClass:""},{sClass:""},{bSortable:false}],
130 "sPaginationType": "full_numbers",
131 "sDom" : '<"crm-datatable-pager-top"lfp>rt<"crm-datatable-pager-bottom"ip>',
132 "bServerSide": true,
133 "sAjaxSource": sourceUrl,
134
135 "fnServerData": function ( sSource, aoData, fnCallback ) {
136 var dataLength = aoData.length;
137
138 var count = 1;
139 var searchCriteria = ['campaign_search_voter_for'];
140
141 //get the search criteria.
142 var searchParams = {/literal}{$searchParams}{literal};
143 for ( param in searchParams ) {
144 if ( val = CRM.$( '#' + param ).val( ) ) {
145 aoData[dataLength++] = {name: param , value: val };
146 }
147 searchCriteria[count++] = param;
148 }
149
150 //do search to reserve voters.
151 aoData[dataLength++] = {name: 'campaign_search_voter_for', value: searchVoterFor};
152
153 //lets transfer search criteria.
154 aoData[dataLength++] = {name: 'searchCriteria', value:searchCriteria.join(',')};
155
156 CRM.$.ajax( {
157 "dataType": 'json',
158 "type": "POST",
159 "url": sSource,
160 "data": aoData,
161 "success": fnCallback
162 } ); }
163 });
164 }
165
166 function processVoterData( element, operation )
167 {
168
169 var data = new Object;
170 if ( !operation ) return;
171
172 var data = new Object;
173 if ( operation == 'release' ) {
174 data['operation'] = operation;
175 data['activity_id'] = CRM.$( element ).val( );
176 data['isDelete'] = CRM.$( element ).prop('checked') ? 1:0;
177 } else if ( operation == 'reserve' ) {
178 var interviewerId = CRM.$( '#survey_interviewer_id' ).val( );
179 data['operation'] = operation;
180 data['source_record_id'] = CRM.$( '#campaign_survey_id' ).val( );
181 data['target_contact_id'] = CRM.$( element ).val( );
182 data['source_contact_id'] = interviewerId;
183 data['assignee_contact_id'] = interviewerId;
184 data['isReserved'] = CRM.$( element ).prop('checked') ? 1:0;
185 } else if ( operation == 'gotv' ) {
186 data['operation'] = operation;
187 data['activity_id'] = CRM.$( element ).val( );
188 data['hasVoted'] = CRM.$( element ).prop('checked') ? 1: 0;
189 }
190 data['surveyTitle'] = {/literal}'{$surveyTitle|escape:javascript}'{literal};
191
192 var actUrl = {/literal}
193 "{crmURL p='civicrm/ajax/rest' h=0 q='className=CRM_Campaign_Page_AJAX&fnName=processVoterData'}"
194 {literal};
195
196 //post data to save voter as voted/non voted.
197 CRM.$.post( actUrl,
198 data,
199 function( response ) {
200 if ( response.status == 'success' ) {
201 var msgId = '#success_msg_' + CRM.$( element ).val( );
202 CRM.$( msgId ).fadeIn('slow').fadeOut('slow');
203 if ( operation == 'release' ) {
204 msg = '{/literal}{ts escape='js'}Save as voted.{/ts}{literal}';
205 var isDeleted = CRM.$( element ).prop('checked') ? 1:0;
206 if ( !isDeleted ) msg = '{/literal}{ts escape='js'}Save as non voted.{/ts}{literal}';
207 } else if ( operation == 'gotv' ) {
208 msg = '{/literal}{ts escape='js'}Vote Recorded.{/ts}{literal}';
209 var hasVoted = CRM.$( element ).prop('checked') ? 1:0;
210 var trObject = CRM.$( '[id^="survey_activity['+ CRM.$( element ).val() +']"]' ).parents('tr' );
211 var methodName = 'addClass';
212 if ( !hasVoted ) {
213 msg = '{/literal}{ts escape='js'}Vote Cancelled.{/ts}{literal}';
214 methodName = 'removeClass';
215 }
216 eval( 'trObject.' + methodName + "( 'name disabled' )" );
217 } else if ( operation == 'reserve' ) {
218 if ( CRM.$( element ).prop('checked') ) {
219 msg = '{/literal}{ts escape='js'}Reserved.{/ts}{literal}';
220 } else {
221 msg = '{/literal}{ts escape='js'}Released.{/ts}{literal}';
222 }
223 }
224 CRM.$( msgId ).html( msg );
225 }
226 }, 'json' );
227
228 }
229
230 </script>
231 {/literal}