diff --git a/.gitignore b/.gitignore index 9cfc02d..00f8379 100644 --- a/.gitignore +++ b/.gitignore @@ -63,4 +63,5 @@ typings/ /nbproject/private/ .vscode .serverless -.cache \ No newline at end of file +.cache +yarn.lock \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 9afebea..0000000 --- a/.travis.yml +++ /dev/null @@ -1,32 +0,0 @@ -language: node_js - -node_js: - - "10.16.3" - -cache: - yarn: true - directories: - - node_modules - -matrix: - include: - - env: PROJECT=src/private/ - include: - - env: PROJECT=src/public/ - -install: - - cd $PROJECT - - yarn global add serverless - - yarn install - -script: - - yarn test - - yarn build - -deploy: - provider: script - script: - - yarn deploy - skip_cleanup: true - on: - branch: master \ No newline at end of file diff --git a/main.yml b/main.yml new file mode 100644 index 0000000..f04d624 --- /dev/null +++ b/main.yml @@ -0,0 +1,25 @@ +name: CI +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + workflow_dispatch: + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - name: Checkout 🛎️ + uses: actions/checkout@v2.3.1 + + - name: Install and Build + run: | + npm install + npm run compile + + - name: Deploy + uses: JamesIves/github-pages-deploy-action@4.1.0 + with: + branch: gh-pages + folder: dist \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..f197a35 --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "domsplace", + "version": "7.0.0", + "main": "index.js", + "license": "MIT", + "scripts": { + "start": "ts-node ./src/serve", + "compile": "ts-node ./src/compile" + }, + "dependencies": { + "@types/express": "^4.17.11", + "express": "^4.17.1", + "ts-node": "^9.1.1", + "typescript": "^4.2.3" + } +} diff --git a/src/compile.ts b/src/compile.ts new file mode 100644 index 0000000..2515c5d --- /dev/null +++ b/src/compile.ts @@ -0,0 +1,3 @@ +import { pageCompileAll } from "./compiler"; + +pageCompileAll(); \ No newline at end of file diff --git a/src/compiler.ts b/src/compiler.ts new file mode 100644 index 0000000..ae97eff --- /dev/null +++ b/src/compiler.ts @@ -0,0 +1,75 @@ +// Copyright (c) 2021 Dominic Masters +// +// This software is released under the MIT License. +// https://opensource.org/licenses/MIT + +import * as fs from 'fs'; +import * as path from 'path'; + +// Path Definitions +export const PATH_HTML = path.join(__dirname, 'html'); +export const PATH_CSS = path.join(__dirname, 'css'); +export const PATH_OUT = path.join(__dirname, '..', 'dist'); + +// Load Methods +const loadFile = (dir:string, ext:string) => { + const bits = dir.split('/').join('\\').split('\\'); + const fileName = bits.pop(); + const fullDir = path.join(__dirname, ...bits, `${fileName}.${ext}`); + + if(!fs.existsSync(fullDir)) return ''; + return fs.readFileSync(fullDir, 'utf-8'); +} + +const loadHtml = (fn:string) => loadFile(fn, 'html'); +const loadCss = (fn:string) => loadFile(fn, 'css'); + +const pageCompile = (page:string) => { + // Load Layout + const htmlLayout = loadHtml('partials/layout/layout'); + const cssLayout = loadCss('partials/layout/layout'); + + // Load Page + const htmlPage = loadHtml(`pages/${page}/${page}`); + const cssPage = loadCss(`pages/${page}/${page}`); + + // Inject styles + let compiled = htmlLayout.replace('{{styles}}', [ + cssLayout, + cssPage + ].join('\n')); + + // Inject content + compiled = compiled.replace('{{main}}', htmlPage); + + // Inject variables + Object.entries({ + 'year': new Date().getFullYear() + }).forEach(entry => { + const [ key, value ] = entry; + const variable = `{{${key}}}`; + while(compiled.includes(variable)) { + compiled = compiled.replace(variable, `${value}`); + } + }); + + return compiled; +} + +const pageGenerate = (out:string, page:string) => { + const compiled = pageCompile(page); + console.log(page, '->', out); + if(!fs.existsSync(PATH_OUT)) fs.mkdirSync(PATH_OUT); + fs.writeFileSync(path.join(PATH_OUT, `${out}.html`), compiled); +} + +export const pageCompileAll = () => { + // Read pages + Object.entries({ + 'index': 'home', + 'privacy': 'privacy' + }).forEach(entry => { + const [ out, page ] = entry; + pageGenerate(out, page); + }); +} diff --git a/src/pages/home/home.css b/src/pages/home/home.css new file mode 100644 index 0000000..e69de29 diff --git a/src/pages/home/home.html b/src/pages/home/home.html new file mode 100644 index 0000000..7893ade --- /dev/null +++ b/src/pages/home/home.html @@ -0,0 +1,107 @@ +
+

Dominic Masters

+

Developer, Nerd, Occasionally Funny.

+ +

+ Australian nerd with a passion for all things computing, coffee and + video games. Currently residing in Sydney, Australia. +

+ +

+ Programming since before the internet was cool. +

+
+ +
+ +
+

Programming Technical Lead

+

+ I am a programmer born and bred. Developing since I was old enough to + type on a keyboard and continue to refine my skills more and more + every day. Backed by 14 years of experience and countless lines of code + committed. +

+ +

+ Background with more anagrams than a bureaucrat, here are some of the + highlights only; +

+

+
+ +
+ + +
+

Shopify Expert

+

+ I'm currently working full-time as a Technical Lead working with the + Shopify Plus platform. I have been working with the platform + every day for over 4 years, and enjoy working with it immensely. +

+ +

+ Working with Liquid, REST and GraphQL App Development and general + Shopify consulting. I have had the privilage of working with countless + Shopify Plus clients. +

+ +

+ Despite Shopify's reputation, I have been able to make it do tricks + thought impossible. I find working with Shopify's unique quirks very + rewarding, and continuously find ways to surprise everyone, including + myself. +

+
+ +
+ +
+

Personal

+

+ I spend most of my spare time considering programming concepts, and + take a very pragmatic approach to planning software development. I + enjoy unpacking what programming itself means and entails to come up + with new paradigms to use in my job. +

+ +

+ I also have an appreciation for the raw power of technology and making + something beautiful and intricate out of the minimal amount of tools. + Hence this website appearing so basic. +

+ +

+ I also enjoy video games and antique electronics. I still own four old + CRT Monitors that I love and use as my primary video game displays. +

+
+ +
+ +
+

Social

+

+ I don't do social media often, however you can find me below. + For business enquiries contact I suggest LinkedIn. +

+ +

LinkedIn

+

GitHub

+

Twitter

+
\ No newline at end of file diff --git a/src/pages/privacy/privacy.html b/src/pages/privacy/privacy.html new file mode 100644 index 0000000..2f0a0a4 --- /dev/null +++ b/src/pages/privacy/privacy.html @@ -0,0 +1,175 @@ +

Privacy Policy

+

Effective date: June 27, 2018

+

+ domsPlace ("us", "we", or "our") operates + the https://domsplace.com website (the + "Service"). +

+ +

+ This page informs you of our policies regarding the collection, use, and + disclosure of personal data when you use our Service and the choices you + have associated with that data. +

+ +

+ We use your data to provide and improve the Service. By using the + Service, you agree to the collection and use of information in + accordance with this policy. Unless otherwise defined in this Privacy + Policy, terms used in this Privacy Policy have the same meanings as in + our Terms and Conditions, accessible from + https://domsplace.com + +

+ + +
+ + +

Information Collection And Use

+

+ We collect several different types of information for various purposes + to provide and improve our Service to you. +

+ +

Types of Data Collected

+

Personal Data

+

+ While using our Service, we may ask you to provide us with certain + personally identifiable information that can be used to contact or + identify you ("Personal Data"). Personally identifiable information may + include, but is not limited to: +

+ + +

Usage Data

+

+ We may also collect information how the Service is accessed and used = + ("Usage Data"). This Usage Data may include information such as your + computer's Internet Protocol address (e.g. IP address), browser type, + browser version, the pages of our Service that you visit, the time and + date of your visit, the time spent on those pages, unique device + identifiers and other diagnostic data. +

+ +

Tracking & Cookies Data

+

+ We use cookies and similar tracking technologies to track the activity + on our Service and hold certain information. +

+

+ Cookies are files with small amount of data which may include an + anonymous unique identifier. Cookies are sent to your browser from a + website and stored on your device. Tracking technologies also used are + beacons, tags, and scripts to collect and track information and to + improve and analyze our Service. +

+

+ You can instruct your browser to refuse all cookies or to indicate when + a cookie is being sent. However, if you do not accept cookies, you may + not be able to use some portions of our Service. +

+

Examples of Cookies we use:

+ + + +
+ + +

Use of Data

+

domsPlace uses the collected data for various purposes:

+ + + +
+ + +

Transfer Of Data

+

Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from your jurisdiction.

+

If you are located outside Australia and choose to provide information to us, please note that we transfer the data, including Personal Data, to Australia and process it there.

+

Your consent to this Privacy Policy followed by your submission of such information represents your agreement to that transfer.

+

domsPlace will take all steps reasonably necessary to ensure that your data is treated securely and in accordance with this Privacy Policy and no transfer of your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of your data and other personal information.

+ + +
+ + +

Disclosure Of Data

+

Legal Requirements

+

domsPlace may disclose your Personal Data in the good faith belief that such action is necessary to:

+ + + +
+ + +

Security Of Data

+

The security of your data is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Data, we cannot guarantee its absolute security.

+ + +
+ + +

Service Providers

+

We may employ third party companies and individuals to facilitate our Service ("Service Providers"), to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.

+

These third parties have access to your Personal Data only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.

+ +

Analytics

+

We may use third-party Service Providers to monitor and analyze the use of our Service.

+ + + +
+ + +

Links To Other Sites

+

Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party's site. We strongly advise you to review the Privacy Policy of every site you visit.

+

We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.

+ + +
+ + +

Children's Privacy

+

Our Service does not address anyone under the age of 18 ("Children").

+

We do not knowingly collect personally identifiable information from anyone under the age of 18. If you are a parent or guardian and you are aware that your Children has provided us with Personal Data, please contact us. If we become aware that we have collected Personal Data from children without verification of parental consent, we take steps to remove that information from our servers.

+ + +
+ + +

Changes To This Privacy Policy

+

We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.

+

We will let you know via email and/or a prominent notice on our Service, prior to the change becoming effective and update the "effective date" at the top of this Privacy Policy.

+

You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

\ No newline at end of file diff --git a/src/partials/layout/layout.css b/src/partials/layout/layout.css new file mode 100644 index 0000000..be145d3 --- /dev/null +++ b/src/partials/layout/layout.css @@ -0,0 +1,69 @@ +/* Elements */ +* { + box-sizing: border-box; +} + +html,body { + margin: 0; + padding: 0; + font-size: 16px; + background: #000; + color: #FFF; + font-family: monospace; +} + +a { color: #00F; text-decoration: underline; } +a:visited,a:active { color: #C0F; } +a:hover { text-decoration: none; } + + +/* Objects */ +.o-break { + padding: 3rem 0; +} + + +/* Components */ +.c-header { + text-align: center; + padding: 4rem 1rem; + font-weight: bold; + max-width: 800px; + margin: auto; +} + +.c-header__title { + font-size: 1.5rem; +} + +.c-header__title-link { + color: inherit; + text-decoration: none; +} +.c-header__title-link:visited,.c-header__title-link:active { + color: inherit; +} + +.c-header__subtitle { + font-style: italic; +} + + +.c-main { + max-width: 800px; + margin: auto; + padding: 0 1em; +} + + +.c-footer { + text-align: center; + padding: 12rem 1rem 10rem; + font-weight: bold; + max-width: 800px; + margin: auto; +} + +.c-footer__link + .c-footer__link { + margin-left: 0.5rem; +} \ No newline at end of file diff --git a/src/partials/layout/layout.html b/src/partials/layout/layout.html new file mode 100644 index 0000000..ce2e5fd --- /dev/null +++ b/src/partials/layout/layout.html @@ -0,0 +1,45 @@ + + + + + + + domsPlace, Personal Website of Technical Lead Dominic Masters + + + + + + + +
+

+ + domsPlace, Personal website of Dominic Masters. + +

+ +

+ Wow, I can't believe it's not React! +

+
+ +
+ {{main}} +
+ + + + \ No newline at end of file diff --git a/src/private/.gitignore b/src/private/.gitignore deleted file mode 100644 index f770a93..0000000 --- a/src/private/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -dist/ -*.log -*.lock \ No newline at end of file diff --git a/src/private/jest.config.js b/src/private/jest.config.js deleted file mode 100644 index af3e56e..0000000 --- a/src/private/jest.config.js +++ /dev/null @@ -1,14 +0,0 @@ -module.exports = { - "roots": [ - "/src" - ], - "transform": { - "^.+\\.ts?$": "ts-jest" - }, - "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts?$", - "moduleFileExtensions": [ - "ts", - "js", - "json" - ] -} diff --git a/src/private/package.json b/src/private/package.json deleted file mode 100644 index f438fa1..0000000 --- a/src/private/package.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "name": "domsplace-backend", - "version": "7.0.0", - "description": "Personal website for Dominic \"YouWish\" Masters.", - "main": "./dist/private/", - "scripts": { - "build": "tsc -p .", - "start:prod": "cross-env NODE_ENV=production \"serverless offline\"", - "start:dev": "cross-env NODE_ENV=development \"serverless offline --port 3001\"", - "start": "npm run start:prod", - "watch": "npm run start:dev", - "deploy": "serverless deploy", - "test": "yarn jest" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/YourWishes/domsPlace.git" - }, - "keywords": [ - "domsplace", - "personal", - "portfolio", - "website" - ], - "author": "Dominic Masters", - "license": "MIT", - "bugs": { - "url": "https://github.com/YourWishes/domsPlace/issues" - }, - "homepage": "https://github.com/YourWishes/domsPlace#readme", - "dependencies": { - "email-validator": "^2.0.4", - "nodemailer": "^6.3.0", - "serverless-plugin-include-dependencies": "^3.2.1" - }, - "devDependencies": { - "@types/jest": "^25.1.1", - "@types/node": "^12.7.1", - "@types/nodemailer": "^6.2.1", - "cross-env": "^5.2.0", - "escape-html": "^1.0.3", - "jest": "^24.9.0", - "serverless": "^1.51.0", - "serverless-finch": "^2.4.3", - "serverless-offline": "^5.11.0", - "ts-jest": "^24.1.0", - "ts-node": "^8.3.0", - "typescript": "^3.5.3", - "utility-types": "^3.7.0" - } -} diff --git a/src/private/serverless.yml b/src/private/serverless.yml deleted file mode 100644 index 31bfe21..0000000 --- a/src/private/serverless.yml +++ /dev/null @@ -1,53 +0,0 @@ -org: yourwishes -service: domsplace - -frameworkVersion: ">=1.26.0" - -package: - excludeDevDependencies: false - individually: true - include: - - dist/** - -provider: - name: aws - runtime: nodejs10.x - stage: ${opt:stage, "prod"} - region: ap-southeast-2 - memorySize: 512 - deploymentBucket: - name: domsplace-${self:provider.stage}-${self:provider.region}-private - environment: - EMAIL_HOST: ${self:custom.variables.email.host} - EMAIL_PORT: ${self:custom.variables.email.port} - EMAIL_USER: ${self:custom.variables.email.user} - EMAIL_PASS: ${self:custom.variables.email.pass} - EMAIL_DEST: ${self:custom.variables.email.dest} - -functions: - ping: - handler: dist/functions/ping/ping.ping - events: - - http: - method: GET - path: ping - cors: true - sendMail: - handler: dist/functions/mail/send.sendMail - events: - - http: - method: POST - path: mail/send - cors: true - -plugins: - - serverless-plugin-include-dependencies - - serverless-offline - -custom: - ssm: '/aws/reference/secretsmanager/prod.domsPlace.' - serverless-offline: - disableCookieValidation: true - port: 3001 - variables: - email: ${ssm:${self:custom.ssm}email~true} \ No newline at end of file diff --git a/src/private/src/functions/mail/__tests__/send.test.ts b/src/private/src/functions/mail/__tests__/send.test.ts deleted file mode 100644 index 37a2a39..0000000 --- a/src/private/src/functions/mail/__tests__/send.test.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { sendMail } from './../send'; - -describe('sendMail', () => { - it('should require a body', async () => { - await expect(sendMail({ body: null })).resolves.toHaveProperty('statusCode', 400); - }); - -}) \ No newline at end of file diff --git a/src/private/src/functions/mail/send.ts b/src/private/src/functions/mail/send.ts deleted file mode 100644 index 0b83717..0000000 --- a/src/private/src/functions/mail/send.ts +++ /dev/null @@ -1,56 +0,0 @@ -import { withHandler } from "../../handler/handler"; -import { validate } from 'email-validator'; -import { createTransport } from 'nodemailer'; -import * as escapeHTML from 'escape-html'; - -export interface sendMailParams { - name:string; - email:string; - message:string; -} - -export const sendMail = withHandler(async (e,c) => { - if(!e.body) return { statusCode: 400, body: 'Missing Contact Details' }; - - let { name, email, message } = e.body; - if(!name) return { statusCode: 400, body: 'Missing Contact Name' }; - if(!email) return { statusCode: 400, body: 'Missing Contact Email' }; - if(!message) return { statusCode: 400, body: 'Missing Contact Message' }; - - //Validate - if(name.length > 128 || !name.replace(/\s/g, '').length) return { statusCode: 400, body: 'Invalid Name' }; - if(!validate(email)) return { statusCode: 400, body: 'Invalid Email' }; - if(message.length > 10000 || !message.replace(/\s/g,'').length) { - return { statusCode: 400, body: 'Invalid Messatge' }; - } - - //Prepare mail - let { - EMAIL_HOST, EMAIL_PORT, EMAIL_USER, EMAIL_PASS, EMAIL_DEST, EMAIL_FROM - } = process.env - - let transporter = createTransport({ - host: EMAIL_HOST, - port: parseInt(EMAIL_PORT), - secure: true, - auth: { - user: EMAIL_USER, pass: EMAIL_PASS - } - }); - - let x = await transporter.sendMail({ - from: `${name} <${email}>`, - to: EMAIL_DEST, - subject: 'Contact Message Received', - text: `Contact Message Received:\n${message}\nFrom: ${name} ${email}`, - html: ` -

Contact Message Received

-

You have received a contact message from ${escapeHTML(name)} - ${escapeHTML(email)} who wrote:

-

- ${escapeHTML(message)} -

- Time: ${new Date().toLocaleString()} - ` - }); - return { statusCode: 200, body: x && x.accepted && x.accepted.length ? true : false } -}); \ No newline at end of file diff --git a/src/private/src/functions/ping/__tests__/ping.test.ts b/src/private/src/functions/ping/__tests__/ping.test.ts deleted file mode 100644 index e143b7a..0000000 --- a/src/private/src/functions/ping/__tests__/ping.test.ts +++ /dev/null @@ -1,8 +0,0 @@ -import { ping } from './../ping'; - -describe('ping', () => { - it('shold return a hello world and a 200 code', async () => { - await expect(ping()).resolves.toHaveProperty('body', 'Thank funk!'); - await expect(ping()).resolves.toHaveProperty('statusCode', 200); - }) -}) \ No newline at end of file diff --git a/src/private/src/functions/ping/ping.ts b/src/private/src/functions/ping/ping.ts deleted file mode 100644 index d95417c..0000000 --- a/src/private/src/functions/ping/ping.ts +++ /dev/null @@ -1,5 +0,0 @@ -import { withHandler } from "../../handler/handler"; - -export const ping = withHandler(async () => { - return { statusCode: 200, body: 'Thank funk!' }; -}); \ No newline at end of file diff --git a/src/private/src/handler/__tests__/handler.test.ts b/src/private/src/handler/__tests__/handler.test.ts deleted file mode 100644 index a2fcd41..0000000 --- a/src/private/src/handler/__tests__/handler.test.ts +++ /dev/null @@ -1,43 +0,0 @@ -import { withHandler, APICallable, DEFAULT_HEADERS } from './../handler'; - -describe('withHandler', () => { - it('should wrap an async function into a serverless callbackable function', () => { - let callbackable = jest.fn(async () => ({ body: 'Hello World', statusCode: 200 })); - let x = withHandler(callbackable); - expect(typeof x).toBe('function'); - }); - - it('should call the promise and pass the result to the callback', async () => { - let callbackable = async () => ({ body: 'Hello World', statusCode: 200 }); - let x = withHandler(callbackable); - let fn = jest.fn(); - - x({} as any, null, fn); - - await new Promise(resolve => setImmediate(resolve)); - - expect(fn).toHaveBeenCalled(); - }); - - it('should set the content type', async () => { - let x = withHandler(async () => ({ body: 'Hello World', statusCode: 200 })); - let fn = jest.fn(); - - x({} as any, null, fn); - - await new Promise(resolve => setImmediate(resolve)); - - expect(fn).toHaveBeenCalledWith(null, { body: '"Hello World"', statusCode: 200, - headers: DEFAULT_HEADERS - }); - }); - - it('should return the invoked functions returned promise', async () => { - let x = withHandler(async () => ({ body: 'Hello World', statusCode: 200 })); - let fn = jest.fn(); - let prom = x({} as any, null, fn); - - let result = await prom; - expect(result).toStrictEqual({ body: 'Hello World', statusCode: 200 }); - }) -}) \ No newline at end of file diff --git a/src/private/src/handler/handler.ts b/src/private/src/handler/handler.ts deleted file mode 100644 index 04a99c8..0000000 --- a/src/private/src/handler/handler.ts +++ /dev/null @@ -1,71 +0,0 @@ -export const DEFAULT_HEADERS = { - 'Content-Type': 'application/json', - 'Access-Control-Allow-Origin': '*', - 'Access-Control-Allow-Credentials': true -} - -export type APIResponse = { - statusCode?:number; - body:any; - headers?:{ - [key:string]:string, - "Content-Type"?:string - }; -} - -export type APICallable = (event:APIEvent, context:any) => Promise; - -export type APIMethod = 'GET'|'POST'|'PUT'|'PATCH'|'DELETE'|'TRACE'|'OPTIONS'|'CONNECT'; - -export interface APIEvent { - body:T; - headers?:{[key:string]:string}; - httpMethod?:APIMethod; - isOffline?:boolean; - multiValueHeaders?:{[key:string]:string}; - multiValueQueryStringParameters?:{[key:string]:string}; - path?:string; - pathParameters?:never; - queryStringParameters?:{[key:string]:string}; - requestContext?:{[key:string]:string}; - resource?:string; - stageVariables?:any; -} - -export const withHandler = (callable:APICallable) => { - return (event?:APIEvent, context?, callback?) => { - try { - if(!event) throw new Error(); - if(event.body) event.body = JSON.parse(event.body as any) as T; - } catch(e) { - console.error(e); - callback(null, { - statusCode: 400, headers: DEFAULT_HEADERS, - body: JSON.stringify('Invalid body') - }); - } - - return callable(event, context).then(d => { - if(!callback) return d; - let contentType = (d.headers?d.headers['Content-Type']:null) || 'application/json'; - let json = contentType.indexOf('application/json') !== -1; - - callback(null, { - ...d, - body: json ? JSON.stringify(d.body) : d.body, - statusCode: d.statusCode || 200, - headers: { - ...DEFAULT_HEADERS, - ...(d.headers||{}) - } - }); - - return d; - }).catch(ex => { - if(callback) { - callback(null, { statusCode: 500, body: null, headers: DEFAULT_HEADERS }); - } - throw ex; - }) - }; -} \ No newline at end of file diff --git a/src/private/tsconfig.json b/src/private/tsconfig.json deleted file mode 100644 index 4764d7d..0000000 --- a/src/private/tsconfig.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "compilerOptions": { - "outDir": "./dist", - "target": "es5", - "module": "commonjs", - "noImplicitAny": false, - "sourceMap": true, - "baseUrl": "./src/" - }, - "include": [ - "./src/**/*.ts" - ], - "exclude": ["node_modules", "**/*.test.ts"] -} diff --git a/src/public/.gitignore b/src/public/.gitignore deleted file mode 100644 index 56af776..0000000 --- a/src/public/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -public/ -*.lock diff --git a/src/public/gatsby-browser.js b/src/public/gatsby-browser.js deleted file mode 100644 index 55a9428..0000000 --- a/src/public/gatsby-browser.js +++ /dev/null @@ -1 +0,0 @@ -import 'normalize.css'; \ No newline at end of file diff --git a/src/public/gatsby-config.js b/src/public/gatsby-config.js deleted file mode 100644 index 19c17e9..0000000 --- a/src/public/gatsby-config.js +++ /dev/null @@ -1,49 +0,0 @@ -const path = require('path'); -const TSConfig = require('./tsconfig.json'); - -module.exports = { - plugins: [ - { - resolve: `gatsby-source-filesystem`, - options: { - path: path.join(__dirname, 'src', 'assets', 'images'), - name: 'images' - } - }, - - 'gatsby-plugin-typescript', - 'gatsby-plugin-react-helmet', - 'gatsby-plugin-styled-components', - 'gatsby-transformer-sharp', - 'gatsby-plugin-sharp', - - { - resolve: 'gatsby-plugin-alias-imports', - options: { - alias: Object.entries(TSConfig.compilerOptions.paths).reduce((x, [key, value]) => { - let k = key.split('/').filter(f => f && f != '*').join('/'); - let v = value.find(v => v).split('/').filter(f => f && f != '*'); - return { ...x, [k]: path.resolve(__dirname, TSConfig.compilerOptions.baseUrl, ...v) }; - }, {}) - } - }, - - { - resolve: 'gatsby-plugin-google-fonts', - options: { - fonts: [ - 'Bitter', - 'Nanum Gothic' - ], - display: 'swap' - } - }, - - { - resolve: `gatsby-plugin-layout`, - options: { - component: require.resolve(`./src/layouts/main.tsx`), - }, - } - ] -} diff --git a/src/public/package.json b/src/public/package.json deleted file mode 100644 index 7d921eb..0000000 --- a/src/public/package.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "domsplace-frontend", - "version": "8.0.0", - "description": "Personal website for Dominic \"YourWishes\" Masters.", - "scripts": { - "build": "gatsby build", - "develop": "gatsby develop", - "start": "npm run develop", - "serve": "gatsby serve", - "deploy": "serverless client deploy --no-confirm", - "clean": "gatsby clean", - "test": "echo \"No tests defined\"" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/YourWishes/domsPlaceNew.git" - }, - "keywords": [ - "domsplace", - "personal", - "portfolio", - "website" - ], - "author": "Dominic Masters", - "license": "MIT", - "bugs": { - "url": "https://github.com/YourWishes/domsPlaceNew/issues" - }, - "homepage": "https://domsplace.com", - "dependencies": { - "babel-plugin-styled-components": "^1.10.7", - "gatsby": "^2.18.12", - "gatsby-image": "^2.2.39", - "gatsby-plugin-alias-imports": "^1.0.5", - "gatsby-plugin-google-fonts": "^1.0.1", - "gatsby-plugin-layout": "^1.1.22", - "gatsby-plugin-react-helmet": "^3.1.21", - "gatsby-plugin-sharp": "^2.4.3", - "gatsby-plugin-styled-components": "^3.1.18", - "gatsby-plugin-typescript": "^2.1.26", - "gatsby-source-filesystem": "^2.1.46", - "gatsby-transformer-sharp": "^2.3.13", - "normalize.css": "^8.0.1", - "react": "^16.12.0", - "react-dom": "^16.12.0", - "react-helmet": "^5.2.1", - "react-hook-form": "^4.8.0", - "react-syntax-highlighter": "^12.2.1", - "react-transition-group": "^4.3.0", - "styled-components": "^5.0.0", - "yup": "^0.28.1" - }, - "devDependencies": { - "@types/node": "^13.5.0", - "@types/react": "^16.9.19", - "@types/react-dom": "^16.9.5", - "@types/react-helmet": "^5.0.15", - "@types/react-transition-group": "^4.2.3", - "@types/styled-components": "^4.4.2", - "@types/yup": "^0.26.29", - "serverless": "^1.63.0", - "serverless-finch": "^2.5.2", - "serverless-plugin-include-dependencies": "^4.0.1" - }, - "browserslist": [ - ">0.2%", - "not dead", - "not ie <= 11", - "not op_mini all" - ] -} diff --git a/src/public/serverless.yml b/src/public/serverless.yml deleted file mode 100644 index d88e129..0000000 --- a/src/public/serverless.yml +++ /dev/null @@ -1,28 +0,0 @@ -org: yourwishes -service: domsplace - -frameworkVersion: ">=1.26.0" - -provider: - name: aws - runtime: nodejs10.x - stage: ${opt:stage, "prod"} - region: ap-southeast-2 - memorySize: 512 - -package: - excludeDevDependencies: false - individually: true - include: - - public/** - -plugins: - - serverless-plugin-include-dependencies - - serverless-finch - -custom: - client: - bucketName: domsplace-${self:provider.stage}-${self:provider.region}-public - distributionFolder: public/ - indexDocument: index.html - errorDocument: index.html \ No newline at end of file diff --git a/src/public/src/api/APIRequest.tsx b/src/public/src/api/APIRequest.tsx deleted file mode 100644 index fbff0a6..0000000 --- a/src/public/src/api/APIRequest.tsx +++ /dev/null @@ -1,11 +0,0 @@ -export const APIRequest = (url:string, body?:object) => { - return fetch(`https://api.domsplace.com/v1/${url}`, { - method: body ? 'POST' : 'GET', - body: body ? JSON.stringify(body) : null, - mode: 'no-cors', - headers: { - 'Content-Type': 'application/json', - 'Accept': 'application/json' - } - }).then(e => e.json()); -} \ No newline at end of file diff --git a/src/public/src/api/SendMail.tsx b/src/public/src/api/SendMail.tsx deleted file mode 100644 index e2e38f8..0000000 --- a/src/public/src/api/SendMail.tsx +++ /dev/null @@ -1,7 +0,0 @@ -import { APIRequest } from "./APIRequest"; - -export interface SendMailParams { - name:string, email:string, message:string -}; - -export const sendMail = (data:SendMailParams) => APIRequest('mail/send', data).then(e => e.body); \ No newline at end of file diff --git a/src/public/src/assets/images/branding/cpp/cpp-logo.svg b/src/public/src/assets/images/branding/cpp/cpp-logo.svg deleted file mode 100644 index 5e11707..0000000 --- a/src/public/src/assets/images/branding/cpp/cpp-logo.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/csharp/csharp-logo.svg b/src/public/src/assets/images/branding/csharp/csharp-logo.svg deleted file mode 100644 index ddc79cd..0000000 --- a/src/public/src/assets/images/branding/csharp/csharp-logo.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/digitalocean/digitalocean-logo.svg b/src/public/src/assets/images/branding/digitalocean/digitalocean-logo.svg deleted file mode 100644 index 0026c1b..0000000 --- a/src/public/src/assets/images/branding/digitalocean/digitalocean-logo.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/discord/discord-logo.svg b/src/public/src/assets/images/branding/discord/discord-logo.svg deleted file mode 100644 index 65c9fcc..0000000 --- a/src/public/src/assets/images/branding/discord/discord-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/google-cloud/google-cloud-logo.svg b/src/public/src/assets/images/branding/google-cloud/google-cloud-logo.svg deleted file mode 100644 index 6fd725f..0000000 --- a/src/public/src/assets/images/branding/google-cloud/google-cloud-logo.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/graphql/graphql-logo.svg b/src/public/src/assets/images/branding/graphql/graphql-logo.svg deleted file mode 100644 index 14082a5..0000000 --- a/src/public/src/assets/images/branding/graphql/graphql-logo.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/heroku/heroku-logo.svg b/src/public/src/assets/images/branding/heroku/heroku-logo.svg deleted file mode 100644 index c287cd8..0000000 --- a/src/public/src/assets/images/branding/heroku/heroku-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/java/java-logo.svg b/src/public/src/assets/images/branding/java/java-logo.svg deleted file mode 100644 index 28d4a95..0000000 --- a/src/public/src/assets/images/branding/java/java-logo.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/jquery/jquery-logo.svg b/src/public/src/assets/images/branding/jquery/jquery-logo.svg deleted file mode 100644 index 621989a..0000000 --- a/src/public/src/assets/images/branding/jquery/jquery-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/lwjgl/lwjgl-logo.svg b/src/public/src/assets/images/branding/lwjgl/lwjgl-logo.svg deleted file mode 100644 index 3410765..0000000 --- a/src/public/src/assets/images/branding/lwjgl/lwjgl-logo.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/monogame/monogame-logo.svg b/src/public/src/assets/images/branding/monogame/monogame-logo.svg deleted file mode 100644 index 226a1d2..0000000 --- a/src/public/src/assets/images/branding/monogame/monogame-logo.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/mysql/mysql-logo.svg b/src/public/src/assets/images/branding/mysql/mysql-logo.svg deleted file mode 100644 index 98ebde9..0000000 --- a/src/public/src/assets/images/branding/mysql/mysql-logo.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - diff --git a/src/public/src/assets/images/branding/neto/neto-logo.svg b/src/public/src/assets/images/branding/neto/neto-logo.svg deleted file mode 100644 index fad1b20..0000000 --- a/src/public/src/assets/images/branding/neto/neto-logo.svg +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/nodejs/nodejs-logo.svg b/src/public/src/assets/images/branding/nodejs/nodejs-logo.svg deleted file mode 100644 index b51f302..0000000 --- a/src/public/src/assets/images/branding/nodejs/nodejs-logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/opengl/opengl-logo.svg b/src/public/src/assets/images/branding/opengl/opengl-logo.svg deleted file mode 100644 index 84c5d12..0000000 --- a/src/public/src/assets/images/branding/opengl/opengl-logo.svg +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - diff --git a/src/public/src/assets/images/branding/pgsql/pgsql-logo.svg b/src/public/src/assets/images/branding/pgsql/pgsql-logo.svg deleted file mode 100644 index 8666f75..0000000 --- a/src/public/src/assets/images/branding/pgsql/pgsql-logo.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/php/php-logo.svg b/src/public/src/assets/images/branding/php/php-logo.svg deleted file mode 100644 index e4f137c..0000000 --- a/src/public/src/assets/images/branding/php/php-logo.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - Official PHP Logo - - - - image/svg+xml - - Official PHP Logo - - - Colin Viebrock - - - - - - - - - - - - Copyright Colin Viebrock 1997 - All rights reserved. - - - 1997 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/src/public/src/assets/images/branding/react/react-logo.svg b/src/public/src/assets/images/branding/react/react-logo.svg deleted file mode 100644 index b3887f3..0000000 --- a/src/public/src/assets/images/branding/react/react-logo.svg +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/redux/redux-logo.svg b/src/public/src/assets/images/branding/redux/redux-logo.svg deleted file mode 100644 index 62f4d5c..0000000 --- a/src/public/src/assets/images/branding/redux/redux-logo.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/shopify/shopify-logo.svg b/src/public/src/assets/images/branding/shopify/shopify-logo.svg deleted file mode 100644 index 7c88138..0000000 --- a/src/public/src/assets/images/branding/shopify/shopify-logo.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - diff --git a/src/public/src/assets/images/branding/twitch/twitch-logo.svg b/src/public/src/assets/images/branding/twitch/twitch-logo.svg deleted file mode 100644 index 905e364..0000000 --- a/src/public/src/assets/images/branding/twitch/twitch-logo.svg +++ /dev/null @@ -1 +0,0 @@ -Glitch \ No newline at end of file diff --git a/src/public/src/assets/images/branding/twitter/twitter-logo.svg b/src/public/src/assets/images/branding/twitter/twitter-logo.svg deleted file mode 100644 index 2832e7b..0000000 --- a/src/public/src/assets/images/branding/twitter/twitter-logo.svg +++ /dev/null @@ -1 +0,0 @@ -Twitter_Logo_Blue \ No newline at end of file diff --git a/src/public/src/assets/images/branding/typescript/typescript-logo.svg b/src/public/src/assets/images/branding/typescript/typescript-logo.svg deleted file mode 100644 index bbf2809..0000000 --- a/src/public/src/assets/images/branding/typescript/typescript-logo.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - diff --git a/src/public/src/assets/images/branding/unity/unity-logo.svg b/src/public/src/assets/images/branding/unity/unity-logo.svg deleted file mode 100644 index 88622dd..0000000 --- a/src/public/src/assets/images/branding/unity/unity-logo.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - diff --git a/src/public/src/assets/images/branding/webpack/webpack-logo.svg b/src/public/src/assets/images/branding/webpack/webpack-logo.svg deleted file mode 100644 index 8f7eaa5..0000000 --- a/src/public/src/assets/images/branding/webpack/webpack-logo.svg +++ /dev/null @@ -1 +0,0 @@ -icon \ No newline at end of file diff --git a/src/public/src/assets/images/people/dominic/head.png b/src/public/src/assets/images/people/dominic/head.png deleted file mode 100644 index 7451356..0000000 Binary files a/src/public/src/assets/images/people/dominic/head.png and /dev/null differ diff --git a/src/public/src/assets/images/websites/bundlfresh.jpg b/src/public/src/assets/images/websites/bundlfresh.jpg deleted file mode 100644 index 407ee02..0000000 Binary files a/src/public/src/assets/images/websites/bundlfresh.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/cocksox.jpg b/src/public/src/assets/images/websites/cocksox.jpg deleted file mode 100644 index a9d4e5d..0000000 Binary files a/src/public/src/assets/images/websites/cocksox.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/domsPlace.jpg b/src/public/src/assets/images/websites/domsPlace.jpg deleted file mode 100644 index e568b28..0000000 Binary files a/src/public/src/assets/images/websites/domsPlace.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/earjobs.jpg b/src/public/src/assets/images/websites/earjobs.jpg deleted file mode 100644 index 2df533c..0000000 Binary files a/src/public/src/assets/images/websites/earjobs.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/kopalife.jpg b/src/public/src/assets/images/websites/kopalife.jpg deleted file mode 100644 index 55377de..0000000 Binary files a/src/public/src/assets/images/websites/kopalife.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/solinvictus.jpg b/src/public/src/assets/images/websites/solinvictus.jpg deleted file mode 100644 index 76388d6..0000000 Binary files a/src/public/src/assets/images/websites/solinvictus.jpg and /dev/null differ diff --git a/src/public/src/assets/images/websites/stateofescape.jpg b/src/public/src/assets/images/websites/stateofescape.jpg deleted file mode 100644 index 5fdb7bc..0000000 Binary files a/src/public/src/assets/images/websites/stateofescape.jpg and /dev/null differ diff --git a/src/public/src/components/effects/Observe.tsx b/src/public/src/components/effects/Observe.tsx deleted file mode 100644 index 7532649..0000000 --- a/src/public/src/components/effects/Observe.tsx +++ /dev/null @@ -1,29 +0,0 @@ - -//Intersection Observer -export type ObserveCallback = (e:IntersectionObserverEntry)=>void; -export type Observation = {element:HTMLElement,callback:ObserveCallback}; -export const observations:Observation[] = []; - -export const observer = typeof IntersectionObserver === "function" ? ( - new IntersectionObserver((entries, observer) => { - [...observations].forEach(ob => { - entries.forEach(e => { - if(ob.element != e.target) return; - ob.callback(e); - }); - }); - },{}) -) : null; - -export const addObserve = (ob:Observation) => { - if(!observer) return; - observations.push(ob); - observer.observe(ob.element);//TODO: "Is observing" -} - -export const removeObserve = (ob:Observation) => { - if(!observer) return; - let i = observations.indexOf(ob); - if(i !== -1) observations.splice(i, 1); - observer.unobserve(ob.element); -} \ No newline at end of file diff --git a/src/public/src/components/effects/ScrollFade.tsx b/src/public/src/components/effects/ScrollFade.tsx deleted file mode 100644 index 781a75f..0000000 --- a/src/public/src/components/effects/ScrollFade.tsx +++ /dev/null @@ -1,74 +0,0 @@ -import * as React from 'react'; -import styled from 'styled-components'; -import { Durations, Easings } from '@settings/all'; -import { Observation, addObserve, observer, removeObserve } from './Observe'; - -export type ScrollFadeDirection = 'bottom' | 'top' | 'left' | 'right'; -export type ScrollFadeDelay = 'short' | 'medium' | 'long'; - -export interface ScrollFadeProps { - from?:ScrollFadeDirection; - delay?:ScrollFadeDelay; - amount?:number; - visible?:boolean; - children?:React.ReactNode; -} - -export interface ScrollFadeState { - visible:boolean; canFade:boolean; -} - -const ScrollFadeWrapper = styled.div(({ visible, ...props }) => { - const { delay, from, amount } = { from: 'bottom', delay: 'long', amount: 4, ...props }; - const time = delay == 'long' ? Durations.timeLong : delay == 'medium' ? Durations.timeMedium : Durations.timeShort; - - return ` - display: inline-block; - opacity: 0; - transition: - opacity ${time}s ${Easings.easeOut}, - transform ${time}s ${Easings.easeOut}, - -webkit-transform ${time}s ${Easings.easeOut} - ; - transform: translate( - ${from == 'left' ? -amount : from == 'right' ? amount : 0}rem, - ${from == 'top' ? -amount : from == 'bottom' ? amount : 0}rem - ); - - ${visible?` - opacity: 1; - transform: translate(0,0); - `:''} - ` -}); - - -export class ScrollFade extends React.Component { - element:HTMLDivElement | null = null; - observation:Observation | null = null; - - constructor(props:ScrollFadeProps) { - super(props); - this.state = { visible: false, canFade: !!observer }; - } - - componentDidMount() { - if(!this.element) return; - addObserve(this.observation = { element: this.element, callback: e => { - this.setState({ visible: e.isIntersecting }); - if(this.state.visible && this.observation) removeObserve(this.observation); - }}); - } - - componentWillUnmount() { - if(this.observation) removeObserve(this.observation); - } - - render() { - return this.element = e}> - - { this.props.children } - - - } -} \ No newline at end of file diff --git a/src/public/src/components/forms/ContactForm.tsx b/src/public/src/components/forms/ContactForm.tsx deleted file mode 100644 index 872bbec..0000000 --- a/src/public/src/components/forms/ContactForm.tsx +++ /dev/null @@ -1,80 +0,0 @@ -import * as React from 'react'; -import { useForm } from 'react-hook-form'; -import { Input, TextArea } from '@objects/interactive/Input'; -import { Button, ButtonGroup } from '@objects/interactive/Button'; -import * as yup from 'yup'; -import { Panel } from '@objects/feedback/Panel'; -import { Heading2 } from '@objects/typography/Heading'; -import { sendMail, SendMailParams } from '@api/SendMail'; - -export interface ContactFormProps { - -} - -const FormValidator = yup.object().shape({ - name: yup.string().max(128).required(), - email: yup.string().email().required(), - message: yup.string().required() -}) - -export const ContactForm = (props:ContactFormProps) => { - const { register, handleSubmit, errors, formState } = useForm({ - validationSchema: FormValidator, mode: 'onChange' - }); - - const [ pending, setPending ] = React.useState(false); - const [ success, setSuccess ] = React.useState(false); - - const onSubmit = async (data:SendMailParams) => { - console.log(data); - setPending(true); - - await sendMail(data); - - setPending(false); - setSuccess(true); - console.log('Send', pending); - }; - - return success ? <> - - Thanks for contacting - -

- Thank you for your message, I will be in touch shortly to follow up - (generally within a couple of days). -

-

- In the meantime why not check out my social channels? -

- : ( -
- - - - -