47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import {
|
|
SessionState,
|
|
GoogleSheetsInsertRowOptions,
|
|
ChatLog,
|
|
} from '@typebot.io/schemas'
|
|
import { parseCellValues } from './helpers/parseCellValues'
|
|
import { getAuthenticatedGoogleDoc } from './helpers/getAuthenticatedGoogleDoc'
|
|
import { ExecuteIntegrationResponse } from '../../../types'
|
|
|
|
export const insertRow = async (
|
|
state: SessionState,
|
|
{
|
|
outgoingEdgeId,
|
|
options,
|
|
}: { outgoingEdgeId?: string; options: GoogleSheetsInsertRowOptions }
|
|
): Promise<ExecuteIntegrationResponse> => {
|
|
const { variables } = state.typebotsQueue[0].typebot
|
|
if (!options.cellsToInsert || !options.sheetId) return { outgoingEdgeId }
|
|
|
|
const logs: ChatLog[] = []
|
|
|
|
const doc = await getAuthenticatedGoogleDoc({
|
|
credentialsId: options.credentialsId,
|
|
spreadsheetId: options.spreadsheetId,
|
|
})
|
|
|
|
const parsedValues = parseCellValues(variables)(options.cellsToInsert)
|
|
|
|
try {
|
|
await doc.loadInfo()
|
|
const sheet = doc.sheetsById[Number(options.sheetId)]
|
|
await sheet.addRow(parsedValues)
|
|
logs.push({
|
|
status: 'success',
|
|
description: `Succesfully inserted row in ${doc.title} > ${sheet.title}`,
|
|
})
|
|
} catch (err) {
|
|
logs.push({
|
|
status: 'error',
|
|
description: `An error occured while inserting the row`,
|
|
details: err,
|
|
})
|
|
}
|
|
|
|
return { outgoingEdgeId, logs }
|
|
}
|