insomnia/plugins/insomnia-plugin-now/index.js

62 lines
1.6 KiB
JavaScript
Raw Normal View History

const moment = require('moment');
2018-06-25 17:42:50 +00:00
module.exports.templateTags = [
{
name: 'now',
displayName: 'Timestamp',
description: 'get the current time',
args: [
{
displayName: 'Timestamp Format',
type: 'enum',
options: [
{ displayName: 'ISO-8601', value: 'iso-8601' },
{ displayName: 'Milliseconds', value: 'millis' },
{ displayName: 'Unix', value: 'unix' },
{ displayName: 'Custom Format', value: 'custom' },
],
2018-06-25 17:42:50 +00:00
},
{
help: 'moment.js format string',
displayName: 'Custom Format Template',
type: 'string',
placeholder: 'MMMM Do YYYY, h:mm:ss a',
hide: args => args[0].value !== 'custom',
},
2018-06-25 17:42:50 +00:00
],
run(context, dateType = 'iso-8601', formatStr = '') {
if (typeof dateType === 'string') {
dateType = dateType.toLowerCase();
}
2018-06-25 17:42:50 +00:00
const now = new Date();
2018-06-25 17:42:50 +00:00
switch (dateType) {
case 'millis':
case 'ms':
return now.getTime() + '';
case 'unix':
case 'seconds':
case 's':
return Math.round(now.getTime() / 1000) + '';
case 'iso-8601':
return now.toISOString();
case 'custom':
return moment(now).format(formatStr);
default:
throw new Error(`Invalid date type "${dateType}"`);
}
},
2018-06-25 17:42:50 +00:00
},
{
// Old deprecated "timestamp" tag
deprecated: true,
name: 'timestamp',
displayName: 'Timestamp',
description: 'generate timestamp in milliseconds',
run(context) {
return Date.now();
},
},
2018-06-25 17:42:50 +00:00
];