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
/** routes/branches/index.js */ | |
module.exports = function() { | |
router.get() | |
router.post() | |
} | |
/** routes/index.js */ | |
module.exports = function() { |
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
typealias DCRequestType = (URLRequest, Error) | |
//basically makePostRequest should be a function that returns a URLRequest. Straightforward. | |
// I want the return type to be either a URlRequest or an Error. <URLRequest, Error> something of this kind. | |
// You see what I'm doing right? | |
fileprivate func makePostRequest(apiUrl: String, params: [String: String]) -> <URLRequest, Error> { | |
// build url | |
let urlString = "\(dcoderURL)\(apiUrl)" | |
guard let serviceUrl = URL(string: urlString) else { return nil } |
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
Mutation: { | |
login: (parent, args, context, info) => { | |
const { email } = args; | |
const user = getUserByEmail(email); | |
console.log(context); | |
if (user) { | |
context.req = { | |
...context.req, | |
session: user | |
} |
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
import UIKit | |
extension UIView { | |
/* Usage Example | |
* bgView.addBottomRoundedEdge(desiredCurve: 1.5) | |
*/ | |
func addBottomRoundedEdge(desiredCurve: CGFloat?) { |
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
import React from 'react'; | |
import { Navbar } from 'shared/components'; | |
import { Query } from 'react-apollo'; | |
import gql from 'graphql-tag'; | |
const Home = () => { | |
return ( | |
<> | |
<Navbar isAuthenticated={true} /> | |
<div className="container"> |
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
/** Fetch all conferences */ | |
let selectConferencesQuery; | |
try { | |
selectConferencesQuery = await query( | |
'SELECT id, name, description, dates, tags, image FROM conferences' | |
); | |
} catch (e) {} | |
/** Fetch the count of subevents related to a conference */ | |
const conferenceIds = selectConferencesQuery.results.map( |
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
import { ApolloError } from 'apollo-server'; | |
import jwt from 'jsonwebtoken'; | |
import ConferenceModel from '../models/conference'; | |
import SubeventModel from '../models/subevent'; | |
import uploadImage from '../utils/image-upload'; | |
export default { | |
Mutation: { | |
async createConference(roots, args, context) { | |
const { token } = context; |
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
import React, { Component } from 'react'; | |
import styles from './step-list.module.scss'; | |
class StepList extends Component { | |
steps = [ | |
{ key: 0, title: 'Overview' }, | |
{ key: 1, title: 'Dates' }, | |
{ key: 2, title: 'Add Seminars' }, | |
{ key: 3, title: 'Upload an image' }, | |
{ key: 4, title: 'Preview' } |
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
import React, { Component } from 'react'; | |
class App extends Component { | |
state = { | |
inputs: [], | |
showState: false | |
}; | |
handleSubmit = (event) => { | |
event.preventDefault(); |
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
import React, { Component } from 'react'; | |
class App extends Component { | |
state = { | |
inputs: [], | |
showState: false | |
}; | |
handleSubmit = (event) => { | |
event.preventDefault(); |
NewerOlder