• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

lirown/graphql-custom-directives: A collection of custom graphql directives

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称(OpenSource Name):

lirown/graphql-custom-directives

开源软件地址(OpenSource Url):

https://github.com/lirown/graphql-custom-directives

开源编程语言(OpenSource Language):

JavaScript 100.0%

开源软件介绍(OpenSource Introduction):

graphql-custom-directives

Build Status Coverage Status npm version Dependency Status Known Vulnerabilities License

A collection of custom graphql directives created with Moment, Lodash and Numeral-js.

Checkout graphql-custom-directive for creating your own graphql custom directives.

Install

npm install --save graphql-custom-directives

Usage

import {
  GraphQLDateDirective,
  GraphQLNumberDirective,
  GraphQLCurrencyDirective,
  GraphQLLowerCaseDirective,
  GraphQLUpperCaseDirective,
  GraphQLCamelCaseDirective,
  GraphQLStartCaseDirective,
  GraphQLCapitalizeDirective,
  GraphQLKebabCaseDirective,
  GraphQLTrimDirective,
  GraphQLDefaultToDirective,
  GraphQLToLowerDirective,
  GraphQLToUpperDirective,
  GraphQLTemplateDirective,
  GraphQLPhoneDirective,
  applySchemaCustomDirectives,
} from 'graphql-custom-directives';

const query = new GraphQLObjectType({
   name: 'Query',
   fields: {
     input: {
       type: GraphQLString,
       args: {
         value: {
           type: GraphQLString
         }
       },
       resolve: (source, {value}) => value
     }
   }
});

const schema = new GraphQLSchema({
  directives: [
    GraphQLDateDirective,
    GraphQLNumberDirective,
    GraphQLCurrencyDirective,
    GraphQLLowerCaseDirective,
    GraphQLUpperCaseDirective,
    GraphQLCamelCaseDirective,
    GraphQLStartCaseDirective,
    GraphQLCapitalizeDirective,
    GraphQLKebabCaseDirective,
    GraphQLTrimDirective,
    GraphQLDefaultToDirective,
    GraphQLToLowerDirective,
    GraphQLToUpperDirective,
    GraphQLPhoneDirective,
    GraphQLTemplateDirective
  ],
  query
});

applySchemaCustomDirectives(schema);

graphql(schema, `{ input(value: "test") @upperCase }`)
  .then(({ result, errors }) => {
     console.log(result); // will print { input: "TEST }
  });

Using with apollo

is also possible

import { makeExecutableSchema } from 'graphql-tools';
import {
  GraphQLDateDirective,
  GraphQLNumberDirective,
  GraphQLCurrencyDirective,
  GraphQLLowerCaseDirective,
  GraphQLUpperCaseDirective,
  GraphQLCamelCaseDirective,
  GraphQLStartCaseDirective,
  GraphQLCapitalizeDirective,
  GraphQLKebabCaseDirective,
  GraphQLTrimDirective,
  GraphQLDefaultToDirective,
  GraphQLToLowerDirective,
  GraphQLToUpperDirective,
  GraphQLTemplateDirective,
  GraphQLPhoneDirective
  applySchemaCustomDirectives
} from 'graphql-custom-directives';

let directives = [
    GraphQLDateDirective,
    GraphQLNumberDirective,
    GraphQLCurrencyDirective,
    GraphQLLowerCaseDirective,
    GraphQLUpperCaseDirective,
    GraphQLCamelCaseDirective,
    GraphQLStartCaseDirective,
    GraphQLCapitalizeDirective,
    GraphQLKebabCaseDirective,
    GraphQLTrimDirective,
    GraphQLDefaultToDirective,
    GraphQLToLowerDirective,
    GraphQLToUpperDirective,
    GraphQLTemplateDirective,
    GraphQLPhoneDirective
  ]

let schema = makeExecutableSchema(...);

schema._directives.push.apply(schema._directives, directives);
applySchemaCustomDirectives(schema);

Date formatting directives

Adding date directive to graphql query for formatting the result using Moment.

  • Using default date format:
  query {
    input(value: "2016-01-01T00:00:00") @date
  }
  // => { input: "01 Jan 2016 00:00" }
  • Using specific moment format:
  query {
    input(value: "2016-01-01T00:00:00") @date(as:"YYYY")
  }
// => { input: "2016" }
  • Using days ago format
  query {
    input(value: "${(new Date).toISOString()}") @date(as:"days ago")
  }
  // => { input: "0 days ago" }

Number formatting directives

Adding number directive to graphql query for formatting the result using Numeral-js.

  • Using default format:
  query {
    input(value: "1500.404") @number
  }
  // => { input: "1,500" }
  • Using specific numeral format:
  query {
    input(value: "-1500.404") @number(as:"(0,0.00)")
  }
  // => { input: "(1,500.40)" }
  • Using default currency format:
  query {
    input(value: "1500") @currency
  }
  // => { input: "$1,500)" }

String formatting directives

Adding string directive to graphql query for formatting the result using Lodash.

  • Using lowerCase directive:
  query {
    input(value: "FOO BAR") @lowerCase
  }
  // => { input: "foo bar" }
  • Using upperCase directive:
  query {
    input(value: "foo bar") @upperCase
  }
  // => { input: "FOO BAR" }
  • Using camelCase directive:
  query {
    input(value: "foo bar") @camelCase
  }
  // => { input: "fooBar" }
  • Using startCase directive:
  query {
    input(value: "foo bar") @startCase
  }
  // => { input: "Foo Bar" }
  • Using capitalize directive:
  query {
    input(value: "foo bar") @capitalize
  }
  // => { input: "Foo var" }
  • Using kebabCase directive:
  query {
    input(value: "foo bar") @kebabCase
  }
  // => { input: "foo-bar" }
  • Using trim directive:
  query {
    input(value: "  foo bar  ") @trim
  }
  // => { input: "foo bar" }
  • Using default directive:
  query {
    input @default(to:"N/A")
  }
  // => { input: "N/A" }
  • Using toLower directive:
  query {
    input(value: "FOO BAR") @toLower
  }
  // => { input: "foo bar" }
  • Using toUpper directive:
  query {
    input(value: "foo bar") @toUpper
  }
  // => { input: "FOO BAR" }
  • Using template directive:
  query {
    input(value: "foo bar") @template(as:"${input} ${toUpper(input)}")
  }
  // => { input: "foo bar FOO BAR" }
  • Using template together with trim and toUpper directives:
  query {
    input(value: "  foo bar   ") @trim @template(as:"${input} ${input}") @toUpper
  }
  // => { input: "FOO BAR FOO BAR" }

Phone formatting directives

Adding phone directive to graphql query for formatting the result using libphonenumber-js.

  • Using default international format:
  query {
    input(value: "+12133734253") @phone
  }
  // => { input: "+1 213 373 4253" }
  • Using specific format:
  query {
    input(value: "+12133734253") @phone(as: "national")
  }
// => { input: "(213) 373-4253" }
  query {
    input(value: "+12133734253") @phone(as: "RFC3966")
  }
// => { input: "tel:+12133734253" } // URI format

License

The MIT License (MIT)

Copyright (c) 2016 Lirown

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.



鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
ghengeveld/graphql-geojson: GraphQL schema object types for GeoJSON发布时间:2022-06-22
下一篇:
graphql-editor/graphql-editor-cli: 发布时间:2022-06-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap