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

Connect to store and display block types #17

Merged
merged 12 commits into from
Mar 8, 2018
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
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
[ "env", {"modules": false} ],
"stage-2"
],
"plugins": ["transform-runtime"],
"plugins": ["transform-runtime", "transform-decorators"],
"comments": false
}
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/dist
*.ts
117 changes: 117 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@
"author": "BrewPi B.V.",
"private": true,
"scripts": {
"lint": "eslint --ext .js,.vue,.ts src",
"eslint": "eslint --ext .js,.vue src",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"lint": "npm run eslint && npm run tslint",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"vue-class-component": "^6.2.0",
"vue-i18n": "^7.3.3",
"vuex-typescript": "^3.0.2"
},
"devDependencies": {
"@types/core-js": "^0.9.46",
"babel-eslint": "8.2.1",
"babel-plugin-transform-decorators": "^6.24.1",
"connect-api-mocker": "^1.3.6",
"eslint": "4.15.0",
"eslint-config-airbnb-base": "11.3.0",
Expand All @@ -27,6 +31,8 @@
"eslint-plugin-vue": "4.0.0",
"quasar-cli": "^0.15.0-beta.36",
"ts-loader": "^3.5.0",
"tslint": "^5.9.1",
"tslint-config-airbnb": "^5.7.0",
"typescript": "^2.7.1",
"typescript-eslint-parser": "^13.0.0"
},
Expand Down
10 changes: 5 additions & 5 deletions quasar.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,17 +36,17 @@ module.exports = ctx => ({

// add custom loaders
cfg.module.rules.push({
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules|quasar)/,
}, {
test: /\.tsx?$/,
loader: 'ts-loader',
exclude: /node_modules/,
options: {
appendTsSuffixTo: [/\.vue$/],
},
}, {
enforce: 'pre',
test: /\.(js|vue)$/,
loader: 'eslint-loader',
exclude: /(node_modules|quasar)/,
});
},
},
Expand Down
26 changes: 26 additions & 0 deletions src/components/blocks/OneWireTempSensor/OneWireTempSensor.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import Vue from 'vue';
import Component from 'vue-class-component';

import { getById } from '../../../store/blocks/OneWireTempSensor/getters';

@Component({
props: {
id: {
default: '',
type: String,
},
},
})
export default class OneWireTempSensor extends Vue {
get blockData() {
return getById(this.$props.id);
}

get settings() {
return this.blockData.settings;
}

get state() {
return this.blockData.state;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,7 @@
</q-card>
</template>

<script>
import Vue from 'vue';

export default Vue.extend({
name: 'one-wire-temp-sensor',
props: {
id: String,
settings: {
address: String,
offset: Number,
},
state: {
value: Number,
connected: Boolean,
},
},
});
</script>
<script lang="ts" src="./OneWireTempSensor.ts" />

<style scoped>

Expand Down
22 changes: 22 additions & 0 deletions src/components/blocks/SetPointSimple/SetPointSimple.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import Vue from 'vue';
import Component from 'vue-class-component';

import { getById } from '../../../store/blocks/SetPointSimple/getters';

@Component({
props: {
id: {
default: '',
type: String,
},
},
})
export default class SetPointSimple extends Vue {
get blockData() {
return getById(this.$props.id);
}

get settings() {
return this.blockData.settings;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,4 @@
</q-card>
</template>

<script>
import Vue from 'vue';

export default Vue.extend({
name: 'set-point-simple',
props: {
id: String,
settings: {
value: Number,
},
},
});
</script>

<style scoped>

</style>
<script lang="ts" src="./SetPointSimple.ts"></script>
24 changes: 0 additions & 24 deletions src/components/blocks/block.ts

This file was deleted.

39 changes: 39 additions & 0 deletions src/components/blocks/block.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<template>
<component
:is="type"
:id="blockId"
/>
</template>

<script lang="ts">
import Vue from 'vue';

import { blockById } from '../../store/blocks/getters';

const blockTypes = {
OneWireTempSensor: () => import('./OneWireTempSensor/default.vue'),
SetPointSimple: () => import('./SetPointSimple/default.vue'),
};

export default Vue.extend({
name: 'block',
components: { ...blockTypes },
props: {
blockId: {
default: '',
type: String,
},
},
computed: {
type(): string {
const type = blockById(this.$props.blockId).type;

if (Object.keys(blockTypes).indexOf(type) === -1) {
throw new Error(`'${type}' is not a valid block type`);
}

return type;
},
},
});
</script>
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ Vue.use(Quasar, {
});

const app = new Vue({
el: '#q-app',
router,
store,
el: '#q-app',
render: h => h(App),
});

Expand Down
Loading