View | Details | Raw Unified | Return to bug 37605
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue (-123 / +197 lines)
Lines 1-75 Link Here
1
<template>
1
<template>
2
    <div class="dialog message" v-if="message" v-html="message"></div>
2
    <div>
3
    <div class="dialog alert" v-if="error" v-html="error"></div>
3
        <!-- Confirmation Modal -->
4
    <div class="dialog alert modal" v-if="warning">
4
        <div
5
        <h1 v-html="warning"></h1>
5
            v-if="confirmation"
6
        <button id="close_modal" class="approve" @click="removeMessages">
6
            class="modal show"
7
            <i class="fa fa-fw fa-check"></i>
7
            tabindex="-1"
8
            {{ $__("Close") }}
8
            role="dialog"
9
        </button>
9
            style="display: block"
10
    </div>
10
        >
11
    <div class="modal_centered" v-if="confirmation">
11
            <div class="modal-dialog modal-dialog-centered" role="document">
12
        <div class="dialog alert confirmation">
12
                <div class="modal-content">
13
            <h1 v-html="confirmation.title"></h1>
13
                    <div class="modal-header">
14
            <p v-html="confirmation.message"></p>
14
                        <h4
15
            <div class="inputs" v-if="confirmation.inputs">
15
                            class="modal-title"
16
                <form ref="confirmationform">
16
                            v-html="confirmation.title"
17
                    <div
17
                        ></h4>
18
                        class="row"
18
                        <button
19
                        v-for="input in confirmation.inputs"
19
                            type="button"
20
                        v-bind:key="input.id"
20
                            class="close"
21
                    >
21
                            aria-label="Close"
22
                        <div class="col-md-6">
22
                            @click="removeConfirmationMessages"
23
                            <label
23
                        >
24
                                :for="`confirmation_input_${input.id}`"
24
                            <span aria-hidden="true">&times;</span>
25
                                v-bind:class="{ required: input.required }"
25
                        </button>
26
                                >{{ input.label }}:</label
26
                    </div>
27
                            >
27
                    <div class="modal-body">
28
                        <p v-html="confirmation.message"></p>
29
                        <div v-if="confirmation.inputs" class="form-group">
30
                            <form ref="confirmationform">
31
                                <div
32
                                    class="form-row"
33
                                    v-for="input in confirmation.inputs"
34
                                    :key="input.id"
35
                                >
36
                                    <div class="col-md-6">
37
                                        <label
38
                                            :for="`confirmation_input_${input.id}`"
39
                                            :class="{
40
                                                required: input.required,
41
                                            }"
42
                                        >
43
                                            {{ input.label }}:
44
                                        </label>
45
                                    </div>
46
                                    <div class="col-md-6">
47
                                        <flat-pickr
48
                                            v-if="input.type == 'Date'"
49
                                            :id="`confirmation_input_${input.id}`"
50
                                            v-model="input.value"
51
                                            :required="input.required"
52
                                            :config="fp_config"
53
                                        />
54
                                        <input
55
                                            v-if="input.type == 'Text'"
56
                                            type="text"
57
                                            :id="`confirmation_input_${input.id}`"
58
                                            v-model="input.value"
59
                                            :required="input.required"
60
                                            class="form-control"
61
                                        />
62
                                    </div>
63
                                </div>
64
                            </form>
28
                        </div>
65
                        </div>
29
                        <div class="col-md-6">
66
                    </div>
30
                            <flat-pickr
67
                    <div class="modal-footer">
31
                                v-if="input.type == 'Date'"
68
                        <button
32
                                :id="`confirmation_input_${input.id}`"
69
                            v-if="accept_callback"
33
                                v-model="input.value"
70
                            id="accept_modal"
34
                                :required="input.required"
71
                            class="btn btn-success"
35
                                :config="fp_config"
72
                            @click="submit"
36
                            />
73
                        >
37
                            <input
74
                            <i class="fa fa-fw fa-check"></i>
38
                                v-if="input.type == 'Text'"
75
                            <span v-html="confirmation.accept_label"></span>
39
                                :id="`confirmation_input_${input.id}`"
76
                        </button>
40
                                v-model="input.value"
77
                        <button
41
                                :required="input.required"
78
                            id="close_modal"
42
                            />
79
                            class="btn btn-danger"
80
                            @click="removeConfirmationMessages"
81
                        >
82
                            <i class="fa fa-fw fa-remove"></i>
83
                            <span v-html="confirmation.cancel_label"></span>
84
                        </button>
85
                    </div>
86
                </div>
87
            </div>
88
        </div>
89
90
        <!-- Submitting Modal -->
91
        <div
92
            v-if="is_submitting"
93
            class="modal show"
94
            tabindex="-1"
95
            role="dialog"
96
            style="display: block"
97
        >
98
            <div class="modal-dialog modal-dialog-centered" role="document">
99
                <div class="modal-content">
100
                    <div class="modal-header">
101
                        <h4
102
                            class="modal-title"
103
                            v-html="confirmation.title"
104
                        ></h4>
105
                        <button
106
                            type="button"
107
                            class="close"
108
                            aria-label="Close"
109
                            @click="removeConfirmationMessages"
110
                        >
111
                            <span aria-hidden="true">&times;</span>
112
                        </button>
113
                    </div>
114
                    <div class="modal-body text-center">
115
                        <div class="spinner-border text-primary" role="status">
116
                            <span class="sr-only">{{
117
                                $__("Submitting...")
118
                            }}</span>
43
                        </div>
119
                        </div>
44
                    </div>
120
                    </div>
45
                </form>
121
                    <div class="modal-footer">
122
                        <button
123
                            v-if="accept_callback"
124
                            id="accept_modal"
125
                            class="btn btn-success"
126
                            @click="submit"
127
                        >
128
                            <i class="fa fa-fw fa-check"></i>
129
                            <span v-html="confirmation.accept_label"></span>
130
                        </button>
131
                        <button
132
                            id="close_modal"
133
                            class="btn btn-danger"
134
                            @click="removeConfirmationMessages"
135
                        >
136
                            <i class="fa fa-fw fa-remove"></i>
137
                            <span v-html="confirmation.cancel_label"></span>
138
                        </button>
139
                    </div>
140
                </div>
46
            </div>
141
            </div>
47
            <button
48
                v-if="accept_callback"
49
                id="accept_modal"
50
                class="approve"
51
                @click="submit"
52
            >
53
                <i class="fa fa-fw fa-check"></i>
54
                <span v-html="confirmation.accept_label"></span>
55
            </button>
56
            <button
57
                id="close_modal"
58
                class="deny"
59
                @click="removeConfirmationMessages"
60
            >
61
                <i class="fa fa-fw fa-remove"></i>
62
                <span v-html="confirmation.cancel_label"></span>
63
            </button>
64
        </div>
142
        </div>
65
    </div>
66
    <!-- Must be styled differently -->
67
143
68
    <div class="modal_centered" v-if="is_submitting">
144
        <!-- Loading Modal -->
69
        <div class="spinner dialog alert">{{ $__("Submitting...") }}</div>
145
        <div
70
    </div>
146
            v-if="is_loading"
71
    <div class="modal_centered" v-if="is_loading">
147
            class="modal show"
72
        <div class="spinner dialog message">{{ $__("Loading...") }}</div>
148
            tabindex="-1"
149
            role="dialog"
150
            style="display: block"
151
        >
152
            <div class="modal-dialog modal-dialog-centered" role="document">
153
                <div class="modal-content">
154
                    <div class="modal-header">
155
                        <h4
156
                            class="modal-title"
157
                            v-html="confirmation.title"
158
                        ></h4>
159
                        <button
160
                            type="button"
161
                            class="close"
162
                            aria-label="Close"
163
                            @click="removeConfirmationMessages"
164
                        >
165
                            <span aria-hidden="true">&times;</span>
166
                        </button>
167
                    </div>
168
                    <div class="modal-body text-center">
169
                        <div class="spinner-border text-info" role="status">
170
                            <span class="sr-only">{{ $__("Loading...") }}</span>
171
                        </div>
172
                    </div>
173
                    <div class="modal-footer">
174
                        <button
175
                            v-if="accept_callback"
176
                            id="accept_modal"
177
                            class="btn btn-success"
178
                            @click="submit"
179
                        >
180
                            <i class="fa fa-fw fa-check"></i>
181
                            <span v-html="confirmation.accept_label"></span>
182
                        </button>
183
                        <button
184
                            id="close_modal"
185
                            class="btn btn-danger"
186
                            @click="removeConfirmationMessages"
187
                        >
188
                            <i class="fa fa-fw fa-remove"></i>
189
                            <span v-html="confirmation.cancel_label"></span>
190
                        </button>
191
                    </div>
192
                </div>
193
            </div>
194
        </div>
73
    </div>
195
    </div>
74
</template>
196
</template>
75
197
Lines 77-82 Link Here
77
import { inject } from "vue"
199
import { inject } from "vue"
78
import { storeToRefs } from "pinia"
200
import { storeToRefs } from "pinia"
79
import flatPickr from "vue-flatpickr-component"
201
import flatPickr from "vue-flatpickr-component"
202
80
export default {
203
export default {
81
    data() {
204
    data() {
82
        return {
205
        return {
Lines 84-90 export default { Link Here
84
        }
207
        }
85
    },
208
    },
86
    methods: {
209
    methods: {
87
        submit: function (e) {
210
        submit() {
88
            if (
211
            if (
89
                this.confirmation.inputs &&
212
                this.confirmation.inputs &&
90
                this.confirmation.inputs.filter(
213
                this.confirmation.inputs.filter(
Lines 130-194 export default { Link Here
130
</script>
253
</script>
131
254
132
<style scoped>
255
<style scoped>
133
.modal {
256
.modal.show {
134
    position: fixed;
257
    display: block !important;
135
    z-index: 9998;
258
    background-color: rgba(0, 0, 0, 0.5);
136
    display: table;
137
    transition: opacity 0.3s ease;
138
    margin: auto;
139
    padding: 20px 30px;
140
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
141
    transition: all 0.3s ease;
142
}
143
#close_modal {
144
    cursor: pointer;
145
}
146
147
.modal_centered {
148
    position: fixed;
149
    z-index: 9998;
150
    display: table;
151
    transition: opacity 0.3s ease;
152
    left: 0px;
153
    top: 0px;
154
    width: 100%;
155
    height: 100%;
156
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
157
}
158
.spinner {
159
    position: absolute;
160
    top: 50%;
161
    left: 40%;
162
    width: 10%;
163
}
164
165
.confirmation {
166
    position: absolute;
167
    top: 25%;
168
    left: 40%;
169
170
    width: 50%;
171
    min-height: 10%;
172
    margin: auto;
173
    align-items: center;
174
    justify-content: center;
175
}
176
.confirmation .inputs {
177
    margin-top: 0.4em;
178
}
179
.confirmation .inputs input,
180
:deep(.flatpickr-input) {
181
    width: auto;
182
    margin: 0px;
183
    float: left;
184
}
259
}
185
260
186
:deep(.flatpickr-input) {
261
.spinner-border {
187
    padding-left: 20px;
262
    width: 3rem;
263
    height: 3rem;
188
}
264
}
189
265
190
.confirmation .inputs label {
266
.modal-footer .btn {
191
    padding: 0.4em;
267
    margin-right: 0.5rem;
192
    float: right;
193
}
268
}
194
</style>
269
</style>
195
- 

Return to bug 37605