-
Notifications
You must be signed in to change notification settings - Fork 288
Adopt type=module #281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Adopt type=module #281
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
b4c05e9
Adopt type=module
Fil 712005a
Update test/jsdom.js
Fil 22b160a
Update test/select-test.js
Fil f3c96bb
Update test/select-test.js
Fil 64148c4
some dom
Fil cb6ebd5
remove Sublime project
mbostock 74d2ca3
add eslint.json
mbostock 8dc8a89
related d3/d3#3502; extract copyrights from LICENSE
mbostock 08c9a8e
update dependencies
mbostock f311994
Update README
mbostock 64cc31c
cleaner imports; fix tests
mbostock 8e20c52
cleaner imports; fix tests
mbostock f22398f
cleaner imports; fix tests
mbostock 1187321
cleaner imports; fix tests
mbostock 902c4e2
cleaner imports; fix tests
mbostock e499378
cleaner imports; fix tests
mbostock 75dfc6f
cleaner imports; fix tests
mbostock 44e8785
cleaner imports; fix tests
mbostock 167bcf6
cleaner imports; fix tests
mbostock a1d8ece
cleaner imports; fix tests
mbostock b0f3812
cleaner imports; fix tests
mbostock bfe2249
cleaner imports; fix tests
mbostock 2dc7b88
update dependencies
mbostock a08476d
tweak equality test
mbostock File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,30 @@ | ||
| # https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
|
||
| name: Node.js CI | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main ] | ||
| pull_request: | ||
| branches: [ main ] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| runs-on: ubuntu-latest | ||
|
|
||
| strategy: | ||
| matrix: | ||
| node-version: [14.x] | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Use Node.js ${{ matrix.node-version }} | ||
| uses: actions/setup-node@v1 | ||
| with: | ||
| node-version: ${{ matrix.node-version }} | ||
| - run: yarn --frozen-lockfile | ||
| - run: | | ||
| echo ::add-matcher::.github/eslint.json | ||
| yarn run eslint src test --format=compact | ||
| - run: yarn test |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,26 +1,13 @@ | ||
| Copyright (c) 2010-2018, Michael Bostock | ||
| All rights reserved. | ||
|
|
||
| Redistribution and use in source and binary forms, with or without | ||
| modification, are permitted provided that the following conditions are met: | ||
|
|
||
| * Redistributions of source code must retain the above copyright notice, this | ||
| list of conditions and the following disclaimer. | ||
|
|
||
| * Redistributions in binary form must reproduce the above copyright notice, | ||
| this list of conditions and the following disclaimer in the documentation | ||
| and/or other materials provided with the distribution. | ||
|
|
||
| * The name Michael Bostock may not be used to endorse or promote products | ||
| derived from this software without specific prior written permission. | ||
|
|
||
| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
| DISCLAIMED. IN NO EVENT SHALL MICHAEL BOSTOCK BE LIABLE FOR ANY DIRECT, | ||
| INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
| BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | ||
| OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
| NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, | ||
| EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| Copyright 2010-2021 Mike Bostock | ||
|
|
||
| Permission to use, copy, modify, and/or distribute this software for any purpose | ||
| with or without fee is hereby granted, provided that the above copyright notice | ||
| and this permission notice appear in all copies. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
| REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
| FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
| INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS | ||
| OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | ||
| TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | ||
| THIS SOFTWARE. |
This file contains hidden or 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 hidden or 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 hidden or 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,10 @@ | ||
| { | ||
| "extends": "eslint:recommended", | ||
| "parserOptions": { | ||
| "sourceType": "module", | ||
| "ecmaVersion": 8 | ||
| }, | ||
| "env": { | ||
| "mocha": true | ||
| } | ||
| } |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,29 +1,27 @@ | ||
| var tape = require("tape"), | ||
| jsdom = require("./jsdom"), | ||
| d3 = require("../"); | ||
| import assert from "assert"; | ||
| import * as d3 from "../src/index.js"; | ||
| import jsdom from "./jsdom.js"; | ||
|
|
||
| tape("d3.create(name) returns a new HTML element with the given name", function(test) { | ||
| it("d3.create(name) returns a new HTML element with the given name", () => { | ||
| global.document = jsdom(""); | ||
| try { | ||
| var h1 = d3.create("h1"); | ||
| test.equal(h1._groups[0][0].namespaceURI, "http://www.w3.org/1999/xhtml"); | ||
| test.equal(h1._groups[0][0].tagName, "H1"); | ||
| test.deepEqual(h1._parents, [null]); | ||
| test.end(); | ||
| } finally { | ||
| const h1 = d3.create("h1"); | ||
| assert.strictEqual(h1._groups[0][0].namespaceURI, "http://www.w3.org/1999/xhtml"); | ||
| assert.strictEqual(h1._groups[0][0].tagName, "H1"); | ||
| assert.deepStrictEqual(h1._parents, [null]); | ||
| } finally { | ||
| delete global.document; | ||
| } | ||
| }); | ||
|
|
||
| tape("d3.create(name) returns a new SVG element with the given name", function(test) { | ||
| it("d3.create(name) returns a new SVG element with the given name", () => { | ||
| global.document = jsdom(""); | ||
| try { | ||
| var svg = d3.create("svg"); | ||
| test.equal(svg._groups[0][0].namespaceURI, "http://www.w3.org/2000/svg"); | ||
| test.equal(svg._groups[0][0].tagName, "svg"); | ||
| test.deepEqual(svg._parents, [null]); | ||
| test.end(); | ||
| } finally { | ||
| const svg = d3.create("svg"); | ||
| assert.strictEqual(svg._groups[0][0].namespaceURI, "http://www.w3.org/2000/svg"); | ||
| assert.strictEqual(svg._groups[0][0].tagName, "svg"); | ||
| assert.deepStrictEqual(svg._parents, [null]); | ||
| } finally { | ||
| delete global.document; | ||
| } | ||
| }); |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| var jsdom = require("jsdom"); | ||
| import * as jsdom from "jsdom"; | ||
|
|
||
| module.exports = function(html) { | ||
| export default function(html) { | ||
| return (new jsdom.JSDOM(html)).window.document; | ||
| }; | ||
| } | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,13 +1,12 @@ | ||
| var tape = require("tape"), | ||
| jsdom = require("./jsdom"), | ||
| d3 = require("../"); | ||
| import assert from "assert"; | ||
| import * as d3 from "../src/index.js"; | ||
| import jsdom from "./jsdom.js"; | ||
|
|
||
| tape("d3.matcher(selector).call(element) returns true if the element matches the selector", function(test) { | ||
| var document = jsdom("<body class='foo'>"); | ||
| test.equal(d3.matcher("body").call(document.body), true); | ||
| test.equal(d3.matcher(".foo").call(document.body), true); | ||
| test.equal(d3.matcher("body.foo").call(document.body), true); | ||
| test.equal(d3.matcher("h1").call(document.body), false); | ||
| test.equal(d3.matcher("body.bar").call(document.body), false); | ||
| test.end(); | ||
| it("d3.matcher(selector).call(element) returns true if the element matches the selector", () => { | ||
| const document = jsdom("<body class='foo'>"); | ||
| assert.strictEqual(d3.matcher("body").call(document.body), true); | ||
| assert.strictEqual(d3.matcher(".foo").call(document.body), true); | ||
| assert.strictEqual(d3.matcher("body.foo").call(document.body), true); | ||
| assert.strictEqual(d3.matcher("h1").call(document.body), false); | ||
| assert.strictEqual(d3.matcher("body.bar").call(document.body), false); | ||
| }); |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,39 +1,34 @@ | ||
| var tape = require("tape"), | ||
| d3 = require("../"); | ||
| import assert from "assert"; | ||
| import * as d3 from "../src/index.js"; | ||
|
|
||
| tape("d3.namespace(name) returns name if there is no namespace prefix", function(test) { | ||
| test.equal(d3.namespace("foo"), "foo"); | ||
| test.equal(d3.namespace("foo:bar"), "bar"); | ||
| test.end(); | ||
| it("d3.namespace(name) returns name if there is no namespace prefix", () => { | ||
| assert.strictEqual(d3.namespace("foo"), "foo"); | ||
| assert.strictEqual(d3.namespace("foo:bar"), "bar"); | ||
| }); | ||
|
|
||
| tape("d3.namespace(name) coerces name to a string", function(test) { | ||
| test.equal(d3.namespace({toString: function() { return "foo"; }}), "foo"); | ||
| test.deepEqual(d3.namespace({toString: function() { return "svg"; }}), {space: "http://www.w3.org/2000/svg", local: "svg"}); | ||
| test.end(); | ||
| it("d3.namespace(name) coerces name to a string", () => { | ||
| assert.strictEqual(d3.namespace({toString: function() { return "foo"; }}), "foo"); | ||
| assert.deepStrictEqual(d3.namespace({toString: function() { return "svg"; }}), {space: "http://www.w3.org/2000/svg", local: "svg"}); | ||
| }); | ||
|
|
||
| tape("d3.namespace(name) returns the expected values for built-in namespaces", function(test) { | ||
| test.deepEqual(d3.namespace("svg"), {space: "http://www.w3.org/2000/svg", local: "svg"}); | ||
| test.deepEqual(d3.namespace("xhtml"), {space: "http://www.w3.org/1999/xhtml", local: "xhtml"}); | ||
| test.deepEqual(d3.namespace("xlink"), {space: "http://www.w3.org/1999/xlink", local: "xlink"}); | ||
| test.deepEqual(d3.namespace("xml"), {space: "http://www.w3.org/XML/1998/namespace", local: "xml"}); | ||
| test.deepEqual(d3.namespace("svg:g"), {space: "http://www.w3.org/2000/svg", local: "g"}); | ||
| test.deepEqual(d3.namespace("xhtml:b"), {space: "http://www.w3.org/1999/xhtml", local: "b"}); | ||
| test.deepEqual(d3.namespace("xlink:href"), {space: "http://www.w3.org/1999/xlink", local: "href"}); | ||
| test.deepEqual(d3.namespace("xml:lang"), {space: "http://www.w3.org/XML/1998/namespace", local: "lang"}); | ||
| test.end(); | ||
| it("d3.namespace(name) returns the expected values for built-in namespaces", () => { | ||
| assert.deepStrictEqual(d3.namespace("svg"), {space: "http://www.w3.org/2000/svg", local: "svg"}); | ||
| assert.deepStrictEqual(d3.namespace("xhtml"), {space: "http://www.w3.org/1999/xhtml", local: "xhtml"}); | ||
| assert.deepStrictEqual(d3.namespace("xlink"), {space: "http://www.w3.org/1999/xlink", local: "xlink"}); | ||
| assert.deepStrictEqual(d3.namespace("xml"), {space: "http://www.w3.org/XML/1998/namespace", local: "xml"}); | ||
| assert.deepStrictEqual(d3.namespace("svg:g"), {space: "http://www.w3.org/2000/svg", local: "g"}); | ||
| assert.deepStrictEqual(d3.namespace("xhtml:b"), {space: "http://www.w3.org/1999/xhtml", local: "b"}); | ||
| assert.deepStrictEqual(d3.namespace("xlink:href"), {space: "http://www.w3.org/1999/xlink", local: "href"}); | ||
| assert.deepStrictEqual(d3.namespace("xml:lang"), {space: "http://www.w3.org/XML/1998/namespace", local: "lang"}); | ||
| }); | ||
|
|
||
| tape("d3.namespace(\"xmlns:…\") treats the whole name as the local name", function(test) { | ||
| test.deepEqual(d3.namespace("xmlns:xlink"), {space: "http://www.w3.org/2000/xmlns/", local: "xmlns:xlink"}); | ||
| test.end(); | ||
| it("d3.namespace(\"xmlns:…\") treats the whole name as the local name", () => { | ||
| assert.deepStrictEqual(d3.namespace("xmlns:xlink"), {space: "http://www.w3.org/2000/xmlns/", local: "xmlns:xlink"}); | ||
| }); | ||
|
|
||
| tape("d3.namespace(name) observes modifications to d3.namespaces", function(test) { | ||
| it("d3.namespace(name) observes modifications to d3.namespaces", () => { | ||
| d3.namespaces.d3js = "https://d3js.org/2016/namespace"; | ||
| test.deepEqual(d3.namespace("d3js:pie"), {space: "https://d3js.org/2016/namespace", local: "pie"}); | ||
| assert.deepStrictEqual(d3.namespace("d3js:pie"), {space: "https://d3js.org/2016/namespace", local: "pie"}); | ||
| delete d3.namespaces.d3js; | ||
| test.equal(d3.namespace("d3js:pie"), "pie"); | ||
| test.end(); | ||
| assert.strictEqual(d3.namespace("d3js:pie"), "pie"); | ||
| }); |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,13 +1,12 @@ | ||
| var tape = require("tape"), | ||
| d3 = require("../"); | ||
| import assert from "assert"; | ||
| import * as d3 from "../src/index.js"; | ||
|
|
||
| tape("d3.namespaces is the expected map", function(test) { | ||
| test.deepEqual(d3.namespaces, { | ||
| it("d3.namespaces is the expected map", () => { | ||
| assert.deepStrictEqual(d3.namespaces, { | ||
| svg: "http://www.w3.org/2000/svg", | ||
| xhtml: "http://www.w3.org/1999/xhtml", | ||
| xlink: "http://www.w3.org/1999/xlink", | ||
| xml: "http://www.w3.org/XML/1998/namespace", | ||
| xmlns: "http://www.w3.org/2000/xmlns/" | ||
| }); | ||
| test.end(); | ||
| }); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.