Compare commits

..

10 Commits

Author SHA1 Message Date
Allan Carr
9c733702e4 Merged in feature/IO-3498-QBO-Auth-Token (pull request #2810)
IO-3498 QBO Auth Token

Approved-by: Dave Richer
2026-01-13 20:45:42 +00:00
Allan Carr
997aebddb0 IO-3498 QBO Auth Token
Signed-off-by: Allan Carr <allan@imexsystems.ca>
2026-01-13 12:42:18 -08:00
Dave
17e3f39706 Merge remote-tracking branch 'origin/feature/IO-3431-Job-Image-Gallery' into hotfix/2026-01-13 2026-01-13 14:22:23 -05:00
Allan Carr
d90acf4b89 IO-3431 Prettier Run
Signed-off-by: Allan Carr <allan@imexsystems.ca>
2026-01-12 13:27:23 -08:00
Allan Carr
68dd7f33ab IO-3431 Add Tags to Images and Documents
Signed-off-by: Allan Carr <allan@imexsystems.ca>
2026-01-12 13:25:26 -08:00
Dave Richer
2a931181d1 Merged in hotfix/2026-01-12 (pull request #2804)
Hotfix/2026 01 12
2026-01-12 17:19:48 +00:00
Dave
1b08e4c54c hotfix/2026-01-12 2026-01-12 12:19:11 -05:00
Dave
4b419bf62b hotfix/2026-01-12 2026-01-12 12:17:37 -05:00
Dave Richer
8decbf8874 Merged in feature/IO-3357-Reynolds-and-Reynolds-DMS-API-Integration (pull request #2803)
Feature/IO-3357 Reynolds and Reynolds DMS API Integration
2026-01-10 02:12:58 +00:00
Dave Richer
4192c87a34 Merged in release/2025-12-19 (pull request #2802)
Release/2025-12-19 into master-AIO IO-1710, IO-2566, IO-3401, IO-3431, IO-3464, IO-3477, IO-3478, IO-3479, IO-3480, IO-3484, IO-3487, IO-3491, IO-3492, IO-3494, IO-3496
2026-01-10 02:01:06 +00:00
4 changed files with 37 additions and 13 deletions

View File

@@ -67,6 +67,7 @@ export function JobsDocumentsLocalGallery({
src: val.thumbnail,
height: val.thumbnailHeight,
width: val.thumbnailWidth,
tags: [{ value: val.filename, title: val.filename }],
...(val.optimized && { src: val.optimized, fullsize: val.src })
});
if (val.optimized) optimized = true;

View File

@@ -1,4 +1,5 @@
import { Checkbox } from "antd";
import { Tag } from "antd";
import { useCallback, useEffect, useMemo, useRef, useState } from "react";
/**
@@ -187,6 +188,30 @@ export function LocalMediaGrid({
transition: "opacity .25s ease"
}}
/>
{img.tags && img.tags.length > 0 && (
<div
style={{
position: "absolute",
bottom: 0,
left: 0,
right: 0,
padding: "2px 6px",
borderRadius: "0 0 4px 4px",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
display: "flex",
flexWrap: "wrap",
gap: "4px"
}}
>
{img.tags.map((tag, tagIdx) => (
<Tag key={tagIdx} variant="outlined" color="gold" style={{ opacity: 0.8 }}>
{tag.value || tag.title}
</Tag>
))}
</div>
)}
</>
);
})()}

View File

@@ -45,7 +45,7 @@ exports.default = async (req, res) => {
exports.refresh = async (oauthClient, req) => {
try {
// logger.log("qbo-token-refresh", "DEBUG", req.user.email, null, null);
logger.log("qbo-token-refresh", "DEBUG", req.user.email, null, null);
const authResponse = await oauthClient.refresh();
await client.request(queries.SET_QBO_AUTH, {
email: req.user.email,
@@ -59,10 +59,12 @@ exports.refresh = async (oauthClient, req) => {
};
exports.setNewRefreshToken = async (email, apiResponse) => {
//logger.log("qbo-token-updated", "DEBUG", email, null, null);
// Deprecated - tokens are now auto-updated in the oauthClient and the token isn't pushed back from QBO API calls anymore
await client.request(queries.SET_QBO_AUTH, {
email,
qbo_auth: { ...apiResponse.token, createdAt: Date.now() }
});
// logger.log("qbo-token-updated", "DEBUG", email, null, {apiResponse: apiResponse});
// await client.request(queries.SET_QBO_AUTH, {
// email,
// qbo_auth: { ...apiResponse.token, createdAt: Date.now() }
// });
};

View File

@@ -1,4 +1,4 @@
const CdkBase = require("../web-sockets/web-socket");
const { createLogEvent } = require("../web-sockets/createLogEvent");
const IMEX_CDK_USER = process.env.IMEX_CDK_USER,
IMEX_CDK_PASSWORD = process.env.IMEX_CDK_PASSWORD;
@@ -14,7 +14,7 @@ const cdkDomain =
function CheckCdkResponseForError(socket, soapResponse) {
if (!soapResponse[0]) {
//The response was null, this might be ok, it might not.
CdkBase.createLogEvent(
createLogEvent(
socket,
"warn",
`Warning detected in CDK Response - it appears to be null. Stack: ${new Error().stack}`
@@ -43,11 +43,7 @@ function checkIndividualResult(socket, ResultToCheck) {
//TODO: Verify that this is the best way to detect errors.
return;
else {
CdkBase.createLogEvent(
socket,
"ERROR",
`Error detected in CDK Response - ${JSON.stringify(ResultToCheck, null, 2)}`
);
createLogEvent(socket, "ERROR", `Error detected in CDK Response - ${JSON.stringify(ResultToCheck, null, 2)}`);
throw new Error(`Error found while validating CDK response for ${JSON.stringify(ResultToCheck, null, 2)}:`);
}