Fetches and displays Splid group balance data
Connects to Splid, retrieves group balance information, and displays it. The changes: - Fetches aliases from a spreadsheet to map names to emojis. - Retrieves group names from Splid and displays them in the spreadsheet. - Enhances error handling for column resizing. - Adds more robust handling of Splid data, ensuring proper display even with partial data. - Sums balances for the same emoji to handle multiple users with same tag.
This commit is contained in:
parent
3a439285aa
commit
1b05f0453b
1 changed files with 97 additions and 46 deletions
69
app.js
69
app.js
|
@ -2,6 +2,7 @@ import { SplidClient } from 'splid-js';
|
|||
import { google } from "googleapis";
|
||||
import {
|
||||
NAME_ALIASES,
|
||||
ALIAS_TO_EMOJI,
|
||||
SPREADSHEET_ID,
|
||||
SHEETS_CONFIG,
|
||||
SHEET_RANGES,
|
||||
|
@ -11,8 +12,30 @@ import {
|
|||
COLUMN_INDICES
|
||||
} from './constants.js';
|
||||
|
||||
|
||||
async function setAliasesFromSheet() {
|
||||
const response = await getSheetData(SPREADSHEET_ID, SHEET_RANGES.ALIASES);
|
||||
|
||||
const emojis = response[0];
|
||||
|
||||
for (let col = 0; col < emojis.length; col++) {
|
||||
const emoji = emojis[col];
|
||||
NAME_ALIASES[emoji] = [];
|
||||
|
||||
for (let row = 1; row < response.length; row++) {
|
||||
const alias = response[row][col];
|
||||
if (alias && alias.trim() !== '') {
|
||||
const normalized = alias.toLowerCase();
|
||||
NAME_ALIASES[emoji].push(alias);
|
||||
ALIAS_TO_EMOJI[normalized] = emoji;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
function getNameFromAlias(alias) {
|
||||
return NAME_ALIASES[alias.toLowerCase()] || NAME_ALIASES['default'];
|
||||
return ALIAS_TO_EMOJI[alias.toLowerCase()] || NAME_ALIASES['default'];
|
||||
}
|
||||
|
||||
// Create a reusable sheets API client
|
||||
|
@ -40,7 +63,7 @@ async function getSheetData(spreadsheetId, range) {
|
|||
async function updateSheetData(spreadsheetId, range, values) {
|
||||
try {
|
||||
const sheets = await createSheetsClient();
|
||||
const response = await sheets.spreadsheets.values.update({
|
||||
const response = sheets.spreadsheets.values.update({
|
||||
spreadsheetId,
|
||||
range,
|
||||
valueInputOption: 'USER_ENTERED',
|
||||
|
@ -83,11 +106,14 @@ async function getSplidData(splidCode) {
|
|||
for (const [memberId, balanceInfo] of Object.entries(balance)) {
|
||||
enhancedBalance[memberId] = {
|
||||
...balanceInfo,
|
||||
memberInfo: memberMap[memberId] || { name: 'Unknown', emoji: NAME_ALIASES['default'] }
|
||||
memberInfo: memberMap[memberId] || { name: 'Unknown', emoji: NAME_ALIASES['default'] },
|
||||
};
|
||||
}
|
||||
|
||||
return enhancedBalance;
|
||||
return {
|
||||
balance: enhancedBalance,
|
||||
groupName: groupInfo.name
|
||||
};
|
||||
}
|
||||
|
||||
async function resetTableData() {
|
||||
|
@ -134,6 +160,8 @@ async function autoResizeColumns(spreadsheetId, sheetId, startColumnIndex, endCo
|
|||
}
|
||||
|
||||
async function main() {
|
||||
let RAW = [];
|
||||
await setAliasesFromSheet();
|
||||
const splidCodes = await getSheetData(SPREADSHEET_ID, SHEET_RANGES.SPLID_CODES);
|
||||
const userTags = await getSheetData(SPREADSHEET_ID, SHEET_RANGES.USER_TAGS);
|
||||
|
||||
|
@ -141,35 +169,58 @@ async function main() {
|
|||
console.log("Resetting table data.")
|
||||
await resetTableData();
|
||||
|
||||
const groupNames = []; // Array to collect group names
|
||||
|
||||
for (let i = 0; i < splidCodes.length; i++) {
|
||||
const splidCodeString = splidCodes[i][0];
|
||||
if (!splidCodeString) {
|
||||
groupNames.push(['-']); // Add placeholder for empty rows
|
||||
continue;
|
||||
}
|
||||
console.log(`Processing Splid code: ${splidCodeString}`);
|
||||
const balance = await getSplidData(splidCodeString);
|
||||
const splidData = await getSplidData(splidCodeString);
|
||||
const balance = splidData.balance;
|
||||
|
||||
// Add group name to our collection
|
||||
groupNames.push([splidData.groupName]);
|
||||
|
||||
const rowData = [];
|
||||
|
||||
for (const tag of userTags[0]) {
|
||||
const memberEntry = Object.entries(balance).find(([_, info]) => info.memberInfo.emoji === tag);
|
||||
const balanceValue = memberEntry ?
|
||||
String(memberEntry[1].balance).replace('.', ',') :
|
||||
const matchingMembers = Object.entries(balance).filter(([_, info]) => info.memberInfo.emoji === tag);
|
||||
const totalBalance = matchingMembers.reduce((sum, [_, info]) => sum + parseFloat(info.balance), 0);
|
||||
const balanceValue = matchingMembers.length > 0 ?
|
||||
String(totalBalance.toFixed(2)).replace('.', ',') :
|
||||
'-';
|
||||
rowData.push(balanceValue);
|
||||
}
|
||||
|
||||
// Update the sheet with the row data
|
||||
await updateSheetData(SPREADSHEET_ID, SHEET_RANGES.DATA_ROW(i), [rowData]);
|
||||
RAW.push([`Row ${i} Data:`, JSON.stringify(rowData)]);
|
||||
RAW.push([`Balance ${i}:`, JSON.stringify(balance, null, 2)]);
|
||||
}
|
||||
|
||||
// Update column B with group names
|
||||
if (groupNames.length > 0) {
|
||||
const columnBRange = `B2:B${groupNames.length + 1}`; // B2 to B(2+count-1)
|
||||
await updateSheetData(SPREADSHEET_ID, columnBRange, groupNames);
|
||||
console.log(`Updated column B with ${groupNames.length} group names`);
|
||||
}
|
||||
|
||||
console.log("Sheets updated, adjusting column width.")
|
||||
|
||||
try {
|
||||
await autoResizeColumns(SPREADSHEET_ID, SHEET_ID, COLUMN_INDICES.E, COLUMN_INDICES.M);
|
||||
await autoResizeColumns(SPREADSHEET_ID, SHEET_ID, COLUMN_INDICES.F, COLUMN_INDICES.N);
|
||||
} catch (err) {
|
||||
console.error('Failed to auto-resize columns, but data was updated successfully:', err);
|
||||
}
|
||||
|
||||
RAW.push(['Splid Codes:', JSON.stringify(splidCodes)]);
|
||||
RAW.push(['User Tags:', JSON.stringify(userTags)]);
|
||||
|
||||
await updateSheetData(SPREADSHEET_ID, SHEET_RANGES.RAW, RAW);
|
||||
}
|
||||
|
||||
main().catch(console.error);
|
||||
|
||||
|
|
Loading…
Reference in a new issue