process-post-list.js 982 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import fs from 'fs'
  2. import { users } from './user/data.js'
  3. let read = './post/data/'
  4. let max = 0
  5. let map = []
  6. //判断是不是目录
  7. const dirs = fs.readdirSync(read)
  8. dirs.forEach((dictName) => {
  9. formatDict(read, dictName)
  10. })
  11. function formatDict(dir, name) {
  12. let filePath = dir + name
  13. let saveFileStr = fs.readFileSync(filePath, 'utf8')
  14. let inputData = JSON.parse(saveFileStr)
  15. map.push({
  16. userId: name,
  17. list: inputData,
  18. })
  19. if (max < inputData.length) max = inputData.length
  20. }
  21. let newList = []
  22. // max = 5
  23. for (let i = 0; i < max; i++) {
  24. map.map((v) => {
  25. if (v.list.length > i) {
  26. let data = v.list[i]
  27. newList.push(data)
  28. }
  29. })
  30. }
  31. // console.log(newList)
  32. let data = newList.slice(0, 6)
  33. data.map((v) => {
  34. let u = users.find((a) => a.uid == v.author_user_id)
  35. if (u) {
  36. v.author = u
  37. }
  38. })
  39. fs.writeFileSync('./posts6.json', JSON.stringify(data, null, 2))
  40. fs.writeFileSync('./posts.json', JSON.stringify(newList.slice(6), null, 2))