Files
firefly-iii/resources/assets/js/components/transactions/CustomAttachments.vue

73 lines
2.1 KiB
Vue
Raw Normal View History

2019-05-29 21:56:39 +02:00
<!--
- CustomAttachments.vue
2020-01-25 06:08:56 +01:00
- Copyright (c) 2019 james@firefly-iii.org
2019-05-29 21:56:39 +02:00
-
- This file is part of Firefly III (https://github.com/firefly-iii).
2019-05-29 21:56:39 +02:00
-
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU Affero General Public License as
- published by the Free Software Foundation, either version 3 of the
- License, or (at your option) any later version.
2019-05-29 21:56:39 +02:00
-
- This program is distributed in the hope that it will be useful,
2019-05-29 21:56:39 +02:00
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU Affero General Public License for more details.
2019-05-29 21:56:39 +02:00
-
- You should have received a copy of the GNU Affero General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
2019-05-29 21:56:39 +02:00
-->
<template>
2020-08-14 10:12:07 +02:00
<div class="form-group"
v-bind:class="{ 'has-error': hasError()}"
>
<div class="col-sm-12 text-sm">
{{ title }}
</div>
<div class="col-sm-12">
<div class="input-group">
2020-10-17 21:41:13 +02:00
<input ref="input"
:name="name"
2020-08-14 10:12:07 +02:00
:placeholder="title"
:title="title"
2020-10-17 21:41:13 +02:00
autocomplete="off"
class="form-control" multiple="multiple" type="file">
2020-08-14 10:12:07 +02:00
<span class="input-group-btn">
2020-05-26 06:28:02 +02:00
<button
2020-08-14 10:12:07 +02:00
class="btn btn-default"
2020-10-17 21:41:13 +02:00
type="button"
v-on:click="clearAtt"><i class="fa fa-trash-o"></i></button>
2020-05-26 06:28:02 +02:00
</span>
2020-08-14 10:12:07 +02:00
</div>
2020-10-17 21:41:13 +02:00
<ul v-for="error in this.error" class="list-unstyled">
2020-08-14 10:12:07 +02:00
<li class="text-danger">{{ error }}</li>
</ul>
</div>
2020-08-14 10:12:07 +02:00
</div>
</template>
<script>
2020-08-14 10:12:07 +02:00
export default {
name: "CustomAttachments",
props: {
title: String,
name: String,
error: Array
},
mounted: function () {
2021-05-24 08:06:56 +02:00
// window.addEventListener('paste', e => {
// this.$refs.input.files = e.clipboardData.files;
// });
2020-08-14 10:12:07 +02:00
},
methods: {
clearAtt: function () {
this.$refs.input.value = '';
},
hasError: function () {
return this.error.length > 0;
},
}
}
</script>