Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Improve template" #3

Merged
merged 1 commit into from
Feb 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion template/build/webpack.base.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ module.exports = {
'src': path.resolve(__dirname, '../src'),
'assets': path.resolve(__dirname, '../src/assets'),
'components': path.resolve(__dirname, '../src/components'),
'views': path.resolve(__dirname, '../src/views'),
'settings': path.resolve(__dirname, '../settings'),
'locales': path.resolve(__dirname, '../locales'),
'data': path.resolve(__dirname, '../src/data'),
Expand Down
2 changes: 1 addition & 1 deletion template/locales/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import store from 'src/store'
import store from 'src/vuex/store'

Vue.use(VueI18n)
Vue.config.lang = store.state.lang
Expand Down
3 changes: 1 addition & 2 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@
"vue": "^2.0.0",
"vue-i18n": "^4.5.0",
"vue-router": "^2.0.0",
"vuex": "^2.0.0",
"vuex-router-sync": "^3.0.0"
"vuex": "^1.0.0-rc.2"
},
"devDependencies": {
"babel-core": "^6.0.0",
Expand Down
5 changes: 2 additions & 3 deletions template/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<template>
<div id="app">
<menu-app></menu-app>
<transition name="fade" mode="out-in">
<!-- <transition name="default"> -->
<router-view></router-view>
</transition>
<!-- <transition> -->
</div>
</template>

Expand All @@ -26,4 +26,3 @@
</script>

<style lang="scss" src="assets/styles/app.scss"></style>
<style lang="scss" src="src/transitions/fade.scss"></style>
Binary file added template/src/assets/fonts/futura/FuturaBkBt.otf
Binary file not shown.
Binary file added template/src/assets/fonts/futura/FuturaBkBt.ttf
Binary file not shown.
Binary file not shown.
288 changes: 288 additions & 0 deletions template/src/assets/fonts/glyphicons/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion template/src/assets/styles/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ body {
color: $green;
max-width: 250px;
height: 400px;
font-family: 'Open Sans', Helvetica, sans-serif;
font-family: 'Futura', Helvetica, sans-serif;
text-align: center;
position: relative;

Expand Down
14 changes: 12 additions & 2 deletions template/src/assets/styles/fonts.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
@font-face {
font-family: 'Futura';
src: url('~assets/fonts/futura/FuturaBkBt.otf');
src: url('~assets/fonts/futura/FuturaBkBt.ttf') format('truetype')
}

@font-face {
font-family: 'Open Sans', sans-serif;
font-family: 'Glyphicons Halflings';
src: url('~assets/fonts/glyphicons/glyphicons-halflings-regular.eot');
src: url('~assets/fonts/glyphicons/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
url('~assets/fonts/glyphicons/glyphicons-halflings-regular.woff2') format('woff2'),
url('~assets/fonts/glyphicons/glyphicons-halflings-regular.woff') format('woff'),
url('~assets/fonts/glyphicons/glyphicons-halflings-regular.ttf') format('truetype'),
url('~assets/fonts/glyphicons/glyphicons-halflings-regular.svg#@{icon-font-svg-id}') format('svg');
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@

<script>

import { getSeed } from 'src/vuex/getters'

export default {
name: 'Garden',
computed: {
seedNumber() {
return this.$store.state.seed
vuex: {
getters: {
seedNumber: getSeed
}
}
}
Expand Down
File renamed without changes.
18 changes: 8 additions & 10 deletions template/src/components/LangSwitcher.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,17 @@

<script>

import { getLang } from 'src/vuex/getters'
import { translate } from 'src/vuex/actions'

export default {
name: 'LangSwitcher',
computed: {
lang() {
return this.$store.state.lang
}
},
methods: {
translate: function (lang) {
this.$store.dispatch('translate', lang)
vuex: {
getters: {
lang: getLang
},
pullUp: function () {
this.$store.dispatch('translate', lang)
actions: {
translate
}
}
}
Expand Down
18 changes: 8 additions & 10 deletions template/src/views/Plant.vue → template/src/components/Plant.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

<script>

import { plant, pullUp } from 'src/vuex/actions'
import { getSeed } from 'src/vuex/getters'
import settings from 'lib/settings'

export default {
Expand All @@ -19,17 +21,13 @@
minSeed: 0
}
},
computed: {
seedNumber() {
return this.$store.state.seed
}
},
methods: {
plant: function () {
this.$store.dispatch('plant')
vuex: {
getters: {
seedNumber: getSeed
},
pullUp: function () {
this.$store.dispatch('pullUp')
actions: {
plant,
pullUp
}
}
}
Expand Down
Empty file removed template/src/data/.gitkeep
Empty file.
6 changes: 3 additions & 3 deletions template/src/router/routes.js → template/src/data/routes.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Home from 'views/Home'
import Plant from 'views/Plant'
import Garden from 'views/Garden'
import Home from 'components/Home'
import Plant from 'components/Plant'
import Garden from 'components/Garden'

module.exports = [
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import Vue from 'vue'
import VueRouter from 'vue-router'
import routes from './routes'
import routes from 'data/routes'

Vue.use(VueRouter)

Expand Down
5 changes: 3 additions & 2 deletions template/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ import App from 'src/App'

// Global vue stuffs
import 'gsap'
import 'src/transitions'
import 'locales/index'

// Routing
import router from 'src/router'
import router from 'lib/router'

// Store
import store from 'src/store'
import store from 'src/vuex/store'

new Vue({
el: '#app',
Expand Down
43 changes: 0 additions & 43 deletions template/src/store/index.js

This file was deleted.

52 changes: 52 additions & 0 deletions template/src/transitions/default.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
import Vue from 'vue'

Vue.component('default', {
css: false,
template: '\
<transition\
name="default"\
mode="out-in"\
v-on:before-enter="beforeEnter"\
v-on:enter="enter"\
v-on:after-enter="afterEnter"\
v-on:enter-cancelled="enterCancelled"\
v-on:before-leave="beforeLeave"\
v-on:leave="leave"\
v-on:after-leave="afterLeave"\
v-on:leave-cancelled="leaveCancelled"\
>\
<slot></slot>\
</transition>\
',
methods: {
beforeEnter: function (el) {
// ...
},
enter: function (el, done) {
TweenMax.fromTo(el, 0.5, {opacity: 0}, {opacity: 1, onComplete: function () {
done()
}}).delay(0.2)
},
afterEnter: function (el) {
// ...
},
enterCancelled: function (el) {
// ...
},

beforeLeave: function (el) {
// ...
},
leave: function (el, done) {
TweenMax.fromTo(el, 0.2, {opacity: 1}, {opacity: 0, onComplete: function () {
done()
}})
},
afterLeave: function (el) {
// ...
},
leaveCancelled: function (el) {
// ...
}
}
})
6 changes: 0 additions & 6 deletions template/src/transitions/fade.scss

This file was deleted.

1 change: 1 addition & 0 deletions template/src/transitions/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import './default'
10 changes: 0 additions & 10 deletions template/src/transitions/slide-fade.scss

This file was deleted.

Empty file removed template/src/utils/.gitkeep
Empty file.
11 changes: 11 additions & 0 deletions template/src/vuex/actions.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
export const plant = function ({ dispatch, state }) {
dispatch('PLANT', 1)
}

export const pullUp = function ({ dispatch, state }) {
dispatch('PULL_UP', 1)
}

export const translate = function ({ dispatch, state }, lang) {
dispatch('TRANSLATE', lang)
}
2 changes: 2 additions & 0 deletions template/src/vuex/getters.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export const getSeed = state => state.seed
export const getLang = state => state.lang
34 changes: 34 additions & 0 deletions template/src/vuex/store.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
import Vue from 'vue'
import Vuex from 'vuex'

import settings from 'lib/settings.js'

// Make vue aware of Vuex
Vue.use(Vuex)

// Create an object to hold the initial state when
// the app starts up
const state = {
seed: settings.seed.default,
lang: settings.lang
}

// Create an object storing various mutations. We will write the mutation
const mutations = {
PLANT (state, amount) {
state.seed = state.seed - amount
},
PULL_UP (state, amount) {
state.seed = state.seed + amount
},
TRANSLATE (state, lang) {
state.lang = lang
}
}

// Combine the initial state and the mutations to create a Vuex store.
// This store can be linked to our app.
export default new Vuex.Store({
state,
mutations
})