2019-10-21 07:05:40 +00:00
|
|
|
// Copyright (c) 2019 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#include "shell/common/gin_helper/event_emitter.h"
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2020-12-09 20:48:16 +00:00
|
|
|
#include "content/public/browser/render_process_host.h"
|
2019-10-25 13:03:28 +00:00
|
|
|
#include "shell/browser/api/event.h"
|
2019-10-21 07:05:40 +00:00
|
|
|
#include "shell/common/gin_helper/dictionary.h"
|
|
|
|
#include "shell/common/gin_helper/object_template_builder.h"
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace gin_helper::internal {
|
2019-10-21 07:05:40 +00:00
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
v8::Persistent<v8::ObjectTemplate> event_template;
|
|
|
|
|
|
|
|
void PreventDefault(gin_helper::Arguments* args) {
|
|
|
|
Dictionary self;
|
|
|
|
if (args->GetHolder(&self))
|
|
|
|
self.Set("defaultPrevented", true);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
2021-10-06 02:21:00 +00:00
|
|
|
v8::Local<v8::Object> CreateCustomEvent(v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> sender,
|
|
|
|
v8::Local<v8::Object> custom_event) {
|
2019-10-21 07:05:40 +00:00
|
|
|
if (event_template.IsEmpty()) {
|
|
|
|
event_template.Reset(
|
|
|
|
isolate,
|
|
|
|
ObjectTemplateBuilder(isolate, v8::ObjectTemplate::New(isolate))
|
|
|
|
.SetMethod("preventDefault", &PreventDefault)
|
|
|
|
.Build());
|
|
|
|
}
|
|
|
|
|
2019-10-24 05:47:58 +00:00
|
|
|
v8::Local<v8::Context> context = isolate->GetCurrentContext();
|
2020-03-11 01:16:58 +00:00
|
|
|
CHECK(!context.IsEmpty());
|
2019-10-24 05:47:58 +00:00
|
|
|
v8::Local<v8::Object> event =
|
|
|
|
v8::Local<v8::ObjectTemplate>::New(isolate, event_template)
|
|
|
|
->NewInstance(context)
|
|
|
|
.ToLocalChecked();
|
|
|
|
if (!sender.IsEmpty())
|
|
|
|
Dictionary(isolate, event).Set("sender", sender);
|
|
|
|
if (!custom_event.IsEmpty())
|
|
|
|
event->SetPrototype(context, custom_event).IsJust();
|
2019-10-21 07:05:40 +00:00
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
2019-10-25 13:03:28 +00:00
|
|
|
v8::Local<v8::Object> CreateNativeEvent(
|
|
|
|
v8::Isolate* isolate,
|
|
|
|
v8::Local<v8::Object> sender,
|
|
|
|
content::RenderFrameHost* frame,
|
2022-03-19 02:50:05 +00:00
|
|
|
electron::mojom::ElectronApiIPC::MessageSyncCallback callback) {
|
2019-10-25 13:03:28 +00:00
|
|
|
v8::Local<v8::Object> event;
|
|
|
|
if (frame && callback) {
|
2019-10-31 07:56:00 +00:00
|
|
|
gin::Handle<Event> native_event = Event::Create(isolate);
|
2019-10-25 13:03:28 +00:00
|
|
|
native_event->SetCallback(std::move(callback));
|
2021-05-12 07:38:21 +00:00
|
|
|
event = native_event.ToV8().As<v8::Object>();
|
2019-10-25 13:03:28 +00:00
|
|
|
} else {
|
|
|
|
// No need to create native event if we do not need to send reply.
|
2021-10-06 02:21:00 +00:00
|
|
|
event = CreateCustomEvent(isolate);
|
2019-10-25 13:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary dict(isolate, event);
|
|
|
|
dict.Set("sender", sender);
|
|
|
|
// Should always set frameId even when callback is null.
|
2020-12-09 20:48:16 +00:00
|
|
|
if (frame) {
|
2019-10-25 13:03:28 +00:00
|
|
|
dict.Set("frameId", frame->GetRoutingID());
|
2020-12-09 20:48:16 +00:00
|
|
|
dict.Set("processId", frame->GetProcess()->GetID());
|
|
|
|
}
|
2019-10-25 13:03:28 +00:00
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace gin_helper::internal
|