Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7055 | Rev 7057 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7055 Rev 7056
Línea 107... Línea 107...
107
        <Modal.Title>
107
        <Modal.Title>
108
          {isEdit ? labels.edit : labels.add} conocimiento
108
          {isEdit ? labels.edit : labels.add} conocimiento
109
        </Modal.Title>
109
        </Modal.Title>
110
      </Modal.Header>
110
      </Modal.Header>
111
      <Modal.Body>
111
      <Modal.Body>
-
 
112
        {loading ? (
112
        {loading && <Spinner />}
113
          <Spinner />
-
 
114
        ) : (
113
        <Form onSubmit={onSubmit}>
115
          <Form onSubmit={onSubmit}>
114
          <Form.Group>
116
            <Form.Group>
115
            <Form.Label>{labels.category}</Form.Label>
117
              <Form.Label>{labels.category}</Form.Label>
116
            <Form.Control
118
              <Form.Control
117
              as="select"
119
                as="select"
118
              ref={register({ required: true })}
120
                ref={register({ required: true })}
119
              name="category_id"
121
                name="category_id"
120
            >
122
              >
121
              {categories.map(({ name, uuid }) => (
123
                {categories.map(({ name, uuid }) => (
122
                <option value={uuid} key={uuid}>
124
                  <option value={uuid} key={uuid}>
123
                  {name}
125
                    {name}
124
                </option>
126
                  </option>
125
              ))}
127
                ))}
126
            </Form.Control>
128
              </Form.Control>
127
            {errors.category_id && (
129
              {errors.category_id && (
-
 
130
                <FormErrorFeedback>
128
              <FormErrorFeedback>{labels.error_field_empty}</FormErrorFeedback>
131
                  {labels.error_field_empty}
-
 
132
                </FormErrorFeedback>
129
            )}
133
              )}
130
          </Form.Group>
134
            </Form.Group>
131
 
135
 
132
          <Form.Group>
136
            <Form.Group>
133
            <Form.Label>{labels.title}</Form.Label>
137
              <Form.Label>{labels.title}</Form.Label>
134
            <Form.Control
138
              <Form.Control
135
              type="text"
139
                type="text"
136
              name="title"
140
                name="title"
137
              ref={register({ required: true })}
141
                ref={register({ required: true })}
-
 
142
              />
-
 
143
              {errors.title && (
-
 
144
                <FormErrorFeedback>
-
 
145
                  {labels.error_field_empty}
-
 
146
                </FormErrorFeedback>
-
 
147
              )}
-
 
148
            </Form.Group>
-
 
149
 
-
 
150
            <CKEditor
-
 
151
              onChange={(e) => setValue('description', e.editor.getData())}
-
 
152
              initData={initialData}
-
 
153
              data={initialData}
-
 
154
              on
-
 
155
              config={CKEDITOR_OPTIONS}
138
            />
156
            />
139
            {errors.title && (
-
 
140
              <FormErrorFeedback>{labels.error_field_empty}</FormErrorFeedback>
-
 
141
            )}
-
 
142
          </Form.Group>
-
 
Línea 143... Línea -...
143
 
-
 
144
          <CKEditor
-
 
145
            onChange={(e) => setValue('description', e.editor.getData())}
-
 
146
            initData={initialData}
-
 
147
            config={CKEDITOR_OPTIONS}
-
 
148
          />
-
 
149
 
157
 
150
          {errors.description && (
-
 
151
            <FormErrorFeedback>{labels.error_field_empty}</FormErrorFeedback>
-
 
152
          )}
-
 
153
 
-
 
154
          <Form.Group>
-
 
155
            <Form.File
-
 
156
              label={labels.image}
-
 
157
              name="image"
-
 
158
              ref={register({ required: true })}
-
 
159
            />
-
 
160
            {errors.image && (
158
            {errors.description && (
161
              <FormErrorFeedback>{labels.error_field_empty}</FormErrorFeedback>
159
              <FormErrorFeedback>{labels.error_field_empty}</FormErrorFeedback>
162
            )}
-
 
163
          </Form.Group>
-
 
164
 
-
 
165
          <Form.Group>
-
 
166
            <Form.File
-
 
167
              label={labels.attachment}
-
 
168
              name="attachment"
-
 
169
              ref={register}
-
 
170
            />
-
 
Línea -... Línea 160...
-
 
160
            )}
-
 
161
 
-
 
162
            <Form.Group>
-
 
163
              <Form.File
-
 
164
                label={labels.image}
-
 
165
                name="image"
-
 
166
                ref={register({ required: true })}
-
 
167
              />
-
 
168
              {errors.image && (
-
 
169
                <FormErrorFeedback>
-
 
170
                  {labels.error_field_empty}
-
 
171
                </FormErrorFeedback>
-
 
172
              )}
-
 
173
            </Form.Group>
-
 
174
 
-
 
175
            <Form.Group>
-
 
176
              <Form.File
-
 
177
                label={labels.attachment}
-
 
178
                name="attachment"
-
 
179
                ref={register}
-
 
180
              />
171
          </Form.Group>
181
            </Form.Group>
172
 
182
 
173
          <Button className="mt-3 mr-2" variant="primary" type="submit">
183
            <Button className="mt-3 mr-2" variant="primary" type="submit">
174
            {labels.accept}
184
              {labels.accept}
175
          </Button>
185
            </Button>
176
          <Button className="btn-secondary mt-3" onClick={onClose}>
186
            <Button className="btn-secondary mt-3" onClick={onClose}>
177
            {labels.cancel}
187
              {labels.cancel}
-
 
188
            </Button>
178
          </Button>
189
          </Form>
179
        </Form>
190
        )}
180
      </Modal.Body>
191
      </Modal.Body>
181
    </Modal>
192
    </Modal>