├── .babelrc ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .postcssrc.js ├── .prettierrc ├── Dockerfile ├── LICENSE ├── README.md ├── build ├── build.js ├── check-versions.js ├── logo.png ├── utils.js ├── vue-loader.conf.js ├── webpack.base.conf.js ├── webpack.dev.conf.js └── webpack.prod.conf.js ├── config ├── dev.env.js ├── index.js └── prod.env.js ├── index.html ├── package-lock.json ├── package.json ├── screenshots ├── kanban-backlog.png └── kanban-board.png ├── src ├── App.vue ├── assets │ └── logo.png ├── components │ ├── Backlog.vue │ ├── KanbanBoard.vue │ ├── MenuBar.vue │ ├── NewItemForm.vue │ ├── TaskLane.vue │ └── TaskLaneItem.vue ├── main.js ├── router │ └── index.js └── store.js └── static └── .gitkeep /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ], 5 | "plugins": [ 6 | "@babel/plugin-transform-runtime", 7 | "@babel/plugin-syntax-dynamic-import", 8 | "@babel/plugin-syntax-import-meta", 9 | "@babel/plugin-proposal-class-properties", 10 | "@babel/plugin-proposal-json-strings", 11 | [ 12 | "@babel/plugin-proposal-decorators", 13 | { 14 | "legacy": true 15 | } 16 | ], 17 | "@babel/plugin-proposal-function-sent", 18 | "@babel/plugin-proposal-export-namespace-from", 19 | "@babel/plugin-proposal-numeric-separator", 20 | "@babel/plugin-proposal-throw-expressions" 21 | ] 22 | } 23 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /config/ 3 | /dist/ 4 | /*.js 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | // https://eslint.org/docs/user-guide/configuring 2 | 3 | module.exports = { 4 | root: true, 5 | parserOptions: { 6 | sourceType: 'module', 7 | parser: 'babel-eslint' 8 | }, 9 | env: { 10 | browser: true 11 | }, 12 | extends: ['plugin:vue/essential', 'airbnb-base'], 13 | // required to lint *.vue files 14 | plugins: ['vue'], 15 | // check if imports actually resolve 16 | settings: { 17 | 'import/resolver': { 18 | webpack: { 19 | config: 'build/webpack.base.conf.js' 20 | } 21 | } 22 | }, 23 | // add your custom rules here 24 | rules: { 25 | // don't require .vue extension when importing 26 | 'import/extensions': [ 27 | 'error', 28 | 'always', 29 | { 30 | js: 'never', 31 | vue: 'never' 32 | } 33 | ], 34 | // allow optionalDependencies 35 | 'import/no-extraneous-dependencies': [ 36 | 'error', 37 | { 38 | optionalDependencies: ['test/unit/index.js'] 39 | } 40 | ], 41 | // allow debugger during development 42 | 'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, 43 | 'arrow-parens': 0, 44 | 'comma-dangle': 0 45 | } 46 | }; 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | /dist/ 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | 8 | # Editor directories and files 9 | .idea 10 | .vscode 11 | *.suo 12 | *.ntvs* 13 | *.njsproj 14 | *.sln 15 | -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- 1 | // https://github.com/michael-ciniawsky/postcss-load-config 2 | 3 | module.exports = { 4 | "plugins": { 5 | // to edit target browsers: use "browserslist" field in package.json 6 | "postcss-import": {}, 7 | "autoprefixer": {} 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:6 AS build 2 | 3 | RUN mkdir -p /app 4 | 5 | WORKDIR /app 6 | 7 | COPY package.json /app 8 | 9 | RUN npm install -q 10 | 11 | COPY . /app 12 | 13 | RUN NODE_ENV=production npm run build 14 | 15 | FROM node:6-slim 16 | 17 | RUN mkdir -p /app 18 | 19 | WORKDIR /app 20 | 21 | COPY package.json /app 22 | 23 | RUN npm install --production -q 24 | 25 | COPY --from=build /app/dist /app/dist 26 | 27 | EXPOSE 8080 28 | 29 | CMD ["npm", "start"] 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Steve Hobbs 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # VueJS Kanban Board 2 | 3 | This is the companion code repository for the [Auth0](https://auth0.com) blog article [Vue.js Kanban Board: The Development Process](https://auth0.com/blog/vuejs-kanban-board-the-development-process); a client-side Kanban board written in Vue.js. 4 | 5 | ## The Finished App 6 | 7 | Some screenshots of what you can build with the article: 8 | 9 | ![The Kanban board view](/screenshots/kanban-board.png?raw=true "The board view") 10 | ![The Kanban backlog view](/screenshots/kanban-backlog.png?raw=true "The backlog view") 11 | 12 | ## Build Setup 13 | 14 | ``` bash 15 | # install dependencies 16 | npm install 17 | 18 | # serve with hot reload at localhost:8080 19 | npm run dev 20 | 21 | # build for production with minification 22 | npm run build 23 | 24 | # build for production and view the bundle analyzer report 25 | npm run build --report 26 | ``` 27 | 28 | For a detailed explanation on how things work, check out the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). 29 | -------------------------------------------------------------------------------- /build/build.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | require('./check-versions')() 3 | 4 | process.env.NODE_ENV = 'production' 5 | 6 | const ora = require('ora') 7 | const rm = require('rimraf') 8 | const path = require('path') 9 | const chalk = require('chalk') 10 | const webpack = require('webpack') 11 | const config = require('../config') 12 | const webpackConfig = require('./webpack.prod.conf') 13 | 14 | const spinner = ora('building for production...') 15 | spinner.start() 16 | 17 | rm(path.join(config.build.assetsRoot, config.build.assetsSubDirectory), err => { 18 | if (err) throw err 19 | webpack(webpackConfig, (err, stats) => { 20 | spinner.stop() 21 | if (err) throw err 22 | process.stdout.write(stats.toString({ 23 | colors: true, 24 | modules: false, 25 | children: false, 26 | chunks: false, 27 | chunkModules: false 28 | }) + '\n\n') 29 | 30 | if (stats.hasErrors()) { 31 | console.log(chalk.red(' Build failed with errors.\n')) 32 | process.exit(1) 33 | } 34 | 35 | console.log(chalk.cyan(' Build complete.\n')) 36 | console.log(chalk.yellow( 37 | ' Tip: built files are meant to be served over an HTTP server.\n' + 38 | ' Opening index.html over file:// won\'t work.\n' 39 | )) 40 | }) 41 | }) 42 | -------------------------------------------------------------------------------- /build/check-versions.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const chalk = require('chalk') 3 | const semver = require('semver') 4 | const packageConfig = require('../package.json') 5 | const shell = require('shelljs') 6 | 7 | function exec (cmd) { 8 | return require('child_process').execSync(cmd).toString().trim() 9 | } 10 | 11 | const versionRequirements = [ 12 | { 13 | name: 'node', 14 | currentVersion: semver.clean(process.version), 15 | versionRequirement: packageConfig.engines.node 16 | } 17 | ] 18 | 19 | if (shell.which('npm')) { 20 | versionRequirements.push({ 21 | name: 'npm', 22 | currentVersion: exec('npm --version'), 23 | versionRequirement: packageConfig.engines.npm 24 | }) 25 | } 26 | 27 | module.exports = function () { 28 | const warnings = [] 29 | 30 | for (let i = 0; i < versionRequirements.length; i++) { 31 | const mod = versionRequirements[i] 32 | 33 | if (!semver.satisfies(mod.currentVersion, mod.versionRequirement)) { 34 | warnings.push(mod.name + ': ' + 35 | chalk.red(mod.currentVersion) + ' should be ' + 36 | chalk.green(mod.versionRequirement) 37 | ) 38 | } 39 | } 40 | 41 | if (warnings.length) { 42 | console.log('') 43 | console.log(chalk.yellow('To use this template, you must update following to modules:')) 44 | console.log() 45 | 46 | for (let i = 0; i < warnings.length; i++) { 47 | const warning = warnings[i] 48 | console.log(' ' + warning) 49 | } 50 | 51 | console.log() 52 | process.exit(1) 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /build/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevehobbsdev/kanban-board/a14cb448e6aaead8fe0bb8276bf250b9cc0ce462/build/logo.png -------------------------------------------------------------------------------- /build/utils.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const path = require('path') 3 | const config = require('../config') 4 | const MiniCssExtractPlugin = require('mini-css-extract-plugin'); 5 | const packageConfig = require('../package.json') 6 | 7 | exports.assetsPath = function (_path) { 8 | const assetsSubDirectory = process.env.NODE_ENV === 'production' 9 | ? config.build.assetsSubDirectory 10 | : config.dev.assetsSubDirectory 11 | 12 | return path.posix.join(assetsSubDirectory, _path) 13 | } 14 | 15 | exports.cssLoaders = function (options) { 16 | options = options || {} 17 | 18 | const cssLoader = { 19 | loader: 'css-loader', 20 | options: { 21 | sourceMap: options.sourceMap 22 | } 23 | } 24 | 25 | const postcssLoader = { 26 | loader: 'postcss-loader', 27 | options: { 28 | sourceMap: options.sourceMap 29 | } 30 | } 31 | 32 | // generate loader string to be used with extract text plugin 33 | function generateLoaders (loader, loaderOptions) { 34 | const loaders = options.usePostCSS ? [cssLoader, postcssLoader] : [cssLoader] 35 | 36 | if (loader) { 37 | loaders.push({ 38 | loader: loader + '-loader', 39 | options: Object.assign({}, loaderOptions, { 40 | sourceMap: options.sourceMap 41 | }) 42 | }) 43 | } 44 | 45 | // Extract CSS when that option is specified 46 | // (which is the case during production build) 47 | if (options.extract) { 48 | return [MiniCssExtractPlugin.loader, cssLoader] 49 | } else { 50 | return ['vue-style-loader'].concat(loaders) 51 | } 52 | } 53 | 54 | // https://vue-loader.vuejs.org/en/configurations/extract-css.html 55 | return { 56 | css: generateLoaders(), 57 | postcss: generateLoaders(), 58 | less: generateLoaders('less'), 59 | sass: generateLoaders('sass', { indentedSyntax: true }), 60 | scss: generateLoaders('sass'), 61 | stylus: generateLoaders('stylus'), 62 | styl: generateLoaders('stylus') 63 | } 64 | } 65 | 66 | // Generate loaders for standalone style files (outside of .vue) 67 | exports.styleLoaders = function (options) { 68 | const output = [] 69 | const loaders = exports.cssLoaders(options) 70 | 71 | for (const extension in loaders) { 72 | const loader = loaders[extension] 73 | output.push({ 74 | test: new RegExp('\\.' + extension + '$'), 75 | use: loader 76 | }) 77 | } 78 | 79 | return output 80 | } 81 | 82 | exports.createNotifierCallback = () => { 83 | const notifier = require('node-notifier') 84 | 85 | return (severity, errors) => { 86 | if (severity !== 'error') return 87 | 88 | const error = errors[0] 89 | const filename = error.file && error.file.split('!').pop() 90 | 91 | notifier.notify({ 92 | title: packageConfig.name, 93 | message: severity + ': ' + error.name, 94 | subtitle: filename || '', 95 | icon: path.join(__dirname, 'logo.png') 96 | }) 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /build/vue-loader.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const utils = require('./utils') 3 | const config = require('../config') 4 | const isProduction = process.env.NODE_ENV === 'production' 5 | const sourceMapEnabled = isProduction 6 | ? config.build.productionSourceMap 7 | : config.dev.cssSourceMap 8 | 9 | module.exports = { 10 | loaders: utils.cssLoaders({ 11 | sourceMap: sourceMapEnabled, 12 | extract: isProduction 13 | }), 14 | cssSourceMap: sourceMapEnabled, 15 | cacheBusting: config.dev.cacheBusting, 16 | transformToRequire: { 17 | video: ['src', 'poster'], 18 | source: 'src', 19 | img: 'src', 20 | image: 'xlink:href' 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /build/webpack.base.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const path = require('path') 3 | const utils = require('./utils') 4 | const config = require('../config') 5 | const vueLoaderConfig = require('./vue-loader.conf') 6 | 7 | function resolve (dir) { 8 | return path.join(__dirname, '..', dir) 9 | } 10 | 11 | const createLintingRule = () => ({ 12 | test: /\.(js|vue)$/, 13 | loader: 'eslint-loader', 14 | enforce: 'pre', 15 | include: [resolve('src'), resolve('test')], 16 | options: { 17 | formatter: require('eslint-friendly-formatter'), 18 | emitWarning: !config.dev.showEslintErrorsInOverlay 19 | } 20 | }) 21 | 22 | module.exports = { 23 | context: path.resolve(__dirname, '../'), 24 | entry: { 25 | app: './src/main.js' 26 | }, 27 | output: { 28 | path: config.build.assetsRoot, 29 | filename: '[name].js', 30 | publicPath: process.env.NODE_ENV === 'production' 31 | ? config.build.assetsPublicPath 32 | : config.dev.assetsPublicPath 33 | }, 34 | resolve: { 35 | extensions: ['.js', '.vue', '.json'], 36 | alias: { 37 | 'vue$': 'vue/dist/vue.esm.js', 38 | '@': resolve('src'), 39 | } 40 | }, 41 | module: { 42 | rules: [ 43 | ...(config.dev.useEslint ? [createLintingRule()] : []), 44 | { 45 | test: /\.vue$/, 46 | loader: 'vue-loader', 47 | options: vueLoaderConfig 48 | }, 49 | { 50 | test: /\.js$/, 51 | loader: 'babel-loader', 52 | include: [resolve('src'), resolve('test')] 53 | }, 54 | { 55 | test: /\.(png|jpe?g|gif|svg)(\?.*)?$/, 56 | loader: 'url-loader', 57 | options: { 58 | limit: 10000, 59 | name: utils.assetsPath('img/[name].[hash:7].[ext]') 60 | } 61 | }, 62 | { 63 | test: /\.(mp4|webm|ogg|mp3|wav|flac|aac)(\?.*)?$/, 64 | loader: 'url-loader', 65 | options: { 66 | limit: 10000, 67 | name: utils.assetsPath('media/[name].[hash:7].[ext]') 68 | } 69 | }, 70 | { 71 | test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/, 72 | loader: 'url-loader', 73 | options: { 74 | limit: 10000, 75 | name: utils.assetsPath('fonts/[name].[hash:7].[ext]') 76 | } 77 | } 78 | ] 79 | }, 80 | node: { 81 | // prevent webpack from injecting useless setImmediate polyfill because Vue 82 | // source contains it (although only uses it if it's native). 83 | setImmediate: false, 84 | // prevent webpack from injecting mocks to Node native modules 85 | // that does not make sense for the client 86 | dgram: 'empty', 87 | fs: 'empty', 88 | net: 'empty', 89 | tls: 'empty', 90 | child_process: 'empty' 91 | } 92 | } 93 | -------------------------------------------------------------------------------- /build/webpack.dev.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const utils = require('./utils') 3 | const webpack = require('webpack') 4 | const config = require('../config') 5 | const merge = require('webpack-merge') 6 | const baseWebpackConfig = require('./webpack.base.conf') 7 | const HtmlWebpackPlugin = require('html-webpack-plugin') 8 | const FriendlyErrorsPlugin = require('friendly-errors-webpack-plugin') 9 | const portfinder = require('portfinder') 10 | const { VueLoaderPlugin } = require('vue-loader'); 11 | 12 | const HOST = process.env.HOST 13 | const PORT = process.env.PORT && Number(process.env.PORT) 14 | 15 | const devWebpackConfig = merge(baseWebpackConfig, { 16 | module: { 17 | rules: utils.styleLoaders({ sourceMap: config.dev.cssSourceMap, usePostCSS: true }) 18 | }, 19 | // cheap-module-eval-source-map is faster for development 20 | devtool: config.dev.devtool, 21 | 22 | mode: 'development', 23 | 24 | // these devServer options should be customized in /config/index.js 25 | devServer: { 26 | clientLogLevel: 'warning', 27 | historyApiFallback: true, 28 | hot: true, 29 | compress: true, 30 | host: HOST || config.dev.host, 31 | port: PORT || config.dev.port, 32 | open: config.dev.autoOpenBrowser, 33 | overlay: config.dev.errorOverlay 34 | ? { warnings: false, errors: true } 35 | : false, 36 | publicPath: config.dev.assetsPublicPath, 37 | proxy: config.dev.proxyTable, 38 | quiet: true, // necessary for FriendlyErrorsPlugin 39 | watchOptions: { 40 | poll: config.dev.poll, 41 | } 42 | }, 43 | plugins: [ 44 | new VueLoaderPlugin(), 45 | new webpack.DefinePlugin({ 46 | 'process.env': require('../config/dev.env') 47 | }), 48 | new webpack.HotModuleReplacementPlugin(), 49 | new webpack.NamedModulesPlugin(), // HMR shows correct file names in console on update. 50 | new webpack.NoEmitOnErrorsPlugin(), 51 | // https://github.com/ampedandwired/html-webpack-plugin 52 | new HtmlWebpackPlugin({ 53 | filename: 'index.html', 54 | template: 'index.html', 55 | inject: true 56 | }), 57 | ] 58 | }) 59 | 60 | module.exports = new Promise((resolve, reject) => { 61 | portfinder.basePort = process.env.PORT || config.dev.port 62 | portfinder.getPort((err, port) => { 63 | if (err) { 64 | reject(err) 65 | } else { 66 | // publish the new Port, necessary for e2e tests 67 | process.env.PORT = port 68 | // add port to devServer config 69 | devWebpackConfig.devServer.port = port 70 | 71 | // Add FriendlyErrorsPlugin 72 | devWebpackConfig.plugins.push(new FriendlyErrorsPlugin({ 73 | compilationSuccessInfo: { 74 | messages: [`Your application is running here: http://${devWebpackConfig.devServer.host}:${port}`], 75 | }, 76 | onErrors: config.dev.notifyOnErrors 77 | ? utils.createNotifierCallback() 78 | : undefined 79 | })) 80 | 81 | resolve(devWebpackConfig) 82 | } 83 | }) 84 | }) 85 | -------------------------------------------------------------------------------- /build/webpack.prod.conf.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const path = require('path'); 3 | const utils = require('./utils'); 4 | const webpack = require('webpack'); 5 | const config = require('../config'); 6 | const merge = require('webpack-merge'); 7 | const baseWebpackConfig = require('./webpack.base.conf'); 8 | const CopyWebpackPlugin = require('copy-webpack-plugin'); 9 | const HtmlWebpackPlugin = require('html-webpack-plugin'); 10 | const MiniCssExtractPlugin = require('mini-css-extract-plugin'); 11 | const OptimizeCSSPlugin = require('optimize-css-assets-webpack-plugin'); 12 | const UglifyJsPlugin = require('uglifyjs-webpack-plugin'); 13 | const { VueLoaderPlugin } = require('vue-loader'); 14 | 15 | const env = require('../config/prod.env'); 16 | 17 | const webpackConfig = merge(baseWebpackConfig, { 18 | module: { 19 | rules: utils.styleLoaders({ 20 | sourceMap: config.build.productionSourceMap, 21 | extract: true, 22 | usePostCSS: true 23 | }) 24 | }, 25 | mode: 'production', 26 | devtool: config.build.productionSourceMap ? config.build.devtool : false, 27 | output: { 28 | path: config.build.assetsRoot, 29 | filename: utils.assetsPath('js/[name].[chunkhash].js'), 30 | chunkFilename: utils.assetsPath('js/[id].[chunkhash].js') 31 | }, 32 | optimization: { 33 | splitChunks: { 34 | cacheGroups: { 35 | vendor: { 36 | name: 'vendor', 37 | minChunks: 1 38 | }, 39 | manifest: { 40 | name: 'manifest', 41 | minChunks: Infinity 42 | }, 43 | app: { 44 | name: 'app', 45 | minChunks: 3 46 | } 47 | } 48 | } 49 | }, 50 | plugins: [ 51 | // http://vuejs.github.io/vue-loader/en/workflow/production.html 52 | new VueLoaderPlugin(), 53 | new webpack.DefinePlugin({ 54 | 'process.env': env 55 | }), 56 | new UglifyJsPlugin({ 57 | uglifyOptions: { 58 | compress: { 59 | warnings: false 60 | } 61 | }, 62 | sourceMap: config.build.productionSourceMap, 63 | parallel: true 64 | }), 65 | 66 | // Compress extracted CSS. We are using this plugin so that possible 67 | // duplicated CSS from different components can be deduped. 68 | new OptimizeCSSPlugin({ 69 | cssProcessorOptions: config.build.productionSourceMap 70 | ? { safe: true, map: { inline: false } } 71 | : { safe: true } 72 | }), 73 | // generate dist index.html with correct asset hash for caching. 74 | // you can customize output by editing /index.html 75 | // see https://github.com/ampedandwired/html-webpack-plugin 76 | new HtmlWebpackPlugin({ 77 | filename: config.build.index, 78 | template: 'index.html', 79 | inject: true, 80 | minify: { 81 | removeComments: true, 82 | collapseWhitespace: true, 83 | removeAttributeQuotes: true 84 | // more options: 85 | // https://github.com/kangax/html-minifier#options-quick-reference 86 | }, 87 | // necessary to consistently work with multiple chunks via CommonsChunkPlugin 88 | chunksSortMode: 'dependency' 89 | }), 90 | // keep module.id stable when vender modules does not change 91 | new webpack.HashedModuleIdsPlugin(), 92 | // enable scope hoisting 93 | new webpack.optimize.ModuleConcatenationPlugin(), 94 | 95 | new MiniCssExtractPlugin({ 96 | filename: '[name].css', 97 | chunkFilename: '[id].css' 98 | }), 99 | // copy custom static assets 100 | new CopyWebpackPlugin([ 101 | { 102 | from: path.resolve(__dirname, '../static'), 103 | to: config.build.assetsSubDirectory, 104 | ignore: ['.*'] 105 | } 106 | ]) 107 | ] 108 | }); 109 | 110 | if (config.build.productionGzip) { 111 | const CompressionWebpackPlugin = require('compression-webpack-plugin'); 112 | 113 | webpackConfig.plugins.push( 114 | new CompressionWebpackPlugin({ 115 | asset: '[path].gz[query]', 116 | algorithm: 'gzip', 117 | test: new RegExp( 118 | '\\.(' + config.build.productionGzipExtensions.join('|') + ')$' 119 | ), 120 | threshold: 10240, 121 | minRatio: 0.8 122 | }) 123 | ); 124 | } 125 | 126 | if (config.build.bundleAnalyzerReport) { 127 | const BundleAnalyzerPlugin = require('webpack-bundle-analyzer') 128 | .BundleAnalyzerPlugin; 129 | webpackConfig.plugins.push(new BundleAnalyzerPlugin()); 130 | } 131 | 132 | module.exports = webpackConfig; 133 | -------------------------------------------------------------------------------- /config/dev.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | const merge = require('webpack-merge') 3 | const prodEnv = require('./prod.env') 4 | 5 | module.exports = merge(prodEnv, { 6 | NODE_ENV: '"development"' 7 | }) 8 | -------------------------------------------------------------------------------- /config/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // Template version: 1.2.5 3 | // see http://vuejs-templates.github.io/webpack for documentation. 4 | 5 | const path = require('path') 6 | 7 | module.exports = { 8 | dev: { 9 | 10 | // Paths 11 | assetsSubDirectory: 'static', 12 | assetsPublicPath: '/', 13 | proxyTable: {}, 14 | 15 | // Various Dev Server settings 16 | host: 'localhost', // can be overwritten by process.env.HOST 17 | port: 8080, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined 18 | autoOpenBrowser: false, 19 | errorOverlay: true, 20 | notifyOnErrors: true, 21 | poll: false, // https://webpack.js.org/configuration/dev-server/#devserver-watchoptions- 22 | 23 | // Use Eslint Loader? 24 | // If true, your code will be linted during bundling and 25 | // linting errors and warnings will be shown in the console. 26 | useEslint: true, 27 | // If true, eslint errors and warnings will also be shown in the error overlay 28 | // in the browser. 29 | showEslintErrorsInOverlay: false, 30 | 31 | /** 32 | * Source Maps 33 | */ 34 | 35 | // https://webpack.js.org/configuration/devtool/#development 36 | devtool: 'eval-source-map', 37 | 38 | // If you have problems debugging vue-files in devtools, 39 | // set this to false - it *may* help 40 | // https://vue-loader.vuejs.org/en/options.html#cachebusting 41 | cacheBusting: true, 42 | 43 | // CSS Sourcemaps off by default because relative paths are "buggy" 44 | // with this option, according to the CSS-Loader README 45 | // (https://github.com/webpack/css-loader#sourcemaps) 46 | // In our experience, they generally work as expected, 47 | // just be aware of this issue when enabling this option. 48 | cssSourceMap: false, 49 | }, 50 | 51 | build: { 52 | // Template for index.html 53 | index: path.resolve(__dirname, '../dist/index.html'), 54 | 55 | // Paths 56 | assetsRoot: path.resolve(__dirname, '../dist'), 57 | assetsSubDirectory: 'static', 58 | assetsPublicPath: '/', 59 | 60 | /** 61 | * Source Maps 62 | */ 63 | 64 | productionSourceMap: true, 65 | // https://webpack.js.org/configuration/devtool/#production 66 | devtool: '#source-map', 67 | 68 | // Gzip off by default as many popular static hosts such as 69 | // Surge or Netlify already gzip all static assets for you. 70 | // Before setting to `true`, make sure to: 71 | // npm install --save-dev compression-webpack-plugin 72 | productionGzip: false, 73 | productionGzipExtensions: ['js', 'css'], 74 | 75 | // Run the build command with an extra argument to 76 | // View the bundle analyzer report after build finishes: 77 | // `npm run build --report` 78 | // Set to `true` or `false` to always turn it on or off 79 | bundleAnalyzerReport: process.env.npm_config_report 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /config/prod.env.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = { 3 | NODE_ENV: '"production"' 4 | } 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | auth0-kanban 7 | 8 | 9 | 10 | 11 |
12 |
13 |
14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "auth0-kanban", 3 | "version": "1.0.0", 4 | "description": "A Vue.js project", 5 | "author": "Steve Hobbs ", 6 | "private": true, 7 | "scripts": { 8 | "dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js", 9 | "start": "http-server dist/ -a 0.0.0.0 -p 8080", 10 | "lint": "eslint --ext .js,.vue src", 11 | "build": "node build/build.js" 12 | }, 13 | "dependencies": { 14 | "http-server": "^0.11.1" 15 | }, 16 | "devDependencies": { 17 | "@babel/core": "^7.2.2", 18 | "@babel/plugin-proposal-class-properties": "^7.0.0", 19 | "@babel/plugin-proposal-decorators": "^7.0.0", 20 | "@babel/plugin-proposal-export-namespace-from": "^7.0.0", 21 | "@babel/plugin-proposal-function-sent": "^7.0.0", 22 | "@babel/plugin-proposal-json-strings": "^7.0.0", 23 | "@babel/plugin-proposal-numeric-separator": "^7.0.0", 24 | "@babel/plugin-proposal-throw-expressions": "^7.0.0", 25 | "@babel/plugin-syntax-dynamic-import": "^7.0.0", 26 | "@babel/plugin-syntax-import-meta": "^7.0.0", 27 | "@babel/plugin-transform-runtime": "^7.0.0", 28 | "@babel/preset-env": "^7.3.1", 29 | "@babel/runtime": "^7.3.1", 30 | "autoprefixer": "^9.4.7", 31 | "babel-eslint": "^10.0.1", 32 | "babel-loader": "^8.0.5", 33 | "chalk": "^2.4.2", 34 | "copy-webpack-plugin": "^4.6.0", 35 | "css-loader": "^2.1.0", 36 | "eslint": "^5.13.0", 37 | "eslint-config-airbnb-base": "13.1.0", 38 | "eslint-friendly-formatter": "^4.0.1", 39 | "eslint-import-resolver-webpack": "0.11.0", 40 | "eslint-loader": "^2.1.2", 41 | "eslint-plugin-html": "^5.0.3", 42 | "eslint-plugin-import": "2.16.0", 43 | "eslint-plugin-vue": "^5.1.0", 44 | "eventsource-polyfill": "^0.9.6", 45 | "extract-text-webpack-plugin": "^3.0.0", 46 | "file-loader": "^3.0.1", 47 | "friendly-errors-webpack-plugin": "^1.6.1", 48 | "html-webpack-plugin": "^3.2.0", 49 | "mini-css-extract-plugin": "^0.5.0", 50 | "node-notifier": "^5.4.0", 51 | "optimize-css-assets-webpack-plugin": "^5.0.1", 52 | "ora": "^3.0.0", 53 | "portfinder": "^1.0.20", 54 | "postcss-import": "^12.0.1", 55 | "postcss-loader": "^3.0.0", 56 | "rimraf": "^2.6.3", 57 | "semver": "^5.6.0", 58 | "shelljs": "^0.8.3", 59 | "uglifyjs-webpack-plugin": "^2.1.1", 60 | "url-loader": "^1.1.2", 61 | "vue": "^2.6.3", 62 | "vue-loader": "^15.6.2", 63 | "vue-router": "^3.0.2", 64 | "vue-style-loader": "^4.1.2", 65 | "vue-template-compiler": "^2.6.3", 66 | "vuedraggable": "^2.17.0", 67 | "vuex": "^3.1.0", 68 | "webpack": "^4.29.3", 69 | "webpack-bundle-analyzer": "^3.0.3", 70 | "webpack-cli": "^3.2.3", 71 | "webpack-dev-server": "^3.1.14", 72 | "webpack-merge": "^4.2.1" 73 | }, 74 | "engines": { 75 | "node": ">= 4.0.0", 76 | "npm": ">= 3.0.0" 77 | }, 78 | "browserslist": [ 79 | "> 1%", 80 | "last 2 versions", 81 | "not ie <= 8" 82 | ] 83 | } 84 | -------------------------------------------------------------------------------- /screenshots/kanban-backlog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevehobbsdev/kanban-board/a14cb448e6aaead8fe0bb8276bf250b9cc0ce462/screenshots/kanban-backlog.png -------------------------------------------------------------------------------- /screenshots/kanban-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevehobbsdev/kanban-board/a14cb448e6aaead8fe0bb8276bf250b9cc0ce462/screenshots/kanban-board.png -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 24 | 25 | 42 | -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevehobbsdev/kanban-board/a14cb448e6aaead8fe0bb8276bf250b9cc0ce462/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Backlog.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 71 | -------------------------------------------------------------------------------- /src/components/KanbanBoard.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 33 | -------------------------------------------------------------------------------- /src/components/MenuBar.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 30 | 31 | 36 | -------------------------------------------------------------------------------- /src/components/NewItemForm.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 30 | 31 | 50 | -------------------------------------------------------------------------------- /src/components/TaskLane.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 48 | 49 | 54 | -------------------------------------------------------------------------------- /src/components/TaskLaneItem.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 18 | 19 | 24 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | // The Vue build version to load with the `import` command 2 | // (runtime-only or standalone) has been set in webpack.base.conf with an alias. 3 | import Vue from 'vue'; 4 | import App from './App'; 5 | import router from './router'; 6 | import store from './store'; 7 | 8 | Vue.config.productionTip = false; 9 | 10 | /* eslint-disable no-new */ 11 | new Vue({ 12 | el: '#app', 13 | router, 14 | store, 15 | template: '', 16 | components: { App } 17 | }); 18 | -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import Router from 'vue-router'; 3 | import Backlog from '@/components/Backlog'; 4 | import KanbanBoard from '@/components/KanbanBoard'; 5 | 6 | Vue.use(Router); 7 | 8 | export default new Router({ 9 | routes: [ 10 | { 11 | path: '/backlog', 12 | component: Backlog 13 | }, 14 | { 15 | path: '/board', 16 | component: KanbanBoard 17 | }, 18 | { 19 | path: '*', 20 | redirect: '/backlog' 21 | } 22 | ], 23 | }); 24 | -------------------------------------------------------------------------------- /src/store.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue'; 2 | import Vuex from 'vuex'; 3 | 4 | Vue.use(Vuex); 5 | 6 | /* eslint-disable no-param-reassign */ 7 | export default new Vuex.Store({ 8 | state: { 9 | items: { 10 | todo: [], 11 | inProgress: [], 12 | done: [] 13 | }, 14 | nextId: 1 15 | }, 16 | mutations: { 17 | addItem(state, item) { 18 | state.items.todo.push(Object.assign(item, { id: state.nextId })); 19 | state.nextId += 1; 20 | }, 21 | updateItems(state, { items, id }) { 22 | state.items[id] = items; 23 | } 24 | } 25 | }); 26 | -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevehobbsdev/kanban-board/a14cb448e6aaead8fe0bb8276bf250b9cc0ce462/static/.gitkeep --------------------------------------------------------------------------------