• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

adobe / reactor-extension-core-edge / 4867324915

pending completion
4867324915

push

github

Serban Stancu
Update dependencies.

185 of 269 branches covered (68.77%)

Branch coverage included in aggregate %.

330 of 443 relevant lines covered (74.49%)

34.26 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/view/dataElements/path.jsx
1
/*
2
Copyright 2020 Adobe. All rights reserved.
3
This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
you may not use this file except in compliance with the License. You may obtain a copy
5
of the License at http://www.apache.org/licenses/LICENSE-2.0
6

7
Unless required by applicable law or agreed to in writing, software distributed under
8
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
OF ANY KIND, either express or implied. See the License for the specific language
10
governing permissions and limitations under the License.
11
*/
12

13
import React from 'react';
14
import ExtensionView from '../components/extensionView';
15

16
import Fields from './path/components/fields';
17
import getInitialValues from './path/form/getInitValues';
18
import getSettings from './path/form/getSettings';
19
import validate from './path/form/validate';
20

21
export default function PathView() {
22
  return (
×
23
    <ExtensionView
24
      getInitialValues={({ initInfo }) => ({
×
25
        ...getInitialValues(initInfo)
26
      })}
27
      getSettings={({ values }) => ({ ...getSettings(values) })}
×
28
      validate={(values) => ({ ...validate(values) })}
×
29
      render={() => <Fields />}
×
30
    />
31
  );
32
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc