2018-02-14 13:36:30 +01:00
|
|
|
<template>
|
|
|
|
<div class="mk-poll-editor">
|
|
|
|
<p class="caution" v-if="choices.length < 2">
|
2018-11-08 19:44:35 +01:00
|
|
|
<fa icon="exclamation-triangle"/>{{ $t('no-only-one-choice') }}
|
2018-02-14 13:36:30 +01:00
|
|
|
</p>
|
|
|
|
<ul ref="choices">
|
2018-02-21 21:57:24 +01:00
|
|
|
<li v-for="(choice, i) in choices">
|
2018-11-09 14:11:11 +01:00
|
|
|
<input :value="choice" @input="onInput(i, $event)" :placeholder="$t('choice-n').replace('{}', i + 1)">
|
2018-11-08 19:44:35 +01:00
|
|
|
<button @click="remove(i)" :title="$t('remove')">
|
2018-11-05 17:40:11 +01:00
|
|
|
<fa icon="times"/>
|
2018-02-14 13:36:30 +01:00
|
|
|
</button>
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-11-08 19:44:35 +01:00
|
|
|
<button class="add" v-if="choices.length < 10" @click="add">{{ $t('add') }}</button>
|
2019-03-06 14:55:47 +01:00
|
|
|
<button class="add" v-else disabled>{{ $t('no-more') }}</button>
|
2018-11-08 19:44:35 +01:00
|
|
|
<button class="destroy" @click="destroy" :title="$t('destroy')">
|
2018-11-05 17:40:11 +01:00
|
|
|
<fa icon="times"/>
|
2018-02-14 13:36:30 +01:00
|
|
|
</button>
|
2019-03-06 14:55:47 +01:00
|
|
|
<section>
|
|
|
|
<ui-switch v-model="multiple">{{ $t('multiple') }}</ui-switch>
|
|
|
|
<div>
|
|
|
|
<ui-select v-model="expiration">
|
|
|
|
<template #label>{{ $t('expiration') }}</template>
|
|
|
|
<option value="infinite">{{ $t('infinite') }}</option>
|
|
|
|
<option value="at">{{ $t('at') }}</option>
|
|
|
|
<option value="after">{{ $t('after') }}</option>
|
|
|
|
</ui-select>
|
|
|
|
<section v-if="expiration === 'at'">
|
|
|
|
<ui-input v-model="atDate" type="date">{{ $t('deadline-date') }}</ui-input>
|
|
|
|
<ui-input v-model="atTime" type="time">{{ $t('deadline-time') }}</ui-input>
|
|
|
|
</section>
|
|
|
|
<section v-if="expiration === 'after'">
|
|
|
|
<ui-input v-model="after" type="number">{{ $t('interval') }}</ui-input>
|
|
|
|
<ui-select v-model="unit">
|
|
|
|
<template #label>{{ $t('unit') }}</template>
|
|
|
|
<option value="second">{{ $t('second') }}</option>
|
|
|
|
<option value="minute">{{ $t('minute') }}</option>
|
|
|
|
<option value="hour">{{ $t('hour') }}</option>
|
|
|
|
<option value="day">{{ $t('day') }}</option>
|
|
|
|
</ui-select>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</section>
|
2018-02-14 13:36:30 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
2019-03-06 14:55:47 +01:00
|
|
|
import * as moment from 'moment';
|
2018-11-08 19:44:35 +01:00
|
|
|
import i18n from '../../../i18n';
|
2018-09-06 17:02:55 +02:00
|
|
|
import { erase } from '../../../../../prelude/array';
|
2018-02-14 13:36:30 +01:00
|
|
|
export default Vue.extend({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('common/views/components/poll-editor.vue'),
|
2018-02-14 13:36:30 +01:00
|
|
|
data() {
|
|
|
|
return {
|
2019-03-06 14:55:47 +01:00
|
|
|
choices: ['', ''],
|
|
|
|
multiple: false,
|
|
|
|
expiration: 'infinite',
|
|
|
|
atDate: moment().add(1, 'day').toISOString().split('T')[0],
|
|
|
|
atTime: '00:00',
|
|
|
|
after: 0,
|
|
|
|
unit: 'second'
|
2018-02-14 13:36:30 +01:00
|
|
|
};
|
|
|
|
},
|
2018-02-21 21:57:24 +01:00
|
|
|
watch: {
|
|
|
|
choices() {
|
|
|
|
this.$emit('updated');
|
|
|
|
}
|
|
|
|
},
|
2018-02-14 13:36:30 +01:00
|
|
|
methods: {
|
|
|
|
onInput(i, e) {
|
2018-02-20 17:23:25 +01:00
|
|
|
Vue.set(this.choices, i, e.target.value);
|
2018-02-14 13:36:30 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
add() {
|
|
|
|
this.choices.push('');
|
2018-02-21 21:57:24 +01:00
|
|
|
this.$nextTick(() => {
|
|
|
|
(this.$refs.choices as any).childNodes[this.choices.length - 1].childNodes[0].focus();
|
|
|
|
});
|
2018-02-14 13:36:30 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
remove(i) {
|
|
|
|
this.choices = this.choices.filter((_, _i) => _i != i);
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy() {
|
|
|
|
this.$emit('destroyed');
|
|
|
|
},
|
|
|
|
|
|
|
|
get() {
|
2019-03-06 14:55:47 +01:00
|
|
|
const at = () => {
|
|
|
|
const [date] = moment(this.atDate).toISOString().split('T');
|
|
|
|
const [hour, minute] = this.atTime.split(':');
|
|
|
|
return moment(`${date}T${hour}:${minute}Z`).valueOf();
|
|
|
|
};
|
|
|
|
|
|
|
|
const after = () => {
|
|
|
|
let base = parseInt(this.after);
|
|
|
|
switch (this.unit) {
|
|
|
|
case 'day': base *= 24;
|
|
|
|
case 'hour': base *= 60;
|
|
|
|
case 'minute': base *= 60;
|
|
|
|
case 'second': return base *= 1000;
|
|
|
|
default: return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-02-14 13:36:30 +01:00
|
|
|
return {
|
2019-03-06 14:55:47 +01:00
|
|
|
choices: erase('', this.choices),
|
|
|
|
multiple: this.multiple,
|
|
|
|
...(
|
|
|
|
this.expiration === 'at' ? { expiresAt: at() } :
|
|
|
|
this.expiration === 'after' ? { expiredAfter: after() } : {})
|
|
|
|
};
|
2018-02-14 13:36:30 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
set(data) {
|
|
|
|
if (data.choices.length == 0) return;
|
|
|
|
this.choices = data.choices;
|
2018-02-21 21:57:24 +01:00
|
|
|
if (data.choices.length == 1) this.choices = this.choices.concat('');
|
2019-03-06 14:55:47 +01:00
|
|
|
this.multiple = data.multiple;
|
|
|
|
if (data.expiresAt) {
|
|
|
|
this.expiration = 'at';
|
|
|
|
this.atDate = this.atTime = data.expiresAt;
|
|
|
|
} else if (typeof data.expiredAfter === 'number') {
|
|
|
|
this.expiration = 'after';
|
|
|
|
this.after = data.expiredAfter;
|
|
|
|
} else {
|
|
|
|
this.expiration = 'infinite';
|
|
|
|
}
|
2018-02-14 13:36:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 05:10:15 +02:00
|
|
|
.mk-poll-editor
|
2018-02-14 13:36:30 +01:00
|
|
|
padding 8px
|
|
|
|
|
|
|
|
> .caution
|
|
|
|
margin 0 0 8px 0
|
|
|
|
font-size 0.8em
|
|
|
|
color #f00
|
|
|
|
|
2018-11-05 17:40:11 +01:00
|
|
|
> [data-icon]
|
2018-02-14 13:36:30 +01:00
|
|
|
margin-right 4px
|
|
|
|
|
|
|
|
> ul
|
|
|
|
display block
|
|
|
|
margin 0
|
|
|
|
padding 0
|
|
|
|
list-style none
|
|
|
|
|
|
|
|
> li
|
|
|
|
display block
|
|
|
|
margin 8px 0
|
|
|
|
padding 0
|
|
|
|
width 100%
|
|
|
|
|
|
|
|
&:first-child
|
|
|
|
margin-top 0
|
|
|
|
|
|
|
|
&:last-child
|
|
|
|
margin-bottom 0
|
|
|
|
|
|
|
|
> input
|
2018-02-24 19:05:29 +01:00
|
|
|
padding 6px 8px
|
|
|
|
width 300px
|
|
|
|
font-size 14px
|
2018-09-27 15:50:34 +02:00
|
|
|
color var(--inputText)
|
2018-09-28 05:10:15 +02:00
|
|
|
background var(--pollEditorInputBg)
|
2018-09-26 13:19:35 +02:00
|
|
|
border solid 1px var(--primaryAlpha01)
|
2018-02-14 13:36:30 +01:00
|
|
|
border-radius 4px
|
|
|
|
|
|
|
|
&:hover
|
2018-09-26 13:19:35 +02:00
|
|
|
border-color var(--primaryAlpha02)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
&:focus
|
2018-09-26 13:19:35 +02:00
|
|
|
border-color var(--primaryAlpha05)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
> button
|
|
|
|
padding 4px 8px
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha04)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
&:hover
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha06)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
&:active
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryDarken30)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
> .add
|
|
|
|
margin 8px 0 0 0
|
|
|
|
vertical-align top
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primary)
|
2019-03-06 14:55:47 +01:00
|
|
|
z-index 1
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
> .destroy
|
|
|
|
position absolute
|
|
|
|
top 0
|
|
|
|
right 0
|
|
|
|
padding 4px 8px
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha04)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
&:hover
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryAlpha06)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
|
|
|
&:active
|
2018-09-26 13:19:35 +02:00
|
|
|
color var(--primaryDarken30)
|
2018-02-14 13:36:30 +01:00
|
|
|
|
2019-03-06 14:55:47 +01:00
|
|
|
> section
|
|
|
|
margin 16px 0 -16px 0
|
|
|
|
|
|
|
|
> div
|
|
|
|
margin 0 8px
|
|
|
|
|
|
|
|
&:last-child
|
|
|
|
flex 1 0 auto
|
|
|
|
|
|
|
|
> section
|
|
|
|
align-items center
|
|
|
|
display flex
|
|
|
|
margin -32px 0 0
|
|
|
|
|
|
|
|
> :first-child
|
|
|
|
margin-right 16px
|
|
|
|
|
|
|
|
> .ui-input
|
|
|
|
flex 1 0 auto
|
2018-02-14 13:36:30 +01:00
|
|
|
</style>
|