mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
⚡ Make it possible to define custom file name for spreadsheet files
This commit is contained in:
parent
204676d200
commit
b5918c6bfe
|
@ -156,11 +156,34 @@ export class SpreadsheetFile implements INodeType {
|
||||||
'toFile',
|
'toFile',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
},
|
},
|
||||||
placeholder: '',
|
placeholder: '',
|
||||||
description: 'Name of the binary property in which to save<br />the binary data of the spreadsheet file.',
|
description: 'Name of the binary property in which to save<br />the binary data of the spreadsheet file.',
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
displayName: 'Options',
|
||||||
|
name: 'options',
|
||||||
|
type: 'collection',
|
||||||
|
placeholder: 'Add Option',
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'toFile',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
default: {},
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
displayName: 'File Name',
|
||||||
|
name: 'fileName',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
description: 'File name to set in binary data. By default will "spreadsheet.<fileFormat>" be used.',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -214,6 +237,7 @@ export class SpreadsheetFile implements INodeType {
|
||||||
// Write the workflow data to spreadsheet file
|
// Write the workflow data to spreadsheet file
|
||||||
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', 0) as string;
|
const binaryPropertyName = this.getNodeParameter('binaryPropertyName', 0) as string;
|
||||||
const fileFormat = this.getNodeParameter('fileFormat', 0) as string;
|
const fileFormat = this.getNodeParameter('fileFormat', 0) as string;
|
||||||
|
const options = this.getNodeParameter('options', 0, {}) as IDataObject;
|
||||||
|
|
||||||
// Get the json data of the items and flatten it
|
// Get the json data of the items and flatten it
|
||||||
let item: INodeExecutionData;
|
let item: INodeExecutionData;
|
||||||
|
@ -258,7 +282,12 @@ export class SpreadsheetFile implements INodeType {
|
||||||
binary: {},
|
binary: {},
|
||||||
};
|
};
|
||||||
|
|
||||||
newItem.binary![binaryPropertyName] = await this.helpers.prepareBinaryData(wbout, `spreadsheet.${fileFormat}`);
|
let fileName = `spreadsheet.${fileFormat}`;
|
||||||
|
if (options.fileName !== undefined) {
|
||||||
|
fileName = options.fileName as string;
|
||||||
|
}
|
||||||
|
|
||||||
|
newItem.binary![binaryPropertyName] = await this.helpers.prepareBinaryData(wbout, fileName);
|
||||||
|
|
||||||
const newItems = [];
|
const newItems = [];
|
||||||
newItems.push(newItem);
|
newItems.push(newItem);
|
||||||
|
|
Loading…
Reference in a new issue