-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Giulio Caruso
authored and
Giulio Caruso
committed
May 10, 2017
1 parent
6c4a18f
commit 94ae8d9
Showing
1,101 changed files
with
135,974 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#ifdef DEBUG | ||
#define DLog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__) | ||
#else | ||
#define DLog(...) | ||
#endif | ||
#define ALog(fmt, ...) NSLog((@"%s [Line %d] " fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
@interface NSArray (CDVJSONSerializingPrivate) | ||
- (NSString*)cdv_JSONString; | ||
@end | ||
|
||
@interface NSDictionary (CDVJSONSerializingPrivate) | ||
- (NSString*)cdv_JSONString; | ||
@end | ||
|
||
@interface NSString (CDVJSONSerializingPrivate) | ||
- (id)cdv_JSONObject; | ||
- (id)cdv_JSONFragment; | ||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#import "CDVJSON_private.h" | ||
#import <Foundation/NSJSONSerialization.h> | ||
|
||
@implementation NSArray (CDVJSONSerializingPrivate) | ||
|
||
- (NSString*)cdv_JSONString | ||
{ | ||
NSError* error = nil; | ||
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:self | ||
options:0 | ||
error:&error]; | ||
|
||
if (error != nil) { | ||
NSLog(@"NSArray JSONString error: %@", [error localizedDescription]); | ||
return nil; | ||
} else { | ||
return [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; | ||
} | ||
} | ||
|
||
@end | ||
|
||
@implementation NSDictionary (CDVJSONSerializingPrivate) | ||
|
||
- (NSString*)cdv_JSONString | ||
{ | ||
NSError* error = nil; | ||
NSData* jsonData = [NSJSONSerialization dataWithJSONObject:self | ||
options:NSJSONWritingPrettyPrinted | ||
error:&error]; | ||
|
||
if (error != nil) { | ||
NSLog(@"NSDictionary JSONString error: %@", [error localizedDescription]); | ||
return nil; | ||
} else { | ||
return [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding]; | ||
} | ||
} | ||
|
||
@end | ||
|
||
@implementation NSString (CDVJSONSerializingPrivate) | ||
|
||
- (id)cdv_JSONObject | ||
{ | ||
NSError* error = nil; | ||
id object = [NSJSONSerialization JSONObjectWithData:[self dataUsingEncoding:NSUTF8StringEncoding] | ||
options:NSJSONReadingMutableContainers | ||
error:&error]; | ||
|
||
if (error != nil) { | ||
NSLog(@"NSString JSONObject error: %@", [error localizedDescription]); | ||
} | ||
|
||
return object; | ||
} | ||
|
||
- (id)cdv_JSONFragment | ||
{ | ||
NSError* error = nil; | ||
id object = [NSJSONSerialization JSONObjectWithData:[self dataUsingEncoding:NSUTF8StringEncoding] | ||
options:NSJSONReadingAllowFragments | ||
error:&error]; | ||
|
||
if (error != nil) { | ||
NSLog(@"NSString JSONObject error: %@", [error localizedDescription]); | ||
} | ||
|
||
return object; | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
@interface CDVPlugin (Private) | ||
|
||
- (instancetype)initWithWebViewEngine:(id <CDVWebViewEngineProtocol>)theWebViewEngine; | ||
|
||
@end |
26 changes: 26 additions & 0 deletions
26
DEMO/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#import "CDVPlugin.h" | ||
|
||
@interface CDVGestureHandler : CDVPlugin | ||
|
||
@property (nonatomic, strong) UILongPressGestureRecognizer* lpgr; | ||
|
||
@end |
74 changes: 74 additions & 0 deletions
74
DEMO/CordovaLib/Classes/Private/Plugins/CDVGestureHandler/CDVGestureHandler.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#import "CDVGestureHandler.h" | ||
|
||
@implementation CDVGestureHandler | ||
|
||
- (void)pluginInitialize | ||
{ | ||
[self applyLongPressFix]; | ||
} | ||
|
||
- (void)applyLongPressFix | ||
{ | ||
// You can't suppress 3D Touch and still have regular longpress, | ||
// so if this is false, let's not consider the 3D Touch setting at all. | ||
if (![self.commandDelegate.settings objectForKey:@"suppresseslongpressgesture"] || | ||
![[self.commandDelegate.settings objectForKey:@"suppresseslongpressgesture"] boolValue]) { | ||
return; | ||
} | ||
|
||
self.lpgr = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPressGestures:)]; | ||
self.lpgr.minimumPressDuration = 0.45f; | ||
self.lpgr.allowableMovement = 100.0f; | ||
|
||
// 0.45 is ok for 'regular longpress', 0.05-0.08 is required for '3D Touch longpress', | ||
// but since this will also kill onclick handlers (not ontouchend) it's optional. | ||
if ([self.commandDelegate.settings objectForKey:@"suppresses3dtouchgesture"] && | ||
[[self.commandDelegate.settings objectForKey:@"suppresses3dtouchgesture"] boolValue]) { | ||
self.lpgr.minimumPressDuration = 0.05f; | ||
} | ||
|
||
NSArray *views = self.webView.subviews; | ||
if (views.count == 0) { | ||
NSLog(@"No webview subviews found, not applying the longpress fix."); | ||
return; | ||
} | ||
for (int i=0; i<views.count; i++) { | ||
UIView *webViewScrollView = views[i]; | ||
if ([webViewScrollView isKindOfClass:[UIScrollView class]]) { | ||
NSArray *webViewScrollViewSubViews = webViewScrollView.subviews; | ||
UIView *browser = webViewScrollViewSubViews[0]; | ||
[browser addGestureRecognizer:self.lpgr]; | ||
break; | ||
} | ||
} | ||
} | ||
|
||
- (void)handleLongPressGestures:(UILongPressGestureRecognizer*)sender | ||
{ | ||
if ([sender isEqual:self.lpgr]) { | ||
if (sender.state == UIGestureRecognizerStateBegan) { | ||
NSLog(@"Ignoring a longpress in order to suppress the magnifying glass."); | ||
} | ||
} | ||
} | ||
|
||
@end |
27 changes: 27 additions & 0 deletions
27
DEMO/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#import "CDVPlugin.h" | ||
|
||
@interface CDVHandleOpenURL : CDVPlugin | ||
|
||
@property (nonatomic, strong) NSURL* url; | ||
@property (nonatomic, assign) BOOL pageLoaded; | ||
|
||
@end |
86 changes: 86 additions & 0 deletions
86
DEMO/CordovaLib/Classes/Private/Plugins/CDVHandleOpenURL/CDVHandleOpenURL.m
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
Licensed to the Apache Software Foundation (ASF) under one | ||
or more contributor license agreements. See the NOTICE file | ||
distributed with this work for additional information | ||
regarding copyright ownership. The ASF licenses this file | ||
to you under the Apache License, Version 2.0 (the | ||
"License"); you may not use this file except in compliance | ||
with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, | ||
software distributed under the License is distributed on an | ||
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
KIND, either express or implied. See the License for the | ||
specific language governing permissions and limitations | ||
under the License. | ||
*/ | ||
|
||
#import "CDVHandleOpenURL.h" | ||
#import "CDV.h" | ||
|
||
@implementation CDVHandleOpenURL | ||
|
||
- (void)pluginInitialize | ||
{ | ||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationLaunchedWithUrl:) name:CDVPluginHandleOpenURLNotification object:nil]; | ||
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationPageDidLoad:) name:CDVPageDidLoadNotification object:nil]; | ||
} | ||
|
||
- (void)applicationLaunchedWithUrl:(NSNotification*)notification | ||
{ | ||
NSURL* url = [notification object]; | ||
|
||
self.url = url; | ||
|
||
// warm-start handler | ||
if (self.pageLoaded) { | ||
[self processOpenUrl:self.url pageLoaded:YES]; | ||
self.url = nil; | ||
} | ||
} | ||
|
||
- (void)applicationPageDidLoad:(NSNotification*)notification | ||
{ | ||
// cold-start handler | ||
|
||
self.pageLoaded = YES; | ||
|
||
if (self.url) { | ||
[self processOpenUrl:self.url pageLoaded:YES]; | ||
self.url = nil; | ||
} | ||
} | ||
|
||
- (void)processOpenUrl:(NSURL*)url pageLoaded:(BOOL)pageLoaded | ||
{ | ||
__weak __typeof(self) weakSelf = self; | ||
|
||
dispatch_block_t handleOpenUrl = ^(void) { | ||
// calls into javascript global function 'handleOpenURL' | ||
NSString* jsString = [NSString stringWithFormat:@"document.addEventListener('deviceready',function(){if (typeof handleOpenURL === 'function') { handleOpenURL(\"%@\");}});", url.absoluteString]; | ||
|
||
[weakSelf.webViewEngine evaluateJavaScript:jsString completionHandler:nil]; | ||
}; | ||
|
||
if (!pageLoaded) { | ||
NSString* jsString = @"document.readystate"; | ||
[self.webViewEngine evaluateJavaScript:jsString | ||
completionHandler:^(id object, NSError* error) { | ||
if ((error == nil) && [object isKindOfClass:[NSString class]]) { | ||
NSString* readyState = (NSString*)object; | ||
BOOL ready = [readyState isEqualToString:@"loaded"] || [readyState isEqualToString:@"complete"]; | ||
if (ready) { | ||
handleOpenUrl(); | ||
} else { | ||
self.url = url; | ||
} | ||
} | ||
}]; | ||
} else { | ||
handleOpenUrl(); | ||
} | ||
} | ||
|
||
@end |
Oops, something went wrong.