react-native-macos/React/Modules/RCTClipboard.m

47 строки
1.3 KiB
Mathematica
Исходник Обычный вид История

/**
2019-03-28 23:44:57 +03:00
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RCTClipboard.h"
2019-03-01 21:09:07 +03:00
#import <React/RCTUIKit.h> // TODO(macOS ISS#2323203)
@implementation RCTClipboard
RCT_EXPORT_MODULE()
- (dispatch_queue_t)methodQueue
{
return dispatch_get_main_queue();
}
RCT_EXPORT_METHOD(setString:(NSString *)content)
{
2019-03-01 21:09:07 +03:00
#if !TARGET_OS_OSX // TODO(macOS ISS#2323203)
UIPasteboard *clipboard = [UIPasteboard generalPasteboard];
clipboard.string = (content ? : @"");
2019-03-01 21:09:07 +03:00
#else // [TODO(macOS ISS#2323203)
NSPasteboard *pasteboard = [NSPasteboard generalPasteboard];
[pasteboard clearContents];
[pasteboard setString:(content ? : @"") forType:NSPasteboardTypeString];
#endif // ]TODO(macOS ISS#2323203)
}
RCT_EXPORT_METHOD(getString:(RCTPromiseResolveBlock)resolve
rejecter:(__unused RCTPromiseRejectBlock)reject)
{
2019-03-01 21:09:07 +03:00
#if !TARGET_OS_OSX // TODO(macOS ISS#2323203)
UIPasteboard *clipboard = [UIPasteboard generalPasteboard];
resolve((clipboard.string ? : @""));
2019-03-01 21:09:07 +03:00
#else // [TODO(macOS ISS#2323203)
NSPasteboard *pasteboard = [NSPasteboard generalPasteboard];
resolve(([pasteboard stringForType:NSPasteboardTypeString] ? : @""));
#endif // ]TODO(macOS ISS#2323203)
}
@end