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
import * as faker from 'faker' | |
import gql from 'graphql-tag' | |
import _ from 'lodash' | |
import { SingletonRouter, useRouter } from 'next/router' | |
import pluralize from 'pluralize' | |
import React, { useEffect, useRef, useState } from 'react' | |
import { useForm } from 'react-hook-form' | |
import Select from 'react-select' | |
import { | |
Form, |
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
import moment from 'moment' | |
import Link from 'next/link' | |
import React, { useState } from 'react' | |
import { Button, Icon, Input, Label, Loader, Table } from 'semantic-ui-react' | |
import styled from 'styled-components' | |
import { useProductsQuery } from '../../generated/apollo-components' | |
const ProductsList = () => { | |
const [state, setState] = useState({ | |
column: 'createdAt', |
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
import * as faker from 'faker' | |
import gql from 'graphql-tag' | |
import { SingletonRouter, useRouter } from 'next/router' | |
import pluralize from 'pluralize' | |
import React, { useEffect, useState } from 'react' | |
import { useForm } from 'react-hook-form' | |
import Select from 'react-select' | |
import { | |
Form, | |
Grid, |
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
import * as faker from 'faker' | |
import { SingletonRouter } from 'next/router' | |
import React, { useEffect, useState } from 'react' | |
import { useForm } from 'react-hook-form' | |
import Select from 'react-select' | |
import { | |
Form, | |
Grid, | |
Message, | |
Segment, |
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
import React, { Component, createRef } from 'react' | |
import styled from 'styled-components' | |
import CKeditor from 'react-ckeditor-component' | |
import { withRouter } from 'next/router' | |
import { SortableContainer, arrayMove } from 'react-sortable-hoc' | |
import { Mutation, Query } from 'react-apollo' | |
import axios from 'axios' | |
import CancelSubmitButtons from '../../common/buttons/CancelSubmitButtons' | |
import RemoveButton from '../../common/buttons/RemoveButton' |
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
import * as faker from 'faker' | |
import Select from 'react-select' | |
require('dotenv').config() | |
import React, { useState, useEffect, FormEvent } from 'react' | |
import * as yup from 'yup' | |
import CancelSubmitButtons from '../../common/buttons/CancelSubmitButtons' | |
const ProductSchema = yup.object().shape({ |
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
{"lastUpload":"2019-10-14T20:40:42.002Z","extensionVersion":"v3.4.3"} |
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
import React, {Component} from "react"; | |
import EventListener from "react-event-listener"; | |
export const X_SMALL = 1; | |
export const SMALL = 2; | |
export const H_SMALL = 3; | |
export const MEDIUM = 4; | |
export const X_MEDIUM = 5; | |
export const LARGE = 6; |
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
import React, {PropTypes} from 'react'; | |
import Radium from 'radium'; | |
import muiTheme from '../../../../../../../../../configuration/webapp/muiTheme.js'; | |
class SearchCard_Classic_Header extends React.Component { | |
static propTypes = { | |
customHeaderStyle: PropTypes.object, | |
danger: PropTypes.bool, | |
primary: PropTypes.bool, | |
}; |
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
import React, {PropTypes} from 'react'; | |
import Radium from 'radium'; | |
import muiTheme from '../../../../../../../../../configuration/webapp/muiTheme.js'; | |
class SearchCard_Classic extends React.Component { | |
static propTypes = { | |
borderRadius: PropTypes.number, | |
danger: PropTypes.bool, | |
primary: PropTypes.bool, | |
}; |
NewerOlder