Skip to content

Instantly share code, notes, and snippets.

@wattanakorn495
Last active October 19, 2021 18:00
Show Gist options
  • Save wattanakorn495/c21dded555fbef89182ead8abcff3caa to your computer and use it in GitHub Desktop.
Save wattanakorn495/c21dded555fbef89182ead8abcff3caa to your computer and use it in GitHub Desktop.
ดึง list ของรูปภาพจากเลข cprcode
import axios from "axios";
import { IMAGES_ENDPOINT } from "../config/images";
let Images = {};
export async function loadAllImages() {
const data = (await axios.get(IMAGES_ENDPOINT)).data;
Images = data;
}
export function getImages(cprcode) {
const padded = cprcode.toString().padStart(7, "0");
return Images[padded] || [];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment