Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

library: Add Email Entry #330

Merged
merged 14 commits into from
Jun 17, 2023
25 changes: 25 additions & 0 deletions src/Library/demos/Email/main.blp
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
using Gtk 4.0;
using Adw 1;

Adw.StatusPage {
title: "Email";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

all user visible strings should be wrapper in _()

please try to remember

Suggested change
title: "Email";
title: _("Email");

description: _("Compose an email");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description: _("Compose an email");
description: _("Trigger an email");

margin-top: 48;

Box {
orientation: vertical;
halign: center;

Button button {
label: _("Send Email");
margin-bottom: 42;
halign: center;
styles ["suggested-action"]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
styles ["suggested-action"]
styles ["suggested-action", "pill"]

for buttons outside of toolbars

}

LinkButton {
label: "API Reference";
uri: "https://libportal.org/method.Portal.compose_email.html";
}
}
}
32 changes: 32 additions & 0 deletions src/Library/demos/Email/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import Xdp from "gi://Xdp";
import XdpGtk from "gi://XdpGtk4";
import Gio from "gi://Gio";

const portal = new Xdp.Portal();
const parent = XdpGtk.parent_new_gtk(workbench.window);

const button = workbench.builder.get_object("button");

function handleClick() {
portal.compose_email(
parent,
["sonicworks05@gmail.com"],
["sriyanshshivam1@gmail.com"],
null,
"Demo Message",
"Demo Content",
null,
Xdp.EmailFlags.NONE,
null,
(parent, result) => {
try {
portal.compose_email_finish(result);
log("Email sent");
} catch (e) {
logError(e);
}
},
);
}

button.connect("clicked", handleClick);
7 changes: 7 additions & 0 deletions src/Library/demos/Email/main.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "Email",
"category": "platform",
"description": "Compose an email message",
Copy link
Contributor

@sonnyp sonnyp Jun 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remember to write description from the perspective of the developer

Suggested change
"description": "Compose an email message",
"description": "Trigger an email",

"panels": ["code", "preview"],
"autorun": true
}