[{"id":"1e49efa.02e021","type":"inject","z":"f656078a.752de8","name":"yesterday","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"-1","payloadType":"num","x":170,"y":368,"wires":[["a6a271e7.4a7d"]]},{"id":"aaaa042c.871538","type":"debug","z":"f656078a.752de8","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":774,"y":368,"wires":[]},{"id":"ba0c2422.cbcac8","type":"function","z":"f656078a.752de8","name":"today or less?","func":"const dueDate = msg.data.attributes.tasks[1].due_date;\nconst inputDate = new Date(dueDate);\nconst todaysDate = new Date();\n\nif(inputDate <= todaysDate.setHours(0,0,0,0)) {\n node.status({fill: 'green', text: inputDate});\n return msg;\n}\n\nnode.status({fill: 'red', text: inputDate});","outputs":1,"noerr":0,"initialize":"","finalize":"","x":560,"y":368,"wires":[["aaaa042c.871538"]]},{"id":"81ec2806.96c698","type":"inject","z":"f656078a.752de8","name":"today","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"0","payloadType":"num","x":162,"y":400,"wires":[["a6a271e7.4a7d"]]},{"id":"5c94a226.a1393c","type":"inject","z":"f656078a.752de8","name":"tomorrow","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"1","payloadType":"num","x":172,"y":432,"wires":[["a6a271e7.4a7d"]]},{"id":"a6a271e7.4a7d","type":"function","z":"f656078a.752de8","name":"create date","func":"const d = new Date();\nd.setDate(d.getDate() + msg.payload);\nconst year = d.getFullYear();\nconst month = (d.getMonth() + 1).toString().padStart(2, '0');\nconst day = d.getDate().toString().padStart(2, '0');\ndateString = `${year}-${month}-${day}T00:00:00+00:00`;\n\nnode.status({text: dateString});\nmsg.data = {\n attributes: {\n tasks: [ {}, {due_date: dateString }]\n }\n};\n\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","x":342,"y":368,"wires":[["ba0c2422.cbcac8"]]}]