summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/modal/index.tsx
blob: 9874a1943d400960bdbc3ce2ddbda5860343ec64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
 This file is part of GNU Taler
 (C) 2021 Taler Systems S.A.

 GNU Taler is free software; you can redistribute it and/or modify it under the
 terms of the GNU General Public License as published by the Free Software
 Foundation; either version 3, or (at your option) any later version.

 GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

 You should have received a copy of the GNU General Public License along with
 GNU Taler; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
 */

/**
*
* @author Sebastian Javier Marchano (sebasjm)
*/


import { ComponentChildren, h, VNode } from "preact";
import { useState } from "preact/hooks";
import { useInstanceContext } from "../../context/instance";
import { Translate, useTranslator } from "../../i18n";
import { DEFAULT_REQUEST_TIMEOUT } from "../../utils/constants";
import { Loading, Spinner } from "../exception/loading";
import { FormProvider } from "../form/FormProvider";
import { Input } from "../form/Input";

interface Props {
  active?: boolean;
  description?: string;
  onCancel?: () => void;
  onConfirm?: () => void;
  children?: ComponentChildren;
  danger?: boolean;
  disabled?: boolean;
}

export function ConfirmModal({ active, description, onCancel, onConfirm, children, danger, disabled }: Props): VNode {
  return <div class={active ? "modal is-active" : "modal"}>
    <div class="modal-background " onClick={onCancel} />
    <div class="modal-card">
      <header class="modal-card-head">
        {!description ? null : <p class="modal-card-title">{description}</p>}
        <button class="delete " aria-label="close" onClick={onCancel} />
      </header>
      <section class="modal-card-body">
        {children}
      </section>
      <footer class="modal-card-foot">
        <div class="buttons is-right" style={{ width: '100%' }}>
          <button class="button " onClick={onCancel} ><Translate>Cancel</Translate></button>
          <button class={danger ? "button is-danger " : "button is-info "} disabled={disabled} onClick={onConfirm} ><Translate>Confirm</Translate></button>
        </div>
      </footer>
    </div>
    <button class="modal-close is-large " aria-label="close" onClick={onCancel} />
  </div>
}

export function ContinueModal({ active, description, onCancel, onConfirm, children, disabled }: Props): VNode {
  return <div class={active ? "modal is-active" : "modal"}>
    <div class="modal-background " onClick={onCancel} />
    <div class="modal-card">
      <header class="modal-card-head has-background-success">
        {!description ? null : <p class="modal-card-title">{description}</p>}
        <button class="delete " aria-label="close" onClick={onCancel} />
      </header>
      <section class="modal-card-body">
        {children}
      </section>
      <footer class="modal-card-foot">
        <div class="buttons is-right" style={{ width: '100%' }}>
          <button class="button is-success " disabled={disabled} onClick={onConfirm} ><Translate>Continue</Translate></button>
        </div>
      </footer>
    </div>
    <button class="modal-close is-large " aria-label="close" onClick={onCancel} />
  </div>
}

export function ClearConfirmModal({ description, onCancel, onClear, onConfirm, children }: Props & { onClear?: () => void }): VNode {
  return <div class="modal is-active">
    <div class="modal-background " onClick={onCancel} />
    <div class="modal-card">
      <header class="modal-card-head">
        {!description ? null : <p class="modal-card-title">{description}</p>}
        <button class="delete " aria-label="close" onClick={onCancel} />
      </header>
      <section class="modal-card-body is-main-section">
        {children}
      </section>
      <footer class="modal-card-foot">
        {onClear && <button class="button is-danger" onClick={onClear} disabled={onClear === undefined} ><Translate>Clear</Translate></button>}
        <div class="buttons is-right" style={{ width: '100%' }}>
          <button class="button " onClick={onCancel} ><Translate>Cancel</Translate></button>
          <button class="button is-info" onClick={onConfirm} disabled={onConfirm === undefined} ><Translate>Confirm</Translate></button>
        </div>
      </footer>
    </div>
    <button class="modal-close is-large " aria-label="close" onClick={onCancel} />
  </div>
}

interface DeleteModalProps {
  element: { id: string, name: string };
  onCancel: () => void;
  onConfirm: (id: string) => void;
}

export function DeleteModal({ element, onCancel, onConfirm }: DeleteModalProps): VNode {
  return <ConfirmModal description="delete_instance" danger active onCancel={onCancel} onConfirm={() => onConfirm(element.id)}>
    <p>This will permanently delete instance "{element.name}" with id <b>{element.id}</b></p>
    <p>Please confirm this action</p>
  </ConfirmModal>
}

interface UpdateTokenModalProps {
  oldToken?: string;
  onCancel: () => void;
  onConfirm: (value: string) => void;
  onClear: () => void;
}

//FIXME: merge UpdateTokenModal with SetTokenNewInstanceModal
export function UpdateTokenModal({ onCancel, onClear, onConfirm, oldToken }: UpdateTokenModalProps): VNode {
  type State = { old_token: string, new_token: string, repeat_token: string }
  const [form, setValue] = useState<Partial<State>>({
    old_token: '', new_token: '', repeat_token: '',
  })
  const i18n = useTranslator()

  const hasInputTheCorrectOldToken = oldToken && oldToken !== form.old_token
  const errors = {
    old_token: hasInputTheCorrectOldToken ? i18n`is not the same as the current access token` : undefined,
    new_token: !form.new_token ? i18n`cannot be empty` : (form.new_token === form.old_token ? i18n`cannot be the same as the old token` : undefined),
    repeat_token: form.new_token !== form.repeat_token ? i18n`is not the same` : undefined
  }

  const hasErrors = Object.keys(errors).some(k => (errors as any)[k] !== undefined)

  const instance = useInstanceContext()

  const text = i18n`You are updating the access token from instance with id ${instance.id}`

  return <ClearConfirmModal description={text}
    onCancel={onCancel}
    onConfirm={!hasErrors ? () => onConfirm(form.new_token!) : undefined}
    onClear={!hasInputTheCorrectOldToken && oldToken ? onClear : undefined}
  >
    <div class="columns">
      <div class="column" />
      <div class="column is-four-fifths" >
        <FormProvider errors={errors} object={form} valueHandler={setValue}>
          {oldToken && <Input<State> name="old_token" label={i18n`Old access token`} tooltip={i18n`access token currently in use`} inputType="password" />}
          <Input<State> name="new_token" label={i18n`New access token`} tooltip={i18n`next access token to be used`} inputType="password" />
          <Input<State> name="repeat_token" label={i18n`Repeat access token`} tooltip={i18n`confirm the same access token`} inputType="password" />
        </FormProvider>
        <p><Translate>Clearing the access token will mean public access to the instance</Translate></p>
      </div>
      <div class="column" />
    </div>
  </ClearConfirmModal>
}

export function SetTokenNewInstanceModal({ onCancel, onClear, onConfirm }: UpdateTokenModalProps): VNode {
  type State = { old_token: string, new_token: string, repeat_token: string }
  const [form, setValue] = useState<Partial<State>>({
    new_token: '', repeat_token: '',
  })
  const i18n = useTranslator()

  const errors = {
    new_token: !form.new_token ? i18n`cannot be empty` : (form.new_token === form.old_token ? i18n`cannot be the same as the old access token` : undefined),
    repeat_token: form.new_token !== form.repeat_token ? i18n`is not the same` : undefined
  }

  const hasErrors = Object.keys(errors).some(k => (errors as any)[k] !== undefined)

  const text = i18n`You are setting the access token for the new instance`

  return <ClearConfirmModal description={text}
    onCancel={onCancel}
    onConfirm={!hasErrors ? () => onConfirm(form.new_token!) : undefined}
    onClear={onClear}
  >
    <div class="columns">
      <div class="column" />
      <div class="column is-four-fifths" >
        <FormProvider errors={errors} object={form} valueHandler={setValue}>
          <Input<State> name="new_token" label={i18n`New access token`} tooltip={i18n`next access token to be used`} inputType="password" />
          <Input<State> name="repeat_token" label={i18n`Repeat access token`} tooltip={i18n`confirm the same access token`} inputType="password" />
        </FormProvider>
        <p><Translate>Clearing the access token will mean public access to the instance</Translate></p>
      </div>
      <div class="column" />
    </div>
  </ClearConfirmModal>
}

export function LoadingModal({ onCancel }: { onCancel: () => void }): VNode {
  const i18n = useTranslator()
  return <div class="modal is-active">
    <div class="modal-background " onClick={onCancel} />
    <div class="modal-card">
      <header class="modal-card-head">
        <p class="modal-card-title"><Translate>Operation in progress...</Translate></p>
      </header>
      <section class="modal-card-body">
        <div class="columns">
          <div class="column" />
          <Spinner />
          <div class="column" />
        </div>
        <p>{i18n`The operation will be automatically canceled after ${DEFAULT_REQUEST_TIMEOUT} seconds`}</p>
      </section>
      <footer class="modal-card-foot">
        <div class="buttons is-right" style={{ width: '100%' }}>
          <button class="button " onClick={onCancel} ><Translate>Cancel</Translate></button>
        </div>
      </footer>
    </div>
    <button class="modal-close is-large " aria-label="close" onClick={onCancel} />
  </div>
}