refactor: editor-file -> vue component (UI, core, new folder, rename, insert)

This commit is contained in:
NGPixel
2017-06-04 23:16:00 -04:00
parent 1358191327
commit f38f7d4f10
12 changed files with 592 additions and 96 deletions

View File

@@ -0,0 +1,15 @@
'use strict'
import filesize from 'filesize.js'
import toUpper from 'lodash/toUpper'
module.exports = {
/**
* Convert bytes to humanized form
* @param {number} rawSize Size in bytes
* @returns {string} Humanized file size
*/
filesize(rawSize) {
return toUpper(filesize(rawSize))
}
}

View File

@@ -1,6 +1,7 @@
'use strict'
const helpers = {
common: require('./common'),
form: require('./form'),
pages: require('./pages')
}