From dd3033be9c8ed876c17411e990cb59d53fce303d Mon Sep 17 00:00:00 2001 From: elegant651 Date: Mon, 30 Mar 2020 11:26:28 +0900 Subject: [PATCH] add front-todofeed --- todofeed/front-todofeed/.gitignore | 21 ++ todofeed/front-todofeed/README.md | 30 +++ todofeed/front-todofeed/babel.config.js | 5 + todofeed/front-todofeed/package.json | 56 ++++++ todofeed/front-todofeed/public/favicon.ico | Bin 0 -> 4286 bytes todofeed/front-todofeed/public/index.html | 19 ++ todofeed/front-todofeed/src/App.vue | 181 ++++++++++++++++++ todofeed/front-todofeed/src/assets/logo.png | Bin 0 -> 6849 bytes todofeed/front-todofeed/src/assets/logo.svg | 1 + .../front-todofeed/src/components/Feeds.vue | 108 +++++++++++ .../src/components/LoginBox.vue | 171 +++++++++++++++++ .../src/components/WriteBox.vue | 113 +++++++++++ todofeed/front-todofeed/src/klaytn/caver.js | 27 +++ .../src/klaytn/deployedABI.json | 1 + .../front-todofeed/src/klaytn/deployedAddress | 1 + .../src/klaytn/klaytnService.js | 150 +++++++++++++++ todofeed/front-todofeed/src/main.js | 12 ++ .../front-todofeed/src/plugins/vuetify.js | 7 + todofeed/front-todofeed/src/store/index.js | 14 ++ .../front-todofeed/src/store/modules/todos.js | 42 ++++ .../src/store/modules/wallet.js | 41 ++++ todofeed/front-todofeed/src/util/identicon.js | 14 ++ .../src/util/imageCompression.js | 44 +++++ .../front-todofeed/src/util/imageUtils.js | 76 ++++++++ todofeed/front-todofeed/vue.config.js | 5 + todofeed/frontend-todofeed | 1 - 26 files changed, 1139 insertions(+), 1 deletion(-) create mode 100644 todofeed/front-todofeed/.gitignore create mode 100644 todofeed/front-todofeed/README.md create mode 100644 todofeed/front-todofeed/babel.config.js create mode 100644 todofeed/front-todofeed/package.json create mode 100644 todofeed/front-todofeed/public/favicon.ico create mode 100644 todofeed/front-todofeed/public/index.html create mode 100644 todofeed/front-todofeed/src/App.vue create mode 100644 todofeed/front-todofeed/src/assets/logo.png create mode 100644 todofeed/front-todofeed/src/assets/logo.svg create mode 100644 todofeed/front-todofeed/src/components/Feeds.vue create mode 100644 todofeed/front-todofeed/src/components/LoginBox.vue create mode 100644 todofeed/front-todofeed/src/components/WriteBox.vue create mode 100644 todofeed/front-todofeed/src/klaytn/caver.js create mode 100644 todofeed/front-todofeed/src/klaytn/deployedABI.json create mode 100644 todofeed/front-todofeed/src/klaytn/deployedAddress create mode 100644 todofeed/front-todofeed/src/klaytn/klaytnService.js create mode 100644 todofeed/front-todofeed/src/main.js create mode 100644 todofeed/front-todofeed/src/plugins/vuetify.js create mode 100644 todofeed/front-todofeed/src/store/index.js create mode 100644 todofeed/front-todofeed/src/store/modules/todos.js create mode 100644 todofeed/front-todofeed/src/store/modules/wallet.js create mode 100644 todofeed/front-todofeed/src/util/identicon.js create mode 100644 todofeed/front-todofeed/src/util/imageCompression.js create mode 100644 todofeed/front-todofeed/src/util/imageUtils.js create mode 100644 todofeed/front-todofeed/vue.config.js delete mode 160000 todofeed/frontend-todofeed diff --git a/todofeed/front-todofeed/.gitignore b/todofeed/front-todofeed/.gitignore new file mode 100644 index 0000000..a0dddc6 --- /dev/null +++ b/todofeed/front-todofeed/.gitignore @@ -0,0 +1,21 @@ +.DS_Store +node_modules +/dist + +# local env files +.env.local +.env.*.local + +# Log files +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Editor directories and files +.idea +.vscode +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/todofeed/front-todofeed/README.md b/todofeed/front-todofeed/README.md new file mode 100644 index 0000000..b600a3d --- /dev/null +++ b/todofeed/front-todofeed/README.md @@ -0,0 +1,30 @@ +# +frontend-todofeed + +## Project setup +``` +npm install +``` + +### Compiles and hot-reloads for development +``` +npm run serve +``` + +### Compiles and minifies for production +``` +npm run build +``` + +### Run your tests +``` +npm run test +``` + +### Lints and fixes files +``` +npm run lint +``` + +### Customize configuration +See [Configuration Reference](https://cli.vuejs.org/config/). diff --git a/todofeed/front-todofeed/babel.config.js b/todofeed/front-todofeed/babel.config.js new file mode 100644 index 0000000..ba17966 --- /dev/null +++ b/todofeed/front-todofeed/babel.config.js @@ -0,0 +1,5 @@ +module.exports = { + presets: [ + '@vue/app' + ] +} diff --git a/todofeed/front-todofeed/package.json b/todofeed/front-todofeed/package.json new file mode 100644 index 0000000..d30d869 --- /dev/null +++ b/todofeed/front-todofeed/package.json @@ -0,0 +1,56 @@ +{ + "name": "frontend-todofeed", + "version": "0.1.0", + "private": true, + "scripts": { + "serve": "vue-cli-service serve", + "build": "vue-cli-service build", + "lint": "vue-cli-service lint" + }, + "dependencies": { + "caver-js": "^1.3.2", + "core-js": "^2.6.5", + "identicon.js": "^2.3.3", + "js-sha256": "^0.9.0", + "moment": "^2.24.0", + "vue": "^2.6.10", + "vuetify": "^2.2.18", + "vuex": "^3.1.3" + }, + "devDependencies": { + "@vue/cli-plugin-babel": "^3.1.1", + "@vue/cli-plugin-eslint": "^3.1.1", + "@vue/cli-service": "^3.1.1", + "babel-eslint": "^10.0.1", + "eslint": "^5.16.0", + "eslint-plugin-vue": "^5.0.0", + "sass": "^1.19.0", + "sass-loader": "^8.0.0", + "vue-cli-plugin-vuetify": "^2.0.5", + "vue-template-compiler": "^2.6.10", + "vuetify-loader": "^1.3.0" + }, + "eslintConfig": { + "root": true, + "env": { + "node": true + }, + "extends": [ + "plugin:vue/essential", + "eslint:recommended" + ], + "rules": {}, + "parserOptions": { + "parser": "babel-eslint" + } + }, + "postcss": { + "plugins": { + "autoprefixer": {} + } + }, + "browserslist": [ + "> 1%", + "last 2 versions" + ] +} diff --git a/todofeed/front-todofeed/public/favicon.ico b/todofeed/front-todofeed/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..df36fcfb72584e00488330b560ebcf34a41c64c2 GIT binary patch literal 4286 zcmds*O-Phc6o&64GDVCEQHxsW(p4>LW*W<827=Unuo8sGpRux(DN@jWP-e29Wl%wj zY84_aq9}^Am9-cWTD5GGEo#+5Fi2wX_P*bo+xO!)p*7B;iKlbFd(U~_d(U?#hLj56 zPhFkj-|A6~Qk#@g^#D^U0XT1cu=c-vu1+SElX9NR;kzAUV(q0|dl0|%h|dI$%VICy zJnu2^L*Te9JrJMGh%-P79CL0}dq92RGU6gI{v2~|)p}sG5x0U*z<8U;Ij*hB9z?ei z@g6Xq-pDoPl=MANPiR7%172VA%r)kevtV-_5H*QJKFmd;8yA$98zCxBZYXTNZ#QFk2(TX0;Y2dt&WitL#$96|gJY=3xX zpCoi|YNzgO3R`f@IiEeSmKrPSf#h#Qd<$%Ej^RIeeYfsxhPMOG`S`Pz8q``=511zm zAm)MX5AV^5xIWPyEu7u>qYs?pn$I4nL9J!=K=SGlKLXpE<5x+2cDTXq?brj?n6sp= zphe9;_JHf40^9~}9i08r{XM$7HB!`{Ys~TK0kx<}ZQng`UPvH*11|q7&l9?@FQz;8 zx!=3<4seY*%=OlbCbcae?5^V_}*K>Uo6ZWV8mTyE^B=DKy7-sdLYkR5Z?paTgK-zyIkKjIcpyO z{+uIt&YSa_$QnN_@t~L014dyK(fOOo+W*MIxbA6Ndgr=Y!f#Tokqv}n<7-9qfHkc3 z=>a|HWqcX8fzQCT=dqVbogRq!-S>H%yA{1w#2Pn;=e>JiEj7Hl;zdt-2f+j2%DeVD zsW0Ab)ZK@0cIW%W7z}H{&~yGhn~D;aiP4=;m-HCo`BEI+Kd6 z={Xwx{TKxD#iCLfl2vQGDitKtN>z|-AdCN|$jTFDg0m3O`WLD4_s#$S literal 0 HcmV?d00001 diff --git a/todofeed/front-todofeed/public/index.html b/todofeed/front-todofeed/public/index.html new file mode 100644 index 0000000..532384a --- /dev/null +++ b/todofeed/front-todofeed/public/index.html @@ -0,0 +1,19 @@ + + + + + + + + frontend-todofeed + + + + + +
+ + + diff --git a/todofeed/front-todofeed/src/App.vue b/todofeed/front-todofeed/src/App.vue new file mode 100644 index 0000000..ee69307 --- /dev/null +++ b/todofeed/front-todofeed/src/App.vue @@ -0,0 +1,181 @@ + + + + + diff --git a/todofeed/front-todofeed/src/assets/logo.png b/todofeed/front-todofeed/src/assets/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..f3d2503fc2a44b5053b0837ebea6e87a2d339a43 GIT binary patch literal 6849 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 46 diff --git a/todofeed/front-todofeed/src/components/Feeds.vue b/todofeed/front-todofeed/src/components/Feeds.vue new file mode 100644 index 0000000..1d2a53e --- /dev/null +++ b/todofeed/front-todofeed/src/components/Feeds.vue @@ -0,0 +1,108 @@ + + + + + \ No newline at end of file diff --git a/todofeed/front-todofeed/src/components/LoginBox.vue b/todofeed/front-todofeed/src/components/LoginBox.vue new file mode 100644 index 0000000..30ed3c8 --- /dev/null +++ b/todofeed/front-todofeed/src/components/LoginBox.vue @@ -0,0 +1,171 @@ + + + + + \ No newline at end of file diff --git a/todofeed/front-todofeed/src/components/WriteBox.vue b/todofeed/front-todofeed/src/components/WriteBox.vue new file mode 100644 index 0000000..ee2f955 --- /dev/null +++ b/todofeed/front-todofeed/src/components/WriteBox.vue @@ -0,0 +1,113 @@ + + + + + \ No newline at end of file diff --git a/todofeed/front-todofeed/src/klaytn/caver.js b/todofeed/front-todofeed/src/klaytn/caver.js new file mode 100644 index 0000000..cc47621 --- /dev/null +++ b/todofeed/front-todofeed/src/klaytn/caver.js @@ -0,0 +1,27 @@ +/** + * caver-js library helps making connection with klaytn node. + * You can connect to specific klaytn node by setting 'rpcURL' value. + * default rpcURL is 'https://api.baobab.klaytn.net:8651'. + */ +import Caver from 'caver-js' + +const deployedABI = require('./deployedABI.json') + +const TEST_NET = 'https://api.baobab.klaytn.net:8651' + +export const config = { + rpcURL: TEST_NET +} + +const DEPLOYED_ADDRESS = '0xa47898be53fba0fecdb9b4e1dadea5bf0f3c77f7' // testnet + +const cav = new Caver(config.rpcURL) + +const getContractInstance = () => { + const contractInstance = deployedABI + && DEPLOYED_ADDRESS + && new cav.klay.Contract(deployedABI, DEPLOYED_ADDRESS) + return contractInstance +} + +export {cav, getContractInstance} diff --git a/todofeed/front-todofeed/src/klaytn/deployedABI.json b/todofeed/front-todofeed/src/klaytn/deployedABI.json new file mode 100644 index 0000000..0981bae --- /dev/null +++ b/todofeed/front-todofeed/src/klaytn/deployedABI.json @@ -0,0 +1 @@ +[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"todoList","outputs":[{"name":"todoId","type":"uint256"},{"name":"owner","type":"address"},{"name":"title","type":"string"},{"name":"photo","type":"bytes"},{"name":"timestamp","type":"uint256"},{"name":"isVerified","type":"bool"},{"name":"verifier","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"todoMap","outputs":[{"name":"todoId","type":"uint256"},{"name":"owner","type":"address"},{"name":"title","type":"string"},{"name":"photo","type":"bytes"},{"name":"timestamp","type":"uint256"},{"name":"isVerified","type":"bool"},{"name":"verifier","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"todoId","type":"uint256"},{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"title","type":"string"},{"indexed":false,"name":"photo","type":"bytes"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"TodoCompleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"todoId","type":"uint256"},{"indexed":false,"name":"verifier","type":"address"}],"name":"TodoVerified","type":"event"},{"constant":false,"inputs":[{"name":"title","type":"string"},{"name":"photo","type":"bytes"}],"name":"writeTodo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"todoId","type":"uint256"}],"name":"verifyTodo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getTotalTodoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"todoId","type":"uint256"}],"name":"getTodo","outputs":[{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"string"},{"name":"","type":"bytes"},{"name":"","type":"uint256"},{"name":"","type":"bool"},{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}] \ No newline at end of file diff --git a/todofeed/front-todofeed/src/klaytn/deployedAddress b/todofeed/front-todofeed/src/klaytn/deployedAddress new file mode 100644 index 0000000..d0b998f --- /dev/null +++ b/todofeed/front-todofeed/src/klaytn/deployedAddress @@ -0,0 +1 @@ +0xa47898be53fba0fecdb9b4e1dadea5bf0f3c77f7 \ No newline at end of file diff --git a/todofeed/front-todofeed/src/klaytn/klaytnService.js b/todofeed/front-todofeed/src/klaytn/klaytnService.js new file mode 100644 index 0000000..a843194 --- /dev/null +++ b/todofeed/front-todofeed/src/klaytn/klaytnService.js @@ -0,0 +1,150 @@ +import { cav, getContractInstance } from './caver' + +export default class KlaytnService { + + constructor() {} + + async init () { + const walletFromSession = sessionStorage.getItem('walletInstance') + + // If 'walletInstance' value exists, add it to caver's wallet + if (walletFromSession) { + try { + const address = JSON.parse(walletFromSession).address + cav.klay.accounts.wallet.add(JSON.parse(walletFromSession)) + + return address + } catch (e) { + // If value in sessionStorage is invalid wallet instance, + // remove it from sessionStorage. + sessionStorage.removeItem('walletInstance') + return false + } + } + } + + async getBlockNumber () { + const blockNumber = await cav.klay.getBlockNumber() + return blockNumber + } + + async getBalance (address) { + const balance = await cav.klay.getBalance(address) + return cav.utils.fromPeb(balance, "KLAY") + } + + async loginWithKeystore (keystore, password) { + const { privateKey: privateKeyFromKeystore } = cav.klay.accounts.decrypt(keystore, password) + await this.integrateWallet(privateKeyFromKeystore) + return true + } + + integrateWallet (privateKey) { + const walletInstance = cav.klay.accounts.privateKeyToAccount(privateKey) + cav.klay.accounts.wallet.add(walletInstance) + sessionStorage.setItem('walletInstance', JSON.stringify(walletInstance)) + return true + } + + removeWallet () { + cav.klay.accounts.wallet.clear() + sessionStorage.removeItem('walletInstance') + return true + } + + getWallet () { + if (cav.klay.accounts.wallet.length) { + return cav.klay.accounts.wallet[0] + } + return null + } + + writeTodo (title, file, dispatch, errorCb) { + const walletInstance = cav.klay.accounts.wallet && cav.klay.accounts.wallet[0] + + if (!walletInstance) { + console.log('no walletInstance') + return + } + + const address = walletInstance.address + + const reader = new window.FileReader() + reader.readAsArrayBuffer(file) + reader.onloadend = () => { + const buffer = Buffer.from(reader.result) + const hexString = "0x" + buffer.toString('hex') + getContractInstance().methods.writeTodo(title, hexString).send({ + from: address, + gas: '100000000', + }) + .once('transactionHash', (txHash) => { + console.log(` + Sending a transaction... + txHash: ${txHash} + ` + ) + }) + .once('receipt', (receipt) => { + console.log(` + Received receipt! (#${receipt.blockNumber} ,${receipt.transactionHash}) + `, receipt) + + dispatch(receipt) + }) + .once('error', (error) => { + errorCb(error.message) + }) + } + } + + + getFeeds (dispatch) { + getContractInstance().methods.getTotalTodoCount().call() + .then((totalTodoCount) => { + if (!totalTodoCount) return [] + const feed = [] + for (let i = totalTodoCount; i > 0; i--) { + const todo = getContractInstance().methods.getTodo(i).call() + feed.push(todo) + } + return Promise.all(feed) + }) + .then((feed) => { + dispatch(feed) + }) + } + + verify (todoId, dispatch) { + const walletInstance = cav.klay.accounts.wallet && cav.klay.accounts.wallet[0] + + if (!walletInstance) { + console.log('no walletInstance') + return + } + + const address = walletInstance.address + getContractInstance().methods.verifyTodo(todoId).send({ + from: address, + gas: '3000000' + }) + .once('transactionHash', (txHash) => { + console.log(` + Sending a transaction... + txHash: ${txHash} + ` + ) + }) + .once('receipt', (receipt) => { + console.log(` + Received receipt! (#${receipt.blockNumber} ,${receipt.transactionHash}) + `, receipt) + + dispatch(receipt) + }) + .once('error', (error) => { + alert(error.message) + }) + } + +} \ No newline at end of file diff --git a/todofeed/front-todofeed/src/main.js b/todofeed/front-todofeed/src/main.js new file mode 100644 index 0000000..7614f5d --- /dev/null +++ b/todofeed/front-todofeed/src/main.js @@ -0,0 +1,12 @@ +import Vue from 'vue' +import App from './App.vue' +import store from './store' +import vuetify from './plugins/vuetify'; + +Vue.config.productionTip = false + +new Vue({ + vuetify, + store, + render: h => h(App) +}).$mount('#app') diff --git a/todofeed/front-todofeed/src/plugins/vuetify.js b/todofeed/front-todofeed/src/plugins/vuetify.js new file mode 100644 index 0000000..ec46adb --- /dev/null +++ b/todofeed/front-todofeed/src/plugins/vuetify.js @@ -0,0 +1,7 @@ +import Vue from 'vue'; +import Vuetify from 'vuetify/lib'; + +Vue.use(Vuetify); + +export default new Vuetify({ +}); diff --git a/todofeed/front-todofeed/src/store/index.js b/todofeed/front-todofeed/src/store/index.js new file mode 100644 index 0000000..7588de2 --- /dev/null +++ b/todofeed/front-todofeed/src/store/index.js @@ -0,0 +1,14 @@ +import Vue from 'vue' +import Vuex from 'vuex' + +import wallet from '@/store/modules/wallet' +import todos from '@/store/modules/todos' + +Vue.use(Vuex) + +export default new Vuex.Store({ + modules: { + wallet, + todos + } +}) diff --git a/todofeed/front-todofeed/src/store/modules/todos.js b/todofeed/front-todofeed/src/store/modules/todos.js new file mode 100644 index 0000000..4e64e3a --- /dev/null +++ b/todofeed/front-todofeed/src/store/modules/todos.js @@ -0,0 +1,42 @@ +import klaytnService from '@/klaytn/klaytnService' + +const state = { + items: [] +} + +const getters = { + allTodos: (state) => { + return state.items + } +} + +const mutations = { + setTodos (state, todos) { + + todos = todos.map(feed => { + const obj = { + todoId: parseInt(feed[0]), + owner: feed[1], + title: feed[2], + photo: feed[3], + timestamp: feed[4], + isVerified: feed[5], + verifier: feed[6] + } + return obj + }) + + state.items = todos + } +} + +const actions = { +} + +export default { + namespaced: true, + state, + getters, + actions, + mutations +} \ No newline at end of file diff --git a/todofeed/front-todofeed/src/store/modules/wallet.js b/todofeed/front-todofeed/src/store/modules/wallet.js new file mode 100644 index 0000000..62f82e8 --- /dev/null +++ b/todofeed/front-todofeed/src/store/modules/wallet.js @@ -0,0 +1,41 @@ + +const state = { + klaytn: null, + isConnectWallet: false, + myaddress: '', + balance: 0 +} + +const getters = { + klaytn: (state) => state.klaytn, + isConnectWallet: (state) => state.isConnectWallet, + myaddress: (state) => state.myaddress, + balance: (state) => state.balance +} + +const mutations = { + setKlaytn(state, klaytn) { + state.klaytn = klaytn + }, + setIsConnectWallet(state, isConnected) { + state.isConnectWallet = isConnected + }, + setMyAddress(state, address) { + state.myaddress = address + }, + setBalance(state, balance) { + state.balance = balance + } +} + +const actions = { + +} + +export default { + namespaced: true, + state, + getters, + actions, + mutations +} \ No newline at end of file diff --git a/todofeed/front-todofeed/src/util/identicon.js b/todofeed/front-todofeed/src/util/identicon.js new file mode 100644 index 0000000..a3ff47a --- /dev/null +++ b/todofeed/front-todofeed/src/util/identicon.js @@ -0,0 +1,14 @@ +import sha256 from 'js-sha256' +import Identicon from 'identicon.js' + +const getIdenticon = (user_name) => { + if(user_name){ + const data = new Identicon(sha256(user_name)).toString() + return 'data:image/png;base64,'+ data + } else { + return '/img/profile-medium.png' + } +} + + +export {getIdenticon} \ No newline at end of file diff --git a/todofeed/front-todofeed/src/util/imageCompression.js b/todofeed/front-todofeed/src/util/imageCompression.js new file mode 100644 index 0000000..7672a71 --- /dev/null +++ b/todofeed/front-todofeed/src/util/imageCompression.js @@ -0,0 +1,44 @@ +import { drawImageInCanvas, getDataUrlFromFile, getFilefromDataUrl, loadImage } from './imageUtils' + +async function imageCompression(file, maxSizeMB = Number.POSITIVE_INFINITY, maxWidthOrHeight) { + if (!(file instanceof Blob || file instanceof File)) { + throw new Error('The file given is not an instance of Blob or File') + } else if (!/^image/.test(file.type)) { + throw new Error('The file given is not an image') + } + + const maxSizeByte = maxSizeMB * 1024 * 1024 + const dataUrl = await getDataUrlFromFile(file) + const img = await loadImage(dataUrl) + const canvas = drawImageInCanvas(img, maxWidthOrHeight) + let quality = 0.9 + let compressedFile = await getFilefromDataUrl(canvas.toDataURL(file.type, quality), file.name, file.lastModified) + + if (file) { + while (compressedFile.size > maxSizeByte) { + canvas.width *= 0.9 + canvas.height *= 0.9 + + const ctx = canvas.getContext('2d') + ctx.drawImage(img, 0, 0, canvas.width, canvas.height) + + const compressedDataUrl = canvas.toDataURL(file.type, quality) + compressedFile = await getFilefromDataUrl(compressedDataUrl, file.name, file.lastModified) + } + } else { + while (compressedFile.size > maxSizeByte) { + quality *= 0.9 + const compressedDataUrl = canvas.toDataURL(file.type, quality) + compressedFile = await getFilefromDataUrl(compressedDataUrl, file.name, file.lastModified) + } + } + + return compressedFile +} + +imageCompression.drawImageInCanvas = drawImageInCanvas +imageCompression.getDataUrlFromFile = getDataUrlFromFile +imageCompression.getFilefromDataUrl = getFilefromDataUrl +imageCompression.loadImage = loadImage + +export default imageCompression \ No newline at end of file diff --git a/todofeed/front-todofeed/src/util/imageUtils.js b/todofeed/front-todofeed/src/util/imageUtils.js new file mode 100644 index 0000000..7db5a21 --- /dev/null +++ b/todofeed/front-todofeed/src/util/imageUtils.js @@ -0,0 +1,76 @@ +export function getDataUrlFromFile(file) { + return new Promise((resolve, reject) => { + const reader = new FileReader() + reader.readAsDataURL(file) + reader.onload = () => { + resolve(reader.result) + } + reader.onerror = reject + }) +} + +export function getFilefromDataUrl(dataurl, filename, lastModified = Date.now()) { + return new Promise((resolve) => { + const arr = dataurl.split(',') + const mime = arr[0].match(/:(.*?)/)[1] + const bstr = atob(arr[1]) + let n = bstr.length + const u8arr = new Uint8Array(n) + while (n--) { + u8arr[n] = bstr.charCodeAt(n) + } + let file + try { + file = new File([u8arr], filename, { type: mime }) // Edge do not support File constructor + } catch (e) { + file = new Blob([u8arr], { type: mime }) + file.name = filename + file.lastModified = lastModified + } + resolve(file) + }) +} + +export function loadImage(src) { + return new Promise((resolve, reject) => { + const img = new Image() + img.onload = () => { + resolve(img) + } + img.onerror = reject + img.src = src + }) +} + +export function drawImageInCanvas(img, maxWidthOrHeight) { + const canvas = document.createElement('canvas') + const ctx = canvas.getContext('2d') + + if (Number.isInteger(maxWidthOrHeight) && (img.width > maxWidthOrHeight || img.height > maxWidthOrHeight)) { + if (img.width > img.height) { + canvas.width = maxWidthOrHeight + canvas.height = (img.height / img.width) * maxWidthOrHeight + } else { + canvas.width = (img.width / img.height) * maxWidthOrHeight + canvas.height = maxWidthOrHeight + } + } else { + canvas.width = img.width + canvas.height = img.height + } + ctx.drawImage(img, 0, 0, canvas.width, canvas.height) + return canvas +} + +export const drawImageFromBytes = (data) => { + /** + * data.slice(2) + * Remove prefix `0x` from hexString + */ + const hexString = data.slice(2) + const arrayBufferView = new Uint8Array(hexString.match(/.{1,2}/g).map((byte) => parseInt(byte, 16))) + const blob = new Blob([arrayBufferView], { type: 'image/jpeg' }) + const urlCreator = window.URL || window.webkitURL + const imageUrl = urlCreator.createObjectURL(blob) + return imageUrl +} diff --git a/todofeed/front-todofeed/vue.config.js b/todofeed/front-todofeed/vue.config.js new file mode 100644 index 0000000..ef6e86b --- /dev/null +++ b/todofeed/front-todofeed/vue.config.js @@ -0,0 +1,5 @@ +module.exports = { + "transpileDependencies": [ + "vuetify" + ] +} \ No newline at end of file diff --git a/todofeed/frontend-todofeed b/todofeed/frontend-todofeed deleted file mode 160000 index 56352fc..0000000 --- a/todofeed/frontend-todofeed +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 56352fc7d38779d97d4fbb361a9dc336a2b8650c