191 lines
5.5 KiB
Plaintext
191 lines
5.5 KiB
Plaintext
// Copyright (c) 2012 The Chromium Embedded Framework Authors.
|
|
// Portions copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "cef/libcef/browser/native/javascript_dialog_runner_mac.h"
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
#include "base/functional/bind.h"
|
|
#include "base/strings/sys_string_conversions.h"
|
|
#include "base/strings/utf_string_conversions.h"
|
|
#include "components/url_formatter/elide_url.h"
|
|
|
|
// Helper object that receives the notification that the dialog/sheet is
|
|
// going away. Is responsible for cleaning itself up.
|
|
@interface CefJavaScriptDialogHelper : NSObject <NSAlertDelegate> {
|
|
@private
|
|
NSAlert* __strong alert_;
|
|
NSTextField* __weak textField_;
|
|
|
|
// Copies of the fields in CefJavaScriptDialog because they're private.
|
|
CefJavaScriptDialogRunner::DialogClosedCallback callback_;
|
|
}
|
|
|
|
- (id)initHelperWithCallback:
|
|
(CefJavaScriptDialogRunner::DialogClosedCallback)callback;
|
|
- (NSAlert*)alert;
|
|
- (NSTextField*)textField;
|
|
- (void)alertDidEnd:(NSAlert*)alert
|
|
returnCode:(int)returnCode
|
|
contextInfo:(void*)contextInfo;
|
|
- (void)cancel;
|
|
|
|
@end
|
|
|
|
@implementation CefJavaScriptDialogHelper
|
|
|
|
- (id)initHelperWithCallback:
|
|
(CefJavaScriptDialogRunner::DialogClosedCallback)callback {
|
|
if (self = [super init]) {
|
|
callback_ = std::move(callback);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
- (NSAlert*)alert {
|
|
alert_ = [[NSAlert alloc] init];
|
|
return alert_;
|
|
}
|
|
|
|
- (NSTextField*)textField {
|
|
NSTextField* textField =
|
|
[[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, 300, 22)];
|
|
textField.cell.lineBreakMode = NSLineBreakByTruncatingTail;
|
|
|
|
alert_.accessoryView = textField;
|
|
alert_.window.initialFirstResponder = textField;
|
|
|
|
textField_ = textField;
|
|
return textField;
|
|
}
|
|
|
|
- (void)alertDidEnd:(NSAlert*)alert
|
|
returnCode:(int)returnCode
|
|
contextInfo:(void*)contextInfo {
|
|
if (returnCode == NSModalResponseStop) {
|
|
return;
|
|
}
|
|
|
|
bool success = returnCode == NSAlertFirstButtonReturn;
|
|
std::u16string input;
|
|
if (textField_) {
|
|
input = base::SysNSStringToUTF16(textField_.stringValue);
|
|
}
|
|
|
|
std::move(callback_).Run(success, input);
|
|
}
|
|
|
|
- (void)cancel {
|
|
[NSApp endSheet:alert_.window];
|
|
alert_ = nil;
|
|
}
|
|
|
|
@end
|
|
|
|
CefJavaScriptDialogRunnerMac::CefJavaScriptDialogRunnerMac()
|
|
: weak_ptr_factory_(this) {}
|
|
|
|
CefJavaScriptDialogRunnerMac::~CefJavaScriptDialogRunnerMac() {
|
|
Cancel();
|
|
}
|
|
|
|
void CefJavaScriptDialogRunnerMac::Run(
|
|
CefBrowserHostBase* browser,
|
|
content::JavaScriptDialogType message_type,
|
|
const GURL& origin_url,
|
|
const std::u16string& message_text,
|
|
const std::u16string& default_prompt_text,
|
|
DialogClosedCallback callback) {
|
|
DCHECK(!helper_);
|
|
callback_ = std::move(callback);
|
|
|
|
bool text_field = message_type == content::JAVASCRIPT_DIALOG_TYPE_PROMPT;
|
|
bool one_button = message_type == content::JAVASCRIPT_DIALOG_TYPE_ALERT;
|
|
|
|
helper_ = [[CefJavaScriptDialogHelper alloc]
|
|
initHelperWithCallback:base::BindOnce(
|
|
&CefJavaScriptDialogRunnerMac::DialogClosed,
|
|
weak_ptr_factory_.GetWeakPtr())];
|
|
|
|
// Show the modal dialog.
|
|
NSAlert* alert = [helper_ alert];
|
|
NSTextField* field = nil;
|
|
if (text_field) {
|
|
field = [helper_ textField];
|
|
field.stringValue = base::SysUTF16ToNSString(default_prompt_text);
|
|
}
|
|
alert.delegate = helper_;
|
|
alert.informativeText = base::SysUTF16ToNSString(message_text);
|
|
|
|
std::u16string label;
|
|
switch (message_type) {
|
|
case content::JAVASCRIPT_DIALOG_TYPE_ALERT:
|
|
label = u"JavaScript Alert";
|
|
break;
|
|
case content::JAVASCRIPT_DIALOG_TYPE_PROMPT:
|
|
label = u"JavaScript Prompt";
|
|
break;
|
|
case content::JAVASCRIPT_DIALOG_TYPE_CONFIRM:
|
|
label = u"JavaScript Confirm";
|
|
break;
|
|
}
|
|
|
|
const std::u16string& display_url =
|
|
url_formatter::FormatUrlForSecurityDisplay(origin_url);
|
|
if (!display_url.empty()) {
|
|
label += u" - " + display_url;
|
|
}
|
|
|
|
alert.messageText = base::SysUTF16ToNSString(label);
|
|
|
|
[alert addButtonWithTitle:@"OK"];
|
|
if (!one_button) {
|
|
NSButton* other = [alert addButtonWithTitle:@"Cancel"];
|
|
other.keyEquivalent = @"\e";
|
|
}
|
|
|
|
// Calling beginSheetModalForWindow:nil is wrong API usage. For now work
|
|
// around the "callee requires a non-null argument" error that occurs when
|
|
// building with the 10.11 SDK. See http://crbug.com/383820 for related
|
|
// discussion.
|
|
// We can't use the newer beginSheetModalForWindow:completionHandler: variant
|
|
// because it fails silently when passed a nil argument (see issue #2726).
|
|
id nilArg = nil;
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Wdeprecated-declarations"
|
|
[alert beginSheetModalForWindow:nilArg // nil here makes it app-modal
|
|
modalDelegate:helper_
|
|
didEndSelector:@selector(alertDidEnd:returnCode:contextInfo:)
|
|
contextInfo:this];
|
|
#pragma clang diagnostic pop
|
|
|
|
if ([alert accessoryView]) {
|
|
[[alert window] makeFirstResponder:[alert accessoryView]];
|
|
}
|
|
}
|
|
|
|
void CefJavaScriptDialogRunnerMac::Handle(
|
|
bool accept,
|
|
const std::u16string* prompt_override) {
|
|
if (helper_) {
|
|
DialogClosed(accept, prompt_override ? *prompt_override : std::u16string());
|
|
}
|
|
}
|
|
|
|
void CefJavaScriptDialogRunnerMac::Cancel() {
|
|
if (helper_) {
|
|
[helper_ cancel];
|
|
helper_ = nil;
|
|
}
|
|
}
|
|
|
|
void CefJavaScriptDialogRunnerMac::DialogClosed(
|
|
bool success,
|
|
const std::u16string& user_input) {
|
|
helper_ = nil;
|
|
std::move(callback_).Run(success, user_input);
|
|
}
|