Added calculation model

This commit is contained in:
Moritz Kröger 2017-08-13 21:42:02 +02:00
parent 789fb55422
commit b21fe3f9df
6 changed files with 245 additions and 189 deletions

View file

@ -25,7 +25,7 @@
</template>
<script>
import { getAllTheses } from '@/utils/data'
import { getAllTheses } from '@/data'
export default {
name: 'Emphasis',

View file

@ -25,7 +25,7 @@
</template>
<script>
import { getAllOptions, getThesis, getThesesCount } from '@/utils/data'
import { getAllOptions, getThesis, getThesesCount } from '@/data'
import Progress from '@/components/progress'
export default {
@ -71,12 +71,12 @@
}
const thesis = getThesis(this.currentThesis)
this.answers.push({ thesis, option })
this.answers.push({ thesis: thesis.id, position: option.position })
this.currentThesis += 1
event && event.target.blur()
},
forwardToResults () {
localStorage.setItem('euromat-results', JSON.stringify(this.answers))
localStorage.setItem('euromat-answers', JSON.stringify(this.answers))
this.$router.push({ path: '/thesen/gewichtung' })
}
}

View file

@ -5,20 +5,27 @@
</header>
<ul class="party-results">
<li v-for="party in parties">
<h2>{{ party.token }}</h2>
<svgicon :name="getPartyLogoName(party.token)" width="50" height="50" />
<party-percentage :value="getPartyMatch(party)" :max="thesesCount" />
<li v-for="item of results">
<h2>{{ item.token }} ({{ getScorePercentage(item.score) }} %)</h2>
<!-- <svgicon :name="getPartyLogoName(item.token)" width="50" height="50" /> -->
<party-percentage
:value="getScorePercentage(item.score)"
:max="totalScoredPoints" />
</li>
</ul>
</section>
</template>
<script>
import { getParties, getParty, getThesesCount } from '@/utils/data'
import * as SCORING from '@/app/euromat/scoring'
import { getParties, getThesesCount } from '@/data'
import Progress from '@/components/progress'
import '@/assets/icons'
// FIXME: There is a bug that not all theses are send to localStorage.
// We have 43 theses now, but only 42 are stored. Hence I check if
// answers is even an object.
export default {
name: 'Results',
@ -28,31 +35,76 @@
data () {
return {
answers: [],
emphasized: [],
results: [],
thesesCount: getThesesCount(),
parties: getParties()
parties: getParties(),
totalScoredPoints: 0
}
},
methods: {
getPartyMatch (party) {
const { positions } = getParty(party.token)
return this.results
.filter(answer =>
answer.option.position === positions[answer.thesis.id].position)
.length
},
getPartyLogoName (token) {
return `${token.toLowerCase()}-logo`
},
getScorePercentage (score) {
console.log(score, this.totalScoredPoints)
return (score / this.totalScoredPoints * 100).toFixed(2)
},
sortResults () {
return this.parties
.map(party => ({
token: party.token,
score: party.positions
.map(this.countScoring)
.reduce((a, b) => a + b, 0)
}))
.sort((a, b) => a.score - b.score)
.reverse()
},
countScoring (partyConfig) {
const answer = this.answers.find(answer => answer.thesis === partyConfig.thesis)
if (!answer || answer.position === 'skipped') {
return SCORING.MIN_POINTS
}
let score = 0
const hasEmphasis = !!this.emphasized.find(e => e.id === answer.thesis)
const user = answer.position
const party = partyConfig.position
if (user === party) {
score = SCORING.MAX_POINTS
} else if (
(user === 'positive' && party === 'neutral') ||
(user === 'neutral' && party === 'positive') ||
(user === 'negative' && party === 'neutral')
) {
score = SCORING.BASE_POINTS
} else if (
(user === 'positive' && party === 'negative') ||
(user === 'neutral' && party === 'negative') ||
(user === 'negative' && party === 'positive')
) {
score = SCORING.MIN_POINTS
}
score = hasEmphasis ? score * SCORING.EMPHASIS_POINTS : score
this.totalScoredPoints += score
return score
}
},
mounted () {
const results = JSON.parse(localStorage.getItem('euromat-results'))
if (results) {
this.results = results
}
console.log(this.results)
created () {
const emphasized = JSON.parse(localStorage.getItem('euromat-emphasized'))
const answers = JSON.parse(localStorage.getItem('euromat-answers'))
if (emphasized) this.emphasized = emphasized
if (answers) this.answers = answers
this.results = this.sortResults()
}
}
</script>

View file

@ -0,0 +1,4 @@
export const MAX_POINTS = 2
export const BASE_POINTS = 1
export const MIN_POINTS = 0
export const EMPHASIS_POINTS = 2

View file

@ -1,6 +1,6 @@
import options from '@/data/options'
import theses from '@/data/theses'
import parties from '@/data/parties'
import options from './options'
import theses from './theses'
import parties from './parties'
export const getOption = position =>
options.find(o => o.position === position)

File diff suppressed because it is too large Load diff