Fixed conversion enabled logic.
This commit is contained in:
8
_business_logic/documents.md
Normal file
8
_business_logic/documents.md
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
**S3 Folder Structure**
|
||||||
|
/{shopID}/{jobID}/imagename.ext
|
||||||
|
|
||||||
|
**Logic**
|
||||||
|
1. Get a presigned URL by hitting our own express server with a unique key.
|
||||||
|
2. Use this presigned URL to upload an individual file.
|
||||||
|
3. Store the key + the bucket name to the documents record.
|
||||||
|
4. ???Figure out how to add thumbnails.
|
||||||
@@ -75,7 +75,9 @@ function JobTombstone({ job, ...otherProps }) {
|
|||||||
const tombstoneTitle = (
|
const tombstoneTitle = (
|
||||||
<div>
|
<div>
|
||||||
<Avatar size='large' alt='Vehicle Image' src={CarImage} />
|
<Avatar size='large' alt='Vehicle Image' src={CarImage} />
|
||||||
{t("jobs.fields.ro_number") + " " + jobContext.ro_number ?? "0"}
|
{`${t("jobs.fields.ro_number")} ${
|
||||||
|
jobContext.ro_number ? jobContext.ro_number : t("general.labels.na")
|
||||||
|
}`}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -99,7 +101,7 @@ function JobTombstone({ job, ...otherProps }) {
|
|||||||
<Button
|
<Button
|
||||||
key='convert'
|
key='convert'
|
||||||
type='dashed'
|
type='dashed'
|
||||||
disabled={!jobContext.converted}
|
disabled={jobContext.converted}
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
mutationConvertJob({
|
mutationConvertJob({
|
||||||
variables: { jobId: jobContext.id }
|
variables: { jobId: jobContext.id }
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ const S3_BUCKET = process.env.bucket;
|
|||||||
// Now lets export this function so we can call it from somewhere else
|
// Now lets export this function so we can call it from somewhere else
|
||||||
|
|
||||||
exports.sign_s3 = (req, res) => {
|
exports.sign_s3 = (req, res) => {
|
||||||
console.log("Hitting bucket: " + S3_BUCKET);
|
console.log("Get S3 Signed Put for bucket: " + S3_BUCKET);
|
||||||
const s3 = new aws.S3(); // Create a new instance of S3
|
const s3 = new aws.S3(); // Create a new instance of S3
|
||||||
// if (!req.body.fileName || req.body.fileType) {
|
// if (!req.body.fileName || req.body.fileType) {
|
||||||
// console.log('req.body.fileName', req.body.fileName)
|
// console.log('req.body.fileName', req.body.fileName)
|
||||||
|
|||||||
Reference in New Issue
Block a user