2019-06-18 20:28:31 +00:00
|
|
|
<template>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
v-if="visible"
|
|
|
|
class="poll-form"
|
|
|
|
>
|
|
|
|
<div
|
|
|
|
v-for="(option, index) in options"
|
|
|
|
:key="index"
|
|
|
|
class="poll-option"
|
|
|
|
>
|
2019-06-18 20:28:31 +00:00
|
|
|
<div class="input-container">
|
|
|
|
<input
|
2019-07-05 07:17:44 +00:00
|
|
|
:id="`poll-${index}`"
|
|
|
|
v-model="options[index]"
|
2020-10-20 23:07:05 +00:00
|
|
|
size="1"
|
2019-06-18 20:28:31 +00:00
|
|
|
class="poll-option-input"
|
|
|
|
type="text"
|
|
|
|
:placeholder="$t('polls.option')"
|
|
|
|
:maxlength="maxLength"
|
|
|
|
@change="updatePollToParent"
|
|
|
|
@keydown.enter.stop.prevent="nextOption(index)"
|
|
|
|
>
|
|
|
|
</div>
|
2021-01-20 15:36:40 +00:00
|
|
|
<button
|
2019-07-05 07:17:44 +00:00
|
|
|
v-if="options.length > 2"
|
2021-01-20 15:36:40 +00:00
|
|
|
class="delete-option button-unstyled -hover-highlight"
|
|
|
|
@click="deleteOption(index)"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2021-01-20 15:36:40 +00:00
|
|
|
<FAIcon icon="times" />
|
|
|
|
</button>
|
2019-06-18 20:28:31 +00:00
|
|
|
</div>
|
2021-01-20 15:36:40 +00:00
|
|
|
<button
|
2019-06-18 20:28:31 +00:00
|
|
|
v-if="options.length < maxOptions"
|
2021-01-20 15:36:40 +00:00
|
|
|
class="add-option faint button-unstyled -hover-highlight"
|
2019-06-18 20:28:31 +00:00
|
|
|
@click="addOption"
|
|
|
|
>
|
2020-10-20 21:31:16 +00:00
|
|
|
<FAIcon
|
|
|
|
icon="plus"
|
|
|
|
size="sm"
|
|
|
|
/>
|
2020-10-19 16:38:49 +00:00
|
|
|
|
2019-06-18 20:28:31 +00:00
|
|
|
{{ $t("polls.add_option") }}
|
2021-01-20 15:36:40 +00:00
|
|
|
</button>
|
2019-06-18 20:28:31 +00:00
|
|
|
<div class="poll-type-expiry">
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
class="poll-type"
|
|
|
|
:title="$t('polls.type')"
|
|
|
|
>
|
2021-03-11 14:11:44 +00:00
|
|
|
<Select
|
2021-03-11 14:31:15 +00:00
|
|
|
class="poll-type-select"
|
|
|
|
unstyled="true"
|
2021-03-11 14:11:44 +00:00
|
|
|
v-model="pollType"
|
|
|
|
@change="updatePollToParent"
|
2019-07-05 07:17:44 +00:00
|
|
|
>
|
2021-03-11 14:11:44 +00:00
|
|
|
<option value="single">{{ $t('polls.single_choice') }}</option>
|
|
|
|
<option value="multiple">{{ $t('polls.multiple_choices') }}</option>
|
|
|
|
</Select>
|
2019-06-18 20:28:31 +00:00
|
|
|
</div>
|
2019-07-05 07:17:44 +00:00
|
|
|
<div
|
|
|
|
class="poll-expiry"
|
|
|
|
:title="$t('polls.expiry')"
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
v-model="expiryAmount"
|
2019-06-18 20:28:31 +00:00
|
|
|
type="number"
|
|
|
|
class="expiry-amount hide-number-spinner"
|
|
|
|
:min="minExpirationInCurrentUnit"
|
|
|
|
:max="maxExpirationInCurrentUnit"
|
|
|
|
@change="expiryAmountChange"
|
|
|
|
>
|
2021-03-11 14:11:44 +00:00
|
|
|
<Select
|
|
|
|
v-model="expiryUnit"
|
2021-03-11 14:31:15 +00:00
|
|
|
unstyled="true"
|
2021-03-11 14:11:44 +00:00
|
|
|
class="expiry-unit"
|
|
|
|
@change="expiryAmountChange"
|
|
|
|
>
|
|
|
|
<option
|
|
|
|
v-for="unit in expiryUnits"
|
|
|
|
:key="unit"
|
|
|
|
:value="unit"
|
2019-06-18 20:28:31 +00:00
|
|
|
>
|
2021-03-11 14:11:44 +00:00
|
|
|
{{ $t(`time.${unit}_short`, ['']) }}
|
|
|
|
</option>
|
|
|
|
</Select>
|
2019-06-18 20:28:31 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script src="./poll_form.js"></script>
|
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
@import '../../_variables.scss';
|
|
|
|
|
|
|
|
.poll-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding: 0 0.5em 0.5em;
|
|
|
|
|
|
|
|
.add-option {
|
|
|
|
align-self: flex-start;
|
|
|
|
padding-top: 0.25em;
|
2020-10-19 16:38:49 +00:00
|
|
|
padding-left: 0.1em;
|
2019-06-18 20:28:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.poll-option {
|
|
|
|
display: flex;
|
|
|
|
align-items: baseline;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-bottom: 0.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-container {
|
|
|
|
width: 100%;
|
|
|
|
input {
|
|
|
|
// Hack: dodge the floating X icon
|
|
|
|
padding-right: 2.5em;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-20 15:36:40 +00:00
|
|
|
.delete-option {
|
2019-06-18 20:28:31 +00:00
|
|
|
// Hack: Move the icon over the input box
|
2020-10-19 16:38:49 +00:00
|
|
|
width: 1.5em;
|
|
|
|
margin-left: -1.5em;
|
2019-06-18 20:28:31 +00:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-type-expiry {
|
|
|
|
margin-top: 0.5em;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.poll-type {
|
|
|
|
margin-right: 0.75em;
|
|
|
|
flex: 1 1 60%;
|
2021-03-11 14:31:15 +00:00
|
|
|
|
|
|
|
.poll-type-select {
|
|
|
|
padding-right: 0.75em;
|
|
|
|
}
|
2019-06-18 20:28:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.poll-expiry {
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
.expiry-amount {
|
|
|
|
width: 3em;
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|