Merge pull request #911 from agh1/membership-dash-counts-new
[civicrm-core.git] / templates / CRM / Campaign / Form / Gotv.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.3 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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 cj( function( ){
45 loadVoterList( );
46 });
47 </script>
48 {/literal}
49
50 <table id="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 cj( 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 = cj( '#campaign_survey_id' ).val();
102 var interviewerId = cj( '#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 cj.get( dataUrl, null, function( voterList ) {
110 cj( '#voterList' ).html( voterList );
111
112 //collapse the search form.
113 var searchFormName = '#search_form_' + {/literal}'{$searchVoterFor}'{literal};
114 cj( 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
124 cj( '#gotvVoterRecords' ).dataTable({
125 "bFilter" : false,
126 "bAutoWidth" : false,
127 "bProcessing": true,
128 "bJQueryUI" : true,
129 "aaSorting": [[0,''],[1,'asc'], [2,'asc'], [3,'asc'], [4,'asc'], [5,'asc'] ],
130 "aoColumns":[{bSortable:false},{sClass:""},{sClass:""},{sClass:""},{sClass:""},{sClass:""},{bSortable:false}],
131 "sPaginationType": "full_numbers",
132 "sDom" : '<"crm-datatable-pager-top"lfp>rt<"crm-datatable-pager-bottom"ip>',
133 "bServerSide": true,
134 "sAjaxSource": sourceUrl,
135 "fnDrawCallback": function() { cj().crmtooltip(); },
136
137 "fnServerData": function ( sSource, aoData, fnCallback ) {
138 var dataLength = aoData.length;
139
140 var count = 1;
141 var searchCriteria = new Array( 'campaign_search_voter_for' );
142
143 //get the search criteria.
144 var searchParams = {/literal}{$searchParams}{literal};
145 for ( param in searchParams ) {
146 if ( val = cj( '#' + param ).val( ) ) {
147 aoData[dataLength++] = {name: param , value: val };
148 }
149 searchCriteria[count++] = param;
150 }
151
152 //do search to reserve voters.
153 aoData[dataLength++] = {name: 'campaign_search_voter_for', value: searchVoterFor};
154
155 //lets transfer search criteria.
156 aoData[dataLength++] = {name: 'searchCriteria', value:searchCriteria.join(',')};
157
158 cj.ajax( {
159 "dataType": 'json',
160 "type": "POST",
161 "url": sSource,
162 "data": aoData,
163 "success": fnCallback
164 } ); }
165 });
166 }
167
168 function processVoterData( element, operation )
169 {
170
171 var data = new Object;
172 if ( !operation ) return;
173
174 var data = new Object;
175 if ( operation == 'release' ) {
176 data['operation'] = operation;
177 data['activity_id'] = cj( element ).val( );
178 data['isDelete'] = cj( element ).attr( 'checked') ? 1:0;
179 } else if ( operation == 'reserve' ) {
180 var interviewerId = cj( '#survey_interviewer_id' ).val( );
181 data['operation'] = operation;
182 data['source_record_id'] = cj( '#campaign_survey_id' ).val( );
183 data['target_contact_id'] = cj( element ).val( );
184 data['source_contact_id'] = interviewerId;
185 data['assignee_contact_id'] = interviewerId;
186 data['isReserved'] = cj( element ).attr( 'checked') ? 1:0;
187 } else if ( operation == 'gotv' ) {
188 data['operation'] = operation;
189 data['activity_id'] = cj( element ).val( );
190 data['hasVoted'] = cj( element ).attr( 'checked') ? 1: 0;
191 }
192 data['surveyTitle'] = {/literal}'{$surveyTitle|escape:javascript}'{literal};
193
194 var actUrl = {/literal}
195 "{crmURL p='civicrm/ajax/rest' h=0 q='className=CRM_Campaign_Page_AJAX&fnName=processVoterData'}"
196 {literal};
197
198 //post data to save voter as voted/non voted.
199 cj.post( actUrl,
200 data,
201 function( response ) {
202 if ( response.status == 'success' ) {
203 var msgId = '#success_msg_' + cj( element ).val( );
204 cj( msgId ).fadeIn('slow').fadeOut('slow');
205 if ( operation == 'release' ) {
206 msg = '{/literal}{ts escape='js'}Save as voted.{/ts}{literal}';
207 var isDeleted = cj( element ).attr( 'checked') ? 1:0;
208 if ( !isDeleted ) msg = '{/literal}{ts escape='js'}Save as non voted.{/ts}{literal}';
209 } else if ( operation == 'gotv' ) {
210 msg = '{/literal}{ts escape='js'}Vote Recorded.{/ts}{literal}';
211 var hasVoted = cj( element ).attr( 'checked') ? 1:0;
212 var trObject = cj( '[id^="survey_activity['+ cj( element ).val() +']"]' ).parents('tr' );
213 var methodName = 'addClass';
214 if ( !hasVoted ) {
215 msg = '{/literal}{ts escape='js'}Vote Cancelled.{/ts}{literal}';
216 methodName = 'removeClass';
217 }
218 eval( 'trObject.' + methodName + "( 'name disabled' )" );
219 } else if ( operation == 'reserve' ) {
220 if ( cj( element ).attr( 'checked') ) {
221 msg = '{/literal}{ts escape='js'}Reserved.{/ts}{literal}';
222 } else {
223 msg = '{/literal}{ts escape='js'}Released.{/ts}{literal}';
224 }
225 }
226 cj( msgId ).html( msg );
227 }
228 }, 'json' );
229
230 }
231
232 </script>
233 {/literal}