forked from peterhajas/MobileNotifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMNAlertDashboardViewController.m
278 lines (234 loc) · 9.83 KB
/
MNAlertDashboardViewController.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*
Copyright (c) 2010-2011, Peter Hajas
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the Peter Hajas nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL PETER HAJAS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#import <QuartzCore/QuartzCore.h>
#import "MNAlertDashboardViewController.h"
@implementation MNAlertDashboardViewController
@synthesize window;
@synthesize delegate = _delegate;
-(id)initWithDelegate:(id)__delegate;
{
self = [super init];
if (self)
{
CGRect screenBounds = [[UIScreen mainScreen] bounds];
_delegate = __delegate;
// window:
window = [[UIWindow alloc]
initWithFrame:CGRectMake(0,0,screenBounds.size.width,screenBounds.size.height)];
window.windowLevel = UIWindowLevelAlert+102.0f;
window.userInteractionEnabled = YES;
window.hidden = YES;
// button to return to the application
returnToApplicationButton = [UIButton buttonWithType:UIButtonTypeCustom];
returnToApplicationButton.frame = CGRectMake(0.0, 0.0, 320.0, 480.0);
[returnToApplicationButton setAlpha:1.0];
// wire up the button!
[returnToApplicationButton addTarget:self action:@selector(dismissSwitcher:)
forControlEvents:UIControlEventTouchUpInside];
// Table View Data Source
tableViewDataSourceEditable = [[MNAlertTableViewDataSourceEditable alloc] initWithStyle:kMNAlertTableViewDataSourceTypePending
andDelegate:_delegate];
// Create the tableview
alertListView = [[UITableView alloc] initWithFrame:CGRectMake(16.5,112,287,325) style:UITableViewStylePlain];
alertListView.delegate = self;
alertListView.dataSource = tableViewDataSourceEditable;
[alertListView setAlpha:1.0];
alertListView.backgroundColor = [UIColor whiteColor];
alertListView.layer.cornerRadius = 10;
// Dashboard background
dashboardBackground = [[UIView alloc] initWithFrame:CGRectMake(0,0,screenBounds.size.width,screenBounds.size.height)];
[dashboardBackground setBackgroundColor:[UIColor blackColor]];
[dashboardBackground setAlpha:0.75];
// ClearAllButton
clearAllButton = [UIButton buttonWithType:UIButtonTypeCustom];
clearAllButton.frame = CGRectMake(80,427,160,60);
[clearAllButton setTitle:@"Clear pending" forState: UIControlStateNormal];
[clearAllButton setAlpha:1.0];
clearAllButton.titleLabel.font = [UIFont fontWithName:@"Helvetica-Bold" size:18];
clearAllButton.titleLabel.textAlignment = UITextAlignmentCenter;
clearAllButton.titleLabel.textColor = [UIColor whiteColor];
clearAllButton.titleLabel.shadowColor = [UIColor blackColor];
clearAllButton.titleLabel.shadowOffset = CGSizeMake(0,-1);
clearAllButton.backgroundColor = [UIColor clearColor];
// Wire up clearAllButton
[clearAllButton addTarget:self action:@selector(clearDashboardPushed:)
forControlEvents:UIControlEventTouchUpInside];
// Add everything to the view
dashboardShowing = NO;
[window addSubview:dashboardBackground];
[window addSubview:returnToApplicationButton];
[window addSubview:alertListView];
[window addSubview:clearAllButton];
// Release stuff we don't need to hang on to
[alertListView release];
// [dashboardBackground release];
[UIView setAnimationDidStopSelector:@selector(animationDidStop:didFinish:inContext:)];
}
return self;
}
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
// Take action on the alert
[_delegate actionOnAlertAtIndex:indexPath.row];
}
-(void)refresh
{
[alertListView reloadData];
}
-(void)dismissSwitcher:(id)sender
{
[_delegate dismissSwitcher];
}
-(void)toggleDashboard
{
if (dashboardShowing)
{
[self fadeDashboardDown];
}
else
{
[self showDashboard];
}
}
// ---------------------------------------------------
// Animate dashboard elements down for a "fade down"
// effect similar to the multitasking drawer animation
// ---------------------------------------------------
-(void)fadeDashboardDown
{
window.userInteractionEnabled = NO;
dashboardShowing = NO;
[UIView beginAnimations:@"fadeDashboardDown" context:NULL];
[UIView setAnimationDuration:0.25];
[window setFrame:CGRectMake(0,0,320,480)];
[window setAlpha:0.0];
[clearActionSheet dismissWithClickedButtonIndex:1 animated:YES];
[UIView commitAnimations];
}
// -----------------------------------------------
// Animate dashboard elements using a "fade away"
// effect to better match the app switching effect
// -----------------------------------------------
-(void)fadeDashboardAway
{
window.userInteractionEnabled = NO;
dashboardShowing = NO;
[UIView beginAnimations:@"fadeDashboardAway" context:NULL];
[UIView setAnimationDuration:0.135];
// Shrink the elements and fade out
// to create a zoom out effect
alertListView.transform = CGAffineTransformMakeScale(0.1,0.1);
clearAllButton.transform = CGAffineTransformMakeScale(0.1,0.1);
[window setAlpha:0.0];
[UIView commitAnimations];
[window setFrame:CGRectMake(0,0,320,480)];
}
// -----------------------------------------------
// Animate the dashboard elements "up" similar to
// the multitasking drawer animation to make room
// for the application switcher
// -----------------------------------------------
-(void)showDashboard
{
window.userInteractionEnabled = YES;
window.hidden = NO;
dashboardShowing = YES;
// Restore previously transformed elements
alertListView.transform = CGAffineTransformIdentity;
clearAllButton.transform = CGAffineTransformIdentity;
[UIView beginAnimations:@"fadeIn" context:NULL];
[UIView setAnimationDuration:0.25];
[window setFrame:CGRectMake(0,-92,320,480)];
[window setAlpha:1.0];
[UIView commitAnimations];
}
-(void)clearDashboardPushed:(id)sender
{
//Let's create a UIActionSheet to deal with this very destructive action
clearActionSheet = [[UIActionSheet alloc] initWithTitle:@"Clear pending alerts?"
delegate:self
cancelButtonTitle:@"Cancel"
destructiveButtonTitle:@"Clear pending"
otherButtonTitles:nil];
// Temporarily reposition window and elements
// to cover up the application switcher drawer
[window setFrame:CGRectMake(0,0,320,480)];
[alertListView setFrame:CGRectMake(16,20,287,322)];
[clearAllButton setAlpha:0];
// Show the sheet
if ([clearActionSheet respondsToSelector:@selector(showInView:)])
{
[clearActionSheet removeFromSuperview];
[clearActionSheet showInView:window];
[clearActionSheet setFrame:CGRectMake(0,300,320,185)];
[window addSubview:clearActionSheet];
}
else
{
// If they're on an older device, do some fancy
// footwork to get the UIActionSheet to show up
[clearActionSheet showInView:window];
[clearActionSheet setFrame:CGRectMake(0,300,320,185)];
}
}
-(void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
{
if (buttonIndex == 0)
{
// Clear notifications!
[actionSheet dismissWithClickedButtonIndex:0 animated:YES];
[_delegate clearPending];
}
else if (buttonIndex == 1)
{
// Don't do anything!
[actionSheet dismissWithClickedButtonIndex:1 animated:YES];
}
// Restore window and elements to original positions
[window setFrame:CGRectMake(0,-92,320,480)];
[alertListView setFrame:CGRectMake(16,112,287,322)];
[clearAllButton setAlpha:1.0];
}
-(void)animationDidStop:(NSString*)animationID didFinish:(NSNumber*)finished inContext:(id)context
{
if ([animationID isEqualToString:@"fadeIn"])
{
window.userInteractionEnabled = YES;
}
if ([animationID isEqualToString:@"fadeDashboardDown"] || [animationID isEqualToString:@"fadeDashboardAway"])
{
window.userInteractionEnabled = NO;
window.hidden = YES;
}
}
-(bool)isShowing
{
return dashboardShowing;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return [tableViewDataSourceEditable tableView:tableView heightForRowAtIndexPath:indexPath];
}
@end