Skip to content

Commit

Permalink
Merge pull request #2 from kang49/developing
Browse files Browse the repository at this point in the history
Improving image
  • Loading branch information
kang49 authored Oct 7, 2023
2 parents aea6a63 + 619d426 commit 2722a58
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 21 deletions.
Binary file modified assets/img/bilibili_frame.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ app.get('/api', async (req, res) => {
//response main API
res.json({ imageBase64: storyImageBase64 });
await workCouter();
return;
} else {
res.status(400).json({ error: 'Invalid parameter' });
return res.status(400).json({ error: 'Invalid parameter' });
}
});

Expand Down
34 changes: 14 additions & 20 deletions src/workCounter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,23 @@ const fileName = 'assets/cache/workCouter.txt';
export function workCouter() {
// อ่านข้อมูลจากไฟล์
fs.readFile(fileName, 'utf8', (err, data) => {
if (err) {
console.error('เกิดข้อผิดพลาดในการอ่านไฟล์:', err);
return;
}

// แปลงข้อมูลที่อ่านได้เป็นตัวเลข
const currentValue = parseInt(data, 10);

if (!isNaN(currentValue)) {
// เพิ่มค่าลงไป 1
const newValue = currentValue + 1;

// บันทึกค่าใหม่ลงในไฟล์
fs.writeFile(fileName, newValue.toString(), 'utf8', (err) => {
if (err) {
console.error('เกิดข้อผิดพลาดในการบันทึกไฟล์:', err);
return;
}

console.log('บันทึกค่าใหม่เรียบร้อยแล้ว:', newValue);
});
} else {
console.error('ไฟล์ไม่มีข้อมูลที่เป็นตัวเลข');
}
// แปลงข้อมูลที่อ่านได้เป็นตัวเลข
const currentValue = parseInt(data, 10);

if (!isNaN(currentValue)) {
// เพิ่มค่าลงไป 1
const newValue = currentValue + 1;

// บันทึกค่าใหม่ลงในไฟล์
fs.writeFile(fileName, newValue.toString(), 'utf8', (err) => {
if (err) {
return;
}
});
}
});
}

0 comments on commit 2722a58

Please sign in to comment.