Date Input Field (Form.Field.Date)

Returns a new Date field, optionally with an initial value. The user’s date formatting preference will be used to display and determine component ordering when parsing dates. Relative dates like “1d”, “tomorrow”, “now” can also be entered.

textInputField = new Form.Field.String( "textInputField", null, null)

 1  Instances of the form date input element are created using the new constructor with provided parameters that include the identifying key, an optional menu label (title), and an optional default date value for the field. The result of the constructor is a new instance that is stored in the variable: dateFieldInput

 2  The date input is assigned a unique identifying key (string) that is used to extract the current displayed date object when the form is validated or processed.

 3  The optional text to use as the label for the menu.

 X  An optional date object to be used as the value for the date input field.

The value for the date input field can written using any syntax supported by an OmniOutliner date field. For example:

On iOS systems only, there is an optional property of the Form.Field.Date class for setting which keyboard is displayed on the device (iPhone | iPod Touch):

Class properties of the KeyboardType class:

Simple Example Console Script

The following is an example of to create, display, and process the results of a form with a single date4 input field. As the script example is not placed within an Omni Automation action framework, this type of script is best run from either the console or a script URL.

date input field

(⬆ see above ) A form dialog showing a date input field. A button to summon a date picker palette is located at the far right of the field.

(⬇ see below ) The date picker palette provides for a calendar view for selecting a date and a time entry field for indicating a specific time.

date input field with date picker
var date = new Date() date.setDate(date.getDate() + 1) date.setHours(8,30,0,0) dateInputField = new Form.Field.Date( "dateInput", "Date", date ) var inputForm = new Form() inputForm.addField(dateInputField) inputForm.show("Please choose the starting date and time:","Continue") .then( function(formObject){ console.log(formObject.values['dateInput']) } )
omnigraffle://localhost/omnijs-run?script=try%7Bvar%20date%20%3D%20new%20Date%28%29%0Adate%2EsetDate%28date%2EgetDate%28%29%20%2B%201%29%0Adate%2EsetHours%288%2C30%2C0%2C0%29%0AdateInputField%20%3D%20new%20Form%2EField%2EDate%28%0A%09%22dateInput%22%2C%0A%09%22Date%22%2C%0A%09date%0A%29%0Avar%20inputForm%20%3D%20new%20Form%28%29%0AinputForm%2EaddField%28dateInputField%29%0AinputForm%2Eshow%28%22Please%20choose%20the%20starting%20date%20and%20time%3A%22%2C%22Continue%22%29%0A%2Ethen%28%0A%09function%28formObject%29%7B%0A%09%09console%2Elog%28formObject%2Evalues%5B%27dateInput%27%5D%29%0A%09%7D%0A%29%7Dcatch%28err%29%7Bconsole%2Elog%28err%29%7D

 02-04  Create a new date object to use as the default target date and use the setDate(…), getDate(…), and setHours(…) JavaScript methods to set its day and time values to tomorrow at 8:30 AM

 06-10  The creation of a new instance of the Form.Field.Date (date input) class. Note the inclusion of the identifying key string "dateInput" that is used elsewhere in the script to retrieve the current input value of the form element.

 12  A new empty instance of the Form class is created and stored in the variable: inputForm

 14  The created date entry field is added to the form using the addField(…) method of the Form class.

 16  The form is displayed to the user by passing string values for the dialog prompt and button title into the show(…) method called on the created form instance. Note that the result of the form display is a JavaScript Promise object which will contain the form results when the form dialog has either been approved or declined by the user.

 17-21  Although no representation for the JavaScript Promise is displayed, the then(…) method is called on the implied promise resulting from the previous show(…) method. Placing .then(…) on a new line is simply a connivence for displaying the code. Functionally, it is the same as appending to the previous method, like this: inputForm.show(…).then(…)

 18  The callback function within the then(…) method is passed the form object as its parameter.

 19  Using the date input’s identifying key, the current input value of the field is retrieved from the record returned as the value of the passed form’s values property. Any processing of the retrieved data by the script would be placed in the scrpt statements following this one. Note: the resulting value is a JavaScript date object.

Example Action: Export Canvas to New Task

When used within the context of an Omni Automation action, forms can display data gathered from the document, and write results back to the document as well. The following example shows just such a situation.

The following action will export the canvas as a PNG image to a new OmniFocus task, created using data gathered from the document and user input into the presented form. Prior to completion, a link to the created task is written into the metadata for the current canvas.

export-to-task-dialog
/*{ "type": "action", "targets": ["omnigraffle"], "author": "Otto Automator", "identifier": "com.omni-automation.og.export-canvas-to-new-task", "description": "Exports the current canvas as PNG image to a new OmniFocus action.", "version": "1.1", "label": "Export Canvas to New OmniFocus Task", "shortLabel": "OmniFocus" }*/ (() => { var action = new PlugIn.Action(function(selection, sender) { var cnvs = selection.canvas var inputForm = new Form() taskNameField = new Form.Field.String( "taskName", "Name", cnvs.name ) taskNoteField = new Form.Field.String( "taskNote", "Note", null ) taskDateField = new Form.Field.Date( "taskDate", "Date", new Date() ) inputForm.addField(taskNameField) inputForm.addField(taskNoteField) inputForm.addField(taskDateField) formPromise = inputForm.show("Enter the parameters of the new task:","Continue") inputForm.validate = function(formObject){ nameStatus = (formObject.values["taskName"]) ? true:false dateStatus = (formObject.values["taskDate"]) ? true:false validation = (nameStatus && dateStatus) ? true:false return validation } formPromise.then(function(formObject){ attachmentName = encodeURIComponent(cnvs.name + '.png') wrapper = document.fileWrapper('public.png') encodedData = wrapper.contents.toBase64() taskName = encodeURIComponent(formObject.values['taskName']) taskNote = encodeURIComponent(formObject.values['taskNote']) taskDateObject = formObject.values['taskDate'] taskDate = encodeURIComponent(taskDateObject.toDateString()) taskHours = String(taskDateObject.getHours()) taskHours = (taskHours.length == 1) ? "0" + taskHours : taskHours taskMinutes = String(taskDateObject.getMinutes()) taskMinutes = (taskMinutes.length == 1) ? "0" + taskMinutes : taskMinutes taskTime = taskHours + ":" + taskMinutes taskElements = "name=" + taskName + "¬e=" + taskNote + "&due=" + taskDate + "%20" + taskTime + "&attachment=" + encodedData + "&attachment-name=" + attachmentName aURL = URL.fromString("omnifocus://localhost/add?" + taskElements) aURL.call(function(result){ // write task link to canvas metadata cnvs.background.setUserData("OmniFocus Task",result) }) }) formPromise.catch(function(error){ console.log("form cancelled", error) }) }); action.validate = function(selection, sender) { // validation code // selection options: canvas, document, graphics, lines, solids, view return true }; return action; }();

 15  Store a reference to the current canvas is the global variable: cnvs

 17  Create a new empty form object, and store in variable: inputForm

 19-23  Create a new text input field using the name of the current canvas for the default field value.

 24-28  Create a new text input field for the task notes.

 29-33  Create a new date input field using the current date as the default date value.

 35-37  Add the created fields to the empty form object using the addField(…) method of the Form class.

 39  Use the show(…) method to display the form dialog and store the resulting JavaScript promise object in the variable: formPromise

 41-46  The form validation function receives the form object as its passed parameter.

 42  A ternary operator returns a value of true if text has been entered in the name text field.

 43  A ternary operator returns a value of true if a date has been entered in the date input field.

 44  A ternary operator returns a value of true if text has been entered in the name field and a date has been chosen or entered in the date input field.

 45  Return the validation status. If true, the approval button in the form dialog will be enabled.

 48-69  The stored JavaScript promise object is processed using the then(…) function that includes the form object as its passed-in parameter.

 49  The URL-encoded name of the exported canvas image is based upon the name of the current canvas appended with the “.png” file extension.

 50-51  A virtual export of the current canvas is created as image data, which is then encoded in base64 format for inclusion in the url for generating a new OmniFocus task.

 53  The contents of the task name text input field is extracted from the passed form object and then encoded for inclusion in the OmniFocus url.

 54  The contents of the task notes text input field is extracted from the passed form object and then encoded for inclusion in the OmniFocus url.

 55  The input date object is extracted from the passed-in form object and stored in a variable.

 57-58  The numeric value that represets the hours of the date time is extracted and converted into a string. If the value is a single digit, it is preceded with a leading zero.

 59-60  The numeric value that represets the minutes of the date time is extracted and converted into a string. If the value is a single digit, it is preceded with a leading zero.

 61  The hours and minutes strings are combined into a single string delineated by a colon character.

 63  The attributes and corresponding values for the OmniFocus URL are combined into a single string.

 64  A URL instance is created by appending the attributes/values string to the protocol targeting the creation of a new task in OmniFocus application. The fromString(…) method of the URL class is then used to convert the string into a url instance.

 65-68  The URL instance is called and a resulting link to the new task is passed into the callback function.

 67  The link to the new task is written into the metadata table for the current OmniGraffle canvas.

 76-80  The validation function for the action determines if the menu item is active in the OmniGraffle Automation menu.

 82  The completed action object is returned to the enclosing function which is called on the new line ().

The resulting link to the created OmniFocus task is entered into the metadata for the current canvas:

omnifocus-linjk

Related Information

Detailed documentation regarding the use of the JavaScript Date class is available at the w3schools.com website.

An example of validating a provided date is included in the documentation regarding form validation.

DISCLAIMER