// Copyright (c) 2014 GitHub, Inc. // Use of this source code is governed by the MIT license that can be // found in the LICENSE file. #include "atom/browser/api/atom_api_notification.h" #include #include "atom/browser/api/atom_api_menu.h" #include "atom/browser/browser.h" #include "atom/common/api/atom_api_native_image.h" #include "atom/common/native_mate_converters/gfx_converter.h" #include "atom/common/native_mate_converters/image_converter.h" #include "atom/common/native_mate_converters/string16_converter.h" #include "atom/common/node_includes.h" #include "base/threading/thread_task_runner_handle.h" #include "native_mate/constructor.h" #include "native_mate/dictionary.h" #include "ui/gfx/image/image.h" namespace atom { namespace api { int id_counter = 1; std::map notifications_; Notification::Notification(v8::Isolate* isolate, v8::Local wrapper, mate::Arguments* args) { InitWith(isolate, wrapper); mate::Dictionary opts; if (args->GetNext(&opts)) { opts.Get("title", &title_); opts.Get("body", &body_); has_icon_ = opts.Get("icon", &icon_); opts.Get("silent", &silent_); opts.Get("replyPlaceholder", &reply_placeholder_); opts.Get("hasReply", &has_reply_); id_ = id_counter++; } notifications_[id_] = this; OnInitialProps(); } Notification::~Notification() {} // static mate::WrappableBase* Notification::New(mate::Arguments* args) { if (!Browser::Get()->is_ready()) { args->ThrowError("Cannot create Notification before app is ready"); return nullptr; } return new Notification(args->isolate(), args->GetThis(), args); } bool Notification::HasID(int id) { return notifications_.find(id) != notifications_.end(); } Notification* Notification::FromID(int id) { return notifications_[id]; } // Getters int Notification::GetID() { return id_; } std::string Notification::GetTitle() { return title_; } std::string Notification::GetBody() { return body_; } bool Notification::GetSilent() { return silent_; } std::string Notification::GetReplyPlaceholder() { return reply_placeholder_; } bool Notification::GetHasReply() { return has_reply_; } // Setters void Notification::SetTitle(std::string new_title) { title_ = new_title; NotifyPropsUpdated(); } void Notification::SetBody(std::string new_body) { body_ = new_body; NotifyPropsUpdated(); } void Notification::SetSilent(bool new_silent) { silent_ = new_silent; NotifyPropsUpdated(); } void Notification::SetReplyPlaceholder(std::string new_reply_placeholder) { reply_placeholder_ = new_reply_placeholder; NotifyPropsUpdated(); } void Notification::SetHasReply(bool new_has_reply) { has_reply_ = new_has_reply; NotifyPropsUpdated(); } void Notification::OnClicked() { Emit("click"); } void Notification::OnReplied(std::string reply) { Emit("reply", reply); } void Notification::OnShown() { Emit("show"); } // static void Notification::BuildPrototype(v8::Isolate* isolate, v8::Local prototype) { prototype->SetClassName(mate::StringToV8(isolate, "Notification")); mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate()) .MakeDestroyable() .SetMethod("show", &Notification::Show) .SetProperty("id", &Notification::GetID) .SetProperty("title", &Notification::GetTitle, &Notification::SetTitle) .SetProperty("body", &Notification::GetBody, &Notification::SetBody) .SetProperty("silent", &Notification::GetSilent, &Notification::SetSilent) .SetProperty("replyPlaceholder", &Notification::GetReplyPlaceholder, &Notification::SetReplyPlaceholder) .SetProperty("hasReply", &Notification::GetHasReply, &Notification::SetHasReply); } } // namespace api } // namespace atom namespace { using atom::api::Notification; void Initialize(v8::Local exports, v8::Local unused, v8::Local context, void* priv) { v8::Isolate* isolate = context->GetIsolate(); Notification::SetConstructor(isolate, base::Bind(&Notification::New)); mate::Dictionary dict(isolate, exports); dict.Set("Notification", Notification::GetConstructor(isolate)->GetFunction()); } } // namespace NODE_MODULE_CONTEXT_AWARE_BUILTIN(atom_common_notification, Initialize)