Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 48 additions & 1 deletion src/assets/GraphqlAsset.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,62 @@
const Asset = require('../Asset');
const localRequire = require('../utils/localRequire');
const Resolver = require('../Resolver');
const fs = require('../utils/fs');

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use parcels fs util

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pretty sure I am?

@DeMoorJasper DeMoorJasper Aug 14, 2018

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Damn, not sure why I thought it wasn't

const os = require('os');

const IMPORT_RE = /^# *import +['"](.*)['"] *;? *$/;

class GraphqlAsset extends Asset {
constructor(name, options) {
super(name, options);
this.type = 'js';

this.gqlMap = new Map();
this.gqlResolver = new Resolver(
Object.assign({}, this.options, {
extensions: ['.gql', '.graphql']
})
);
}

async traverseImports(name, code) {
this.gqlMap.set(name, code);

await Promise.all(
code
.split(/\r\n?|\n/)
.map(line => line.match(IMPORT_RE))
.filter(match => !!match)
.map(async ([, importName]) => {
let {path: resolved} = await this.gqlResolver.resolve(
importName,
name
);

if (this.gqlMap.has(resolved)) {
return;
}

let code = await fs.readFile(resolved, 'utf8');
await this.traverseImports(resolved, code);
})
);
}

collectDependencies() {
for (let [path] of this.gqlMap) {
this.addDependency(path, {includedInParent: true});
}
}

async parse(code) {
let gql = await localRequire('graphql-tag', this.name);
return gql(code);

await this.traverseImports(this.name, code);

const allCodes = [...this.gqlMap.values()].join(os.EOL);

return gql(allCodes);
}

generate() {
Expand Down
39 changes: 39 additions & 0 deletions test/graphql.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,43 @@ describe('graphql', function() {
`.definitions
);
});

it('should support importing other graphql files from a graphql file', async function() {
let b = await bundle(__dirname + '/integration/graphql-import/index.js');

await assertBundleTree(b, {
name: 'index.js',
assets: ['index.js', 'local.graphql'],
childBundles: [
{
type: 'map'
}
]
});

let output = await run(b);
assert.equal(typeof output, 'function');
assert.deepEqual(
output().definitions,
gql`
{
user(id: 6) {
...UserFragment
...AnotherUserFragment
}
}

fragment UserFragment on User {
firstName
lastName
}

fragment AnotherUserFragment on User {
address
email
}

`.definitions
);
});
});
4 changes: 4 additions & 0 deletions test/integration/graphql-import/another.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
fragment AnotherUserFragment on User {
address
email
}
5 changes: 5 additions & 0 deletions test/integration/graphql-import/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
var local = require('./local.graphql');

module.exports = function () {
return local;
};
8 changes: 8 additions & 0 deletions test/integration/graphql-import/local.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# import './other.graphql'

{
user(id: 6) {
...UserFragment
...AnotherUserFragment
}
}
6 changes: 6 additions & 0 deletions test/integration/graphql-import/other.graphql
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# import './another.graphql'

fragment UserFragment on User {
firstName
lastName
}