Filter files during scan
This commit is contained in:
parent
92bbcec4d0
commit
e017e22582
|
@ -22,7 +22,7 @@ export default class Blog extends Component {
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
let posts = this.props.posts.sort((a, b) => {
|
let posts = this.props.posts.sort((a, b) => {
|
||||||
return new Date(b.published) - new Date(a.published)
|
return new Date(b.published) - new Date(a.published)
|
||||||
})
|
})
|
||||||
|
|
|
@ -72,19 +72,6 @@ export class Scanner {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// init () {
|
|
||||||
// return new Promise((resolve, reject) => {
|
|
||||||
// jsonfile.readFile(config.dataPath, (err, data) => {
|
|
||||||
// if (err) {
|
|
||||||
// reject(err)
|
|
||||||
// } else {
|
|
||||||
// this.data = data
|
|
||||||
// resolve(data)
|
|
||||||
// }
|
|
||||||
// })
|
|
||||||
// })
|
|
||||||
// }
|
|
||||||
|
|
||||||
writeData (callback) {
|
writeData (callback) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
jsonfile.writeFile(config.dataPath, this.data, (err, data) => {
|
jsonfile.writeFile(config.dataPath, this.data, (err, data) => {
|
||||||
|
@ -114,9 +101,14 @@ export class Scanner {
|
||||||
scan () {
|
scan () {
|
||||||
this.readdir(config.contentPath)
|
this.readdir(config.contentPath)
|
||||||
.then(
|
.then(
|
||||||
(files) => { return Promise.all(files.map(this.readfile)) }
|
|
||||||
).then(
|
|
||||||
(files) => {
|
(files) => {
|
||||||
|
const filtered = files.filter(
|
||||||
|
(file) => fs.statSync(path.join(process.cwd(), config.contentPath, file)).isFile()
|
||||||
|
)
|
||||||
|
return Promise.all(filtered.map(this.readfile))
|
||||||
|
}
|
||||||
|
).then(
|
||||||
|
(files) => {
|
||||||
files.forEach(
|
files.forEach(
|
||||||
(item) => { this.processFile(item[0], item[1]) }
|
(item) => { this.processFile(item[0], item[1]) }
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue