2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-30 15:56:50 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2014-03-16 00:30:26 +00:00
|
|
|
#include "atom/browser/atom_javascript_dialog_manager.h"
|
2013-04-30 15:56:50 +00:00
|
|
|
|
2014-03-16 01:13:06 +00:00
|
|
|
#include <string>
|
2017-01-05 00:46:50 +00:00
|
|
|
#include <vector>
|
2014-03-16 01:13:06 +00:00
|
|
|
|
2017-04-28 00:28:48 +00:00
|
|
|
#include "atom/browser/api/atom_api_web_contents.h"
|
2017-01-05 00:46:50 +00:00
|
|
|
#include "atom/browser/native_window.h"
|
|
|
|
#include "atom/browser/ui/message_box.h"
|
|
|
|
#include "base/bind.h"
|
2013-12-11 07:48:19 +00:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2017-01-05 00:46:50 +00:00
|
|
|
#include "ui/gfx/image/image_skia.h"
|
|
|
|
|
2017-04-04 04:50:44 +00:00
|
|
|
using content::JavaScriptDialogType;
|
2013-04-30 15:56:50 +00:00
|
|
|
|
|
|
|
namespace atom {
|
|
|
|
|
2017-04-28 00:28:48 +00:00
|
|
|
AtomJavaScriptDialogManager::AtomJavaScriptDialogManager(
|
|
|
|
api::WebContents* api_web_contents)
|
|
|
|
: api_web_contents_(api_web_contents) {}
|
|
|
|
|
2014-03-01 11:53:50 +00:00
|
|
|
void AtomJavaScriptDialogManager::RunJavaScriptDialog(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
const GURL& origin_url,
|
2017-04-04 04:50:44 +00:00
|
|
|
JavaScriptDialogType dialog_type,
|
2014-06-28 11:36:57 +00:00
|
|
|
const base::string16& message_text,
|
|
|
|
const base::string16& default_prompt_text,
|
2014-03-01 11:53:50 +00:00
|
|
|
const DialogClosedCallback& callback,
|
|
|
|
bool* did_suppress_message) {
|
2017-04-04 04:50:44 +00:00
|
|
|
if (dialog_type != JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_ALERT &&
|
|
|
|
dialog_type != JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_CONFIRM) {
|
2017-01-05 00:46:50 +00:00
|
|
|
callback.Run(false, base::string16());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-06 16:53:06 +00:00
|
|
|
std::vector<std::string> buttons = {"OK"};
|
2017-04-04 04:50:44 +00:00
|
|
|
if (dialog_type == JavaScriptDialogType::JAVASCRIPT_DIALOG_TYPE_CONFIRM) {
|
2017-01-05 00:46:50 +00:00
|
|
|
buttons.push_back("Cancel");
|
|
|
|
}
|
|
|
|
|
|
|
|
atom::ShowMessageBox(NativeWindow::FromWebContents(web_contents),
|
2017-02-06 15:35:36 +00:00
|
|
|
atom::MessageBoxType::MESSAGE_BOX_TYPE_NONE, buttons, -1,
|
|
|
|
0, atom::MessageBoxOptions::MESSAGE_BOX_NONE, "",
|
|
|
|
base::UTF16ToUTF8(message_text), "", "", false,
|
2017-01-05 00:46:50 +00:00
|
|
|
gfx::ImageSkia(),
|
|
|
|
base::Bind(&OnMessageBoxCallback, callback));
|
2014-03-01 11:53:50 +00:00
|
|
|
}
|
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
void AtomJavaScriptDialogManager::RunBeforeUnloadDialog(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
bool is_reload,
|
|
|
|
const DialogClosedCallback& callback) {
|
2017-04-28 00:28:48 +00:00
|
|
|
bool default_prevented = api_web_contents_->Emit("will-prevent-unload");
|
|
|
|
callback.Run(default_prevented, base::string16());
|
|
|
|
return;
|
2013-04-30 15:56:50 +00:00
|
|
|
}
|
|
|
|
|
2017-01-24 03:18:56 +00:00
|
|
|
void AtomJavaScriptDialogManager::CancelDialogs(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
bool reset_state) {
|
|
|
|
}
|
|
|
|
|
2017-01-05 00:46:50 +00:00
|
|
|
// static
|
|
|
|
void AtomJavaScriptDialogManager::OnMessageBoxCallback(
|
2017-02-06 15:35:36 +00:00
|
|
|
const DialogClosedCallback& callback,
|
|
|
|
int code,
|
|
|
|
bool checkbox_checked) {
|
2017-01-05 00:46:50 +00:00
|
|
|
callback.Run(code == 0, base::string16());
|
|
|
|
}
|
|
|
|
|
2013-04-30 15:56:50 +00:00
|
|
|
} // namespace atom
|