forked from opa334/AltList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATLApplicationListControllerBase.m
496 lines (427 loc) · 13.7 KB
/
ATLApplicationListControllerBase.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
#import "ATLApplicationListControllerBase.h"
#import "CoreServices.h"
#import "LSApplicationProxy+AltList.h"
@interface UIImage (Private)
+ (instancetype)_applicationIconImageForBundleIdentifier:(NSString*)bundleIdentifier format:(int)format scale:(CGFloat)scale;
@end
@implementation ATLApplicationListControllerBase
- (instancetype)init
{
self = [super init];
_altListBundle = [NSBundle bundleForClass:[ATLApplicationListControllerBase class]];
[[LSApplicationWorkspace defaultWorkspace] addObserver:self];
return self;
}
- (instancetype)initWithSections:(NSArray<ATLApplicationSection*>*)applicationSections
{
self = [self init];
_applicationSections = applicationSections;
return self;
}
- (void)dealloc
{
[[LSApplicationWorkspace defaultWorkspace] removeObserver:self];
}
- (void)viewDidLoad
{
[super viewDidLoad];
PSSpecifier* specifier = [self specifier];
NSNumber* useSearchBarNum = [specifier propertyForKey:@"useSearchBar"];
if(useSearchBarNum)
{
self.useSearchBar = [useSearchBarNum boolValue];
}
if(self.useSearchBar)
{
NSNumber* hideSearchBarWhileScrollingNum = [specifier propertyForKey:@"hideSearchBarWhileScrolling"]; // only on ios 11 and up
if(hideSearchBarWhileScrollingNum)
{
self.hideSearchBarWhileScrolling = [hideSearchBarWhileScrollingNum boolValue];
}
}
[self _setUpSearchBar];
}
// UITableViewDelegate
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return 0.00000000001;
}
}
return [super tableView:tableView heightForHeaderInSection:section];
}
- (NSString*)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return nil;
}
}
return [super tableView:tableView titleForHeaderInSection:section];
}
- (CGFloat)tableView:(UITableView *)tableView heightForFooterInSection:(NSInteger)section
{
if(self.alphabeticIndexingEnabled)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue] || [[specifier propertyForKey:@"isFirstLetterSection"] boolValue])
{
return 0.00000000001;
}
}
return [super tableView:tableView heightForFooterInSection:section];
}
- (NSString*)tableView:(UITableView *)tableView titleForFooterInSection:(NSInteger)section
{
if(self.hideAlphabeticSectionHeaders)
{
PSSpecifier* specifier = [self specifierAtIndex:[self indexOfGroup:section]];
if([[specifier propertyForKey:@"isLetterSection"] boolValue])
{
return nil;
}
}
return [super tableView:tableView titleForFooterInSection:section];
}
- (NSArray<NSString *> *)sectionIndexTitlesForTableView:(UITableView *)tableView
{
if(self.alphabeticIndexingEnabled)
{
return [[_specifiersByLetter allKeys] sortedArrayUsingSelector:@selector(localizedCaseInsensitiveCompare:)];
}
return nil;
}
// UITableViewDelegate end
// LSApplicationWorkspaceObserverProtocol
- (void)applicationsDidInstall:(id)arg1
{
[self reloadApplications];
}
- (void)applicationsDidUninstall:(id)arg1
{
[self reloadApplications];
}
// LSApplicationWorkspaceObserverProtocol end
- (void)setAlphabeticIndexingEnabled:(BOOL)enabled
{
if(_applicationSections.count == 1)
{
_alphabeticIndexingEnabled = enabled;
return;
}
_alphabeticIndexingEnabled = NO;
}
- (void)_setUpSearchBar
{
if(self.useSearchBar)
{
_searchController = [[UISearchController alloc] initWithSearchResultsController:nil];
_searchController.searchResultsUpdater = self;
if (@available(iOS 9.1, *)) _searchController.obscuresBackgroundDuringPresentation = NO;
if (@available(iOS 11.0, *))
{
self.navigationItem.searchController = _searchController;
self.navigationItem.hidesSearchBarWhenScrolling = self.hideSearchBarWhileScrolling;
}
else
{
self.table.tableHeaderView = _searchController.searchBar;
[self.table setContentOffset:CGPointMake(0,44) animated:NO];
}
}
}
- (void)updateSearchResultsForSearchController:(UISearchController *)searchController
{
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
_searchKey = searchController.searchBar.text;
dispatch_async(dispatch_get_main_queue(), ^(void){
[self reloadSpecifiers];
});
});
}
- (void)_loadSectionsFromSpecifier
{
NSArray* plistSections = [[self specifier] propertyForKey:@"sections"];
if(plistSections)
{
NSMutableArray* applicationSectionsM = [NSMutableArray new];
[plistSections enumerateObjectsUsingBlock:^(NSDictionary* dict, NSUInteger idx, BOOL *stop)
{
if(![dict isKindOfClass:[NSDictionary class]]) return;
ATLApplicationSection* section = [ATLApplicationSection applicationSectionWithDictionary:dict];
[applicationSectionsM addObject:section];
}];
_applicationSections = applicationSectionsM.copy;
}
else
{
_applicationSections = @[[[ATLApplicationSection alloc] initNonCustomSectionWithType:SECTION_TYPE_VISIBLE]];
}
}
- (NSArray<NSSortDescriptor*>*)sortDescriptorsForApplications
{
return @[[NSSortDescriptor sortDescriptorWithKey:@"localizedName" ascending:YES selector:@selector(localizedCaseInsensitiveCompare:)]];
}
- (void)_populateSections
{
NSArray<LSApplicationProxy*>* allInstalledApplications = [[LSApplicationWorkspace defaultWorkspace] allInstalledApplications];
[_applicationSections enumerateObjectsUsingBlock:^(ATLApplicationSection* section, NSUInteger idx, BOOL *stop)
{
[section populateFromAllApplications:allInstalledApplications];
}];
}
- (void)loadPreferences { }
- (void)prepareForPopulatingSections
{
NSNumber* showIdentifiersAsSubtitleNum = [[self specifier] propertyForKey:@"showIdentifiersAsSubtitle"];
if(showIdentifiersAsSubtitleNum)
{
self.showIdentifiersAsSubtitle = [showIdentifiersAsSubtitleNum boolValue];
}
NSNumber* alphabeticIndexingEnabledNum = [[self specifier] propertyForKey:@"alphabeticIndexingEnabled"];
self.alphabeticIndexingEnabled = [alphabeticIndexingEnabledNum boolValue];
if(self.alphabeticIndexingEnabled)
{
NSNumber* hideAlphabeticSectionHeadersNum = [[self specifier] propertyForKey:@"hideAlphabeticSectionHeaders"];
self.hideAlphabeticSectionHeaders = [hideAlphabeticSectionHeadersNum boolValue];
}
NSString* localizationBundlePathString = [[self specifier] propertyForKey:@"localizationBundlePath"];
if(localizationBundlePathString)
{
self.localizationBundle = [NSBundle bundleWithPath:localizationBundlePathString];
}
}
- (NSString*)localizedStringForString:(NSString*)string
{
if(self.localizationBundle)
{
NSString* localizedString = [self.localizationBundle localizedStringForKey:string value:nil table:nil];
if(localizedString)
{
return localizedString;
}
}
if(!_altListBundle)
{
return string;
}
return [_altListBundle localizedStringForKey:string value:string table:nil];
}
- (SEL)getterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy
{
return nil;
}
- (SEL)setterForSpecifierOfApplicationProxy:(LSApplicationProxy*)applicationProxy
{
return nil;
}
- (PSSpecifier*)createSpecifierForApplicationProxy:(LSApplicationProxy*)applicationProxy
{
SEL setter = [self setterForSpecifierOfApplicationProxy:applicationProxy];
SEL getter = [self getterForSpecifierOfApplicationProxy:applicationProxy];
PSSpecifier* specifier = [PSSpecifier preferenceSpecifierNamed:[applicationProxy atl_nameToDisplay]
target:self
set:setter
get:getter
detail:nil
cell:PSStaticTextCell
edit:nil];
[specifier setProperty:applicationProxy.bundleIdentifier forKey:@"applicationIdentifier"];
UIImage* iconImage = [UIImage _applicationIconImageForBundleIdentifier:applicationProxy.bundleIdentifier format:0 scale:[UIScreen mainScreen].scale];
[specifier setProperty:iconImage forKey:@"iconImage"];
// faster but crashes sometimes
/*dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(void){
UIImage* iconImage = [UIImage _applicationIconImageForBundleIdentifier:applicationProxy.bundleIdentifier format:0 scale:[UIScreen mainScreen].scale];
[specifier setProperty:iconImage forKey:@"iconImage"];
NSLog(@"loaded icon in background");
if([self containsectionNamesSpecifier:specifier])
{
UITableView* tableView = [self valueForKey:@"_table"];
NSIndexPath* specifierIndexPath = [self indexPathForIndex:[self indexOfSpecifier:specifier]];
if([[tableView indexPathsForVisibleRows] containsObject:specifierIndexPath])
{
dispatch_async(dispatch_get_main_queue(), ^(void){
NSLog(@"reloaded specifier in foreground");
[self reloadSpecifier:specifier];
});
}
}
});*/
[specifier setProperty:@YES forKey:@"enabled"];
return specifier;
}
- (BOOL)shouldHideApplicationSpecifiers
{
if(_searchKey)
{
return ![_searchKey isEqualToString:@""];
}
return NO;
}
- (BOOL)shouldHideApplicationSpecifier:(PSSpecifier*)specifier
{
return ![specifier.name localizedStandardContainsString:_searchKey];
}
- (NSArray*)createSpecifiersForApplicationSection:(ATLApplicationSection*)section
{
NSMutableArray* sectionSpecifiers = [NSMutableArray new];
[section.applicationsInSection enumerateObjectsUsingBlock:^(LSApplicationProxy* appProxy, NSUInteger idx, BOOL *stop)
{
PSSpecifier* appSpecifier = [self createSpecifierForApplicationProxy:appProxy];
if(appSpecifier)
{
[sectionSpecifiers addObject:appSpecifier];
}
}];
return sectionSpecifiers;
}
- (void)populateSpecifiersByLetter
{
_specifiersByLetter = [NSMutableDictionary new];
[_specifiers enumerateObjectsUsingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
NSString* firstLetter = [specifier.name substringToIndex:1].lowercaseString;
NSMutableArray* letterSpecifiers = [_specifiersByLetter objectForKey:firstLetter];
if(!letterSpecifiers)
{
letterSpecifiers = [NSMutableArray new];
[_specifiersByLetter setObject:letterSpecifiers forKey:firstLetter];
}
[letterSpecifiers addObject:specifier];
}];
}
- (NSMutableArray*)specifiersGroupedByLetters
{
BOOL firstSpecifier = YES;
NSMutableArray* letterGroupedSpecifiers = [NSMutableArray new];
for(char c = 'a'; c <= 'z'; c++)
{
NSString* cString = [NSString stringWithFormat:@"%c", c];
NSMutableArray* letterSpecifiers = [_specifiersByLetter objectForKey:cString];
if(letterSpecifiers)
{
PSSpecifier* groupSpecifier = [PSSpecifier emptyGroupSpecifier];
if(firstSpecifier && self.hideAlphabeticSectionHeaders)
{
groupSpecifier.name = [self localizedStringForString:@"Applications"];
[groupSpecifier setProperty:@YES forKey:@"isFirstLetterSection"];
}
else
{
groupSpecifier.name = cString;
[groupSpecifier setProperty:@YES forKey:@"isLetterSection"];
}
[letterGroupedSpecifiers addObject:groupSpecifier];
[letterGroupedSpecifiers addObjectsFromArray:letterSpecifiers];
firstSpecifier = NO;
}
}
return letterGroupedSpecifiers;
}
- (PSSpecifier*)createGroupSpecifierForApplicationSection:(ATLApplicationSection*)section
{
PSSpecifier* groupSpecifier = [PSSpecifier emptyGroupSpecifier];
groupSpecifier.name = [self localizedStringForString:section.sectionName];
return groupSpecifier;
}
- (void)reloadApplications
{
_allSpecifiers = nil;
[self reloadSpecifiers];
}
- (NSMutableArray*)specifiers
{
if(!_specifiers)
{
[self loadPreferences];
if(!_applicationSections)
{
[self _loadSectionsFromSpecifier];
}
if(!_allSpecifiers)
{
[self prepareForPopulatingSections];
[self _populateSections];
_allSpecifiers = [NSMutableArray new];
[_applicationSections enumerateObjectsUsingBlock:^(ATLApplicationSection* section, NSUInteger idx, BOOL *stop)
{
PSSpecifier* groupSpecifier = [self createGroupSpecifierForApplicationSection:section];
NSArray* specifiersForSection = [self createSpecifiersForApplicationSection:section];
if(specifiersForSection && specifiersForSection.count > 0)
{
if(!self.alphabeticIndexingEnabled)
{
[_allSpecifiers addObject:groupSpecifier];
}
[_allSpecifiers addObjectsFromArray:specifiersForSection];
}
}];
}
if(![self shouldHideApplicationSpecifiers])
{
_specifiers = _allSpecifiers;
}
else
{
_specifiers = [NSMutableArray new];
[_allSpecifiers enumerateObjectsWithOptions:NSEnumerationReverse usingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
if(specifier.cellType != PSGroupCell)
{
// hide specifiers that should be hidden
if([self shouldHideApplicationSpecifier:specifier])
{
return;
}
}
else
{
// hide empty sections
if(_specifiers.count == 0)
{
return;
}
PSSpecifier* firstSpecifier = _specifiers.firstObject;
if(firstSpecifier.cellType == PSGroupCell)
{
return;
}
}
[_specifiers insertObject:specifier atIndex:0];
}];
}
if(self.alphabeticIndexingEnabled)
{
[self populateSpecifiersByLetter];
_specifiers = [self specifiersGroupedByLetters];
}
}
return _specifiers;
}
- (PSSpecifier*)specifierForApplicationWithIdentifier:(NSString*)applicationID
{
__block PSSpecifier* specifierToReturn;
[_specifiers enumerateObjectsUsingBlock:^(PSSpecifier* specifier, NSUInteger idx, BOOL *stop)
{
NSString* specifierApplicationID = [specifier propertyForKey:@"applicationIdentifier"];
if([applicationID isEqualToString:specifierApplicationID])
{
specifierToReturn = specifier;
*stop = YES;
}
}];
return specifierToReturn;
}
- (NSIndexPath*)indexPathForApplicationWithIdentifier:(NSString*)applicationID
{
PSSpecifier* specifier = [self specifierForApplicationWithIdentifier:applicationID];
return [self indexPathForIndex:[self indexOfSpecifier:specifier]];
}
@end