Browse Source

Add share on Favorite

Marino Faggiana 8 years ago
parent
commit
c8accee274
1 changed files with 27 additions and 10 deletions
  1. 27 10
      iOSClient/Offline/CCOfflinePageContent.m

+ 27 - 10
iOSClient/Offline/CCOfflinePageContent.m

@@ -414,16 +414,6 @@
                             handler: nil
     ];
 
-    // NO Directory - NO Template
-    if (metadata.directory == NO && [metadata.type isEqualToString:k_metadataType_template] == NO) {
-        
-        [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil) image:[UIImage imageNamed:image_actionSheetOpenIn] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDefault handler:^(AHKActionSheet *as) {
-                                    
-            [self.tableView setEditing:NO animated:YES];
-            [self openWith:metadata];
-        }];
-    }
-    
     // ONLY Root Favorites : Remove file/folder Favorites
     if (_serverUrl == nil && [_pageType isEqualToString:k_pageOfflineFavorites]) {
         
@@ -463,6 +453,33 @@
         }];
     }
     
+    // Share
+    if (_metadata.cryptated == NO && app.hasServerShareSupport) {
+        
+        [actionSheet addButtonWithTitle:NSLocalizedString(@"_share_", nil)
+                                  image:[UIImage imageNamed:image_actionSheetShare]
+                        backgroundColor:[UIColor whiteColor]
+                                 height: 50.0
+                                   type:AHKActionSheetButtonTypeDefault
+                                handler:^(AHKActionSheet *as) {
+                                    
+                                    // close swipe
+                                    [self setEditing:NO animated:YES];
+                                    
+                                    [app.activeMain openWindowShare:metadata];
+                                }];
+    }
+
+    // NO Directory - NO Template
+    if (metadata.directory == NO && [metadata.type isEqualToString:k_metadataType_template] == NO) {
+        
+        [actionSheet addButtonWithTitle:NSLocalizedString(@"_open_in_", nil) image:[UIImage imageNamed:image_actionSheetOpenIn] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDefault handler:^(AHKActionSheet *as) {
+            
+            [self.tableView setEditing:NO animated:YES];
+            [self openWith:metadata];
+        }];
+    }
+    
     [actionSheet addButtonWithTitle:NSLocalizedString(@"_delete_", nil) image:[UIImage imageNamed:image_delete] backgroundColor:[UIColor whiteColor] height: 50.0 type:AHKActionSheetButtonTypeDestructive handler:^(AHKActionSheet *as) {
         
         [self requestDeleteMetadata:metadata indexPath:indexPath];