un-ignore generated output (for mobile)

picker-v2
Brian Hicks 2022-09-09 15:51:20 -05:00
parent 11aee414b7
commit f864fe320b
Signed by: brian
GPG Key ID: C4F324B9CAAB0D50
2 changed files with 59 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
/result
*.js

View File

@ -0,0 +1,59 @@
"use strict";
/*{
"type": "action",
"targets": ["omnifocus"],
"author": "Brian Hicks",
"identifier": "zone.bytes.focus",
"version": "1.0",
"description": "Start a pomodoro for the selected task",
"label": "Focus",
"shortLabel": "Focus",
"paletteLabel": "Focus",
"image": "clock"
}*/
(() => {
var action = new PlugIn.Action(async (selection, sender) => {
try {
let task = selection.tasks[0];
let possibleCategories = [
"Personal",
"Team",
"Wandering Toolmaker",
];
let defaultCategory = possibleCategories[0];
for (let tag of task.tags) {
if (tag.name == "Wandering Toolmaker") {
defaultCategory = tag.name;
break;
}
else if (tag.name == "teams" || (tag.parent && tag.parent.name == "teams") || tag.name == "work" || (tag.parent && tag.parent.name == "work")) {
defaultCategory = "Team";
break;
}
else if (tag.name == "personal" || (tag.parent && tag.parent.name == "personal")) {
defaultCategory = "Personal";
break;
}
}
let focusForm = new Form();
focusForm.addField(new Form.Field.String("project", "Project", task.containingProject ? task.containingProject.name : null));
focusForm.addField(new Form.Field.Option("category", "Category", possibleCategories, possibleCategories, defaultCategory));
focusForm.addField(new Form.Field.String("minutes", "Minutes", "25"));
await focusForm.show("Focus on…", "Start");
let values = focusForm.values;
let rawSessionUrl = `session:///start?intent=${encodeURIComponent(values.project)}&categoryName=${encodeURIComponent(values.category)}&duration=${encodeURIComponent(values.minutes)}`;
let sessionUrl = URL.fromString(rawSessionUrl);
if (sessionUrl === null) {
throw `failed to parse session string ("${rawSessionUrl}") into a URL`;
}
sessionUrl.open();
}
catch (err) {
console.error(err);
}
});
action.validate = function (selection, sender) {
return (selection.tasks.length === 1);
};
return action;
})();