-
-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactored Virtual DOM structure * Added new E2E tests * Updated E2E Test Runner
- Loading branch information
Showing
103 changed files
with
2,753 additions
and
1,567 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This file contains all available configuration options | ||
# with their default values. | ||
|
||
# options for analysis running | ||
run: | ||
# which dirs to skip: they won't be analyzed; | ||
# can use regexp here: generated.*, regexp is applied on full path; | ||
# default value is empty list, but next dirs are always skipped independently | ||
# from this option's value: | ||
# vendor$, third_party$, testdata$, examples$, Godeps$, builtin$ | ||
skip-dirs: | ||
- pkg/parser/fql | ||
- pkg/parser/antlr | ||
|
||
linters: | ||
disable: | ||
- errcheck | ||
|
||
issues: | ||
# List of regexps of issue texts to exclude, empty list by default. | ||
# But independently from this option we use default exclude patterns, | ||
# it can be disabled by `exclude-use-default: false`. To list all | ||
# excluded by default patterns execute `golangci-lint run --help` | ||
exclude: | ||
- '^(G104|G401|G505|G501):' | ||
- '^shadow: declaration of' | ||
|
||
# which files to skip: they will be analyzed, but issues from them | ||
# won't be reported. Default value is empty list, but there is | ||
# no need to include all autogenerated files, we confidently recognize | ||
# autogenerated files. If it's not please let us know. | ||
skip-files: | ||
- "*_test.go" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import { parse } from '../../../utils/qs.js'; | ||
|
||
const e = React.createElement; | ||
|
||
export default class IFramePage extends React.Component { | ||
render() { | ||
const search = parse(this.props.location.search); | ||
|
||
let redirect; | ||
|
||
if (search.src) { | ||
redirect = search.src; | ||
} | ||
|
||
return e("div", { id: "iframe" }, [ | ||
e("iframe", { | ||
name: 'nested', | ||
style: { | ||
width: '100%', | ||
height: '800px', | ||
}, | ||
src: redirect ? `/?redirect=${redirect}` : '/' | ||
}), | ||
]) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,9 +11,9 @@ | |
</head> | ||
<body class="text-center"> | ||
<div id="root"></div> | ||
<script src="https://unpkg.com/react@16.6.1/umd/react.production.min.js"></script> | ||
<script src="https://unpkg.com/react-dom@16.6.1/umd/react-dom.production.min.js"></script> | ||
<script src="https://unpkg.com/history@4.7.2/umd/history.min.js"></script> | ||
<script src="https://unpkg.com/react@16.8.6/umd/react.production.min.js"></script> | ||
<script src="https://unpkg.com/react-dom@16.8.6/umd/react-dom.production.min.js"></script> | ||
<script src="https://unpkg.com/history@4.9.0/umd/history.min.js"></script> | ||
<script src="https://unpkg.com/[email protected]/umd/react-router.js"></script> | ||
<script src="https://unpkg.com/[email protected]/umd/react-router-dom.js"></script> | ||
<script src="index.js" type="module"></script> | ||
|
Oops, something went wrong.