PicList/src/main/utils/getPicBeds.ts

20 lines
533 B
TypeScript
Raw Normal View History

import picgo from './picgo'
2018-12-23 10:15:00 -05:00
const getPicBeds = () => {
2018-12-23 10:15:00 -05:00
const picBedTypes = picgo.helper.uploader.getIdList()
const picBedFromDB = picgo.getConfig('picBed.list') || []
2019-12-19 06:17:21 -05:00
const picBeds = picBedTypes.map((item: string) => {
const visible = picBedFromDB.find((i: IPicBedType) => i.type === item) // object or undefined
2018-12-23 10:15:00 -05:00
return {
type: item,
name: picgo.helper.uploader.get(item).name || item,
visible: visible ? visible.visible : true
}
}) as IPicBedType[]
2018-12-23 10:15:00 -05:00
return picBeds
}
export {
getPicBeds
}