mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
140 lines
5.7 KiB
Objective-C
140 lines
5.7 KiB
Objective-C
//
|
|
// AboutViewController.m
|
|
// iSH
|
|
//
|
|
// Created by Theodore Dubois on 9/23/18.
|
|
//
|
|
|
|
#import "UIApplication+OpenURL.h"
|
|
#import "AboutViewController.h"
|
|
#import "UserPreferences.h"
|
|
|
|
@interface AboutViewController ()
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *capsLockMappingCell;
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *themeCell;
|
|
@property (weak, nonatomic) IBOutlet UISwitch *disableDimmingSwitch;
|
|
@property (weak, nonatomic) IBOutlet UITextField *launchCommandField;
|
|
@property (weak, nonatomic) IBOutlet UITextField *bootCommandField;
|
|
@property (weak, nonatomic) IBOutlet UISwitch *bootEnabledSwitch;
|
|
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *sendFeedback;
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *openGithub;
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *openTwitter;
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *openDiscord;
|
|
|
|
@property (weak, nonatomic) IBOutlet UITableViewCell *exportContainerCell;
|
|
|
|
@end
|
|
|
|
@implementation AboutViewController
|
|
|
|
- (void)viewDidLoad {
|
|
[super viewDidLoad];
|
|
[self _addObservers];
|
|
[self _updatePreferenceUI];
|
|
}
|
|
|
|
- (void)dealloc {
|
|
[self _removeObservers];
|
|
}
|
|
|
|
- (void)_addObservers {
|
|
UserPreferences *prefs = [UserPreferences shared];
|
|
NSKeyValueObservingOptions opts = NSKeyValueObservingOptionNew;
|
|
|
|
[prefs addObserver:self forKeyPath:@"capsLockMapping" options:opts context:nil];
|
|
[prefs addObserver:self forKeyPath:@"fontSize" options:opts context:nil];
|
|
[prefs addObserver:self forKeyPath:@"launchCommand" options:opts context:nil];
|
|
[prefs addObserver:self forKeyPath:@"bootCommand" options:opts context:nil];
|
|
[prefs addObserver:self forKeyPath:@"bootEnabled" options:opts context:nil];
|
|
}
|
|
|
|
- (void)_removeObservers {
|
|
@try {
|
|
UserPreferences *prefs = [UserPreferences shared];
|
|
[prefs removeObserver:self forKeyPath:@"capsLockMapping"];
|
|
[prefs removeObserver:self forKeyPath:@"fontSize"];
|
|
[prefs removeObserver:self forKeyPath:@"launchCommand"];
|
|
[prefs removeObserver:self forKeyPath:@"bootCommand"];
|
|
[prefs removeObserver:self forKeyPath:@"bootEnabled"];
|
|
} @catch (NSException * __unused exception) {}
|
|
}
|
|
|
|
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
|
|
if ([object isKindOfClass:[UserPreferences class]]) {
|
|
[self _updatePreferenceUI];
|
|
} else {
|
|
[super observeValueForKeyPath:keyPath ofObject:object change:change context:context];
|
|
}
|
|
}
|
|
|
|
- (void)_updatePreferenceUI {
|
|
UserPreferences *prefs = UserPreferences.shared;
|
|
self.themeCell.detailTextLabel.text = prefs.theme.presetName;
|
|
NSString *capsLockMappingDescr;
|
|
switch (prefs.capsLockMapping) {
|
|
case CapsLockMapNone:
|
|
capsLockMappingDescr = @"None"; break;
|
|
case CapsLockMapControl:
|
|
capsLockMappingDescr = @"Control"; break;
|
|
case CapsLockMapEscape:
|
|
capsLockMappingDescr = @"Escape"; break;
|
|
}
|
|
self.capsLockMappingCell.detailTextLabel.text = capsLockMappingDescr;
|
|
self.disableDimmingSwitch.on = UserPreferences.shared.shouldDisableDimming;
|
|
self.launchCommandField.text = [UserPreferences.shared.launchCommand componentsJoinedByString:@" "];
|
|
self.bootCommandField.text = [UserPreferences.shared.bootCommand componentsJoinedByString:@" "];
|
|
self.bootEnabledSwitch.on = UserPreferences.shared.bootEnabled;
|
|
}
|
|
|
|
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
|
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
|
|
if (cell == self.sendFeedback) {
|
|
[UIApplication openURL:@"mailto:tblodt@icloud.com?subject=Feedback%20for%20iSH"];
|
|
} else if (cell == self.openGithub) {
|
|
[UIApplication openURL:@"https://github.com/tbodt/ish"];
|
|
} else if (cell == self.openTwitter) {
|
|
[UIApplication openURL:@"https://twitter.com/tblodt"];
|
|
} else if (cell == self.openDiscord) {
|
|
[UIApplication openURL:@"https://discord.gg/SndDh5y"];
|
|
} else if (cell == self.exportContainerCell) {
|
|
// copy the files to the app container so they can be extracted from iTunes file sharing
|
|
NSURL *container = [NSFileManager.defaultManager containerURLForSecurityApplicationGroupIdentifier:PRODUCT_APP_GROUP_IDENTIFIER];
|
|
NSURL *documents = [NSFileManager.defaultManager URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask][0];
|
|
[NSFileManager.defaultManager removeItemAtURL:[documents URLByAppendingPathComponent:@"roots copy"] error:nil];
|
|
[NSFileManager.defaultManager copyItemAtURL:[container URLByAppendingPathComponent:@"roots"]
|
|
toURL:[documents URLByAppendingPathComponent:@"roots copy"]
|
|
error:nil];
|
|
}
|
|
[tableView deselectRowAtIndexPath:indexPath animated:YES];
|
|
}
|
|
|
|
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
|
|
NSInteger sections = [super numberOfSectionsInTableView:tableView];
|
|
if (!self.includeDebugPanel)
|
|
sections--;
|
|
return sections;
|
|
}
|
|
|
|
- (IBAction)disableDimmingChanged:(id)sender {
|
|
UserPreferences.shared.shouldDisableDimming = self.disableDimmingSwitch.on;
|
|
}
|
|
|
|
- (IBAction)textBoxSubmit:(id)sender {
|
|
[sender resignFirstResponder];
|
|
}
|
|
|
|
- (IBAction)launchCommandChanged:(id)sender {
|
|
UserPreferences.shared.launchCommand = [self.launchCommandField.text componentsSeparatedByString:@" "];
|
|
}
|
|
|
|
- (IBAction)bootCommandChanged:(id)sender {
|
|
UserPreferences.shared.bootCommand = [self.bootCommandField.text componentsSeparatedByString:@" "];
|
|
}
|
|
|
|
- (IBAction)bootEnabledChanged:(id)sender {
|
|
UserPreferences.shared.bootEnabled = self.bootEnabledSwitch.on;
|
|
}
|
|
|
|
@end
|