Linted the whole project with eslint #3
503
.eslintrc
Normal file
503
.eslintrc
Normal file
@@ -0,0 +1,503 @@
|
|||||||
|
{
|
||||||
|
"parser": "@typescript-eslint/parser",
|
||||||
|
"parserOptions": {
|
||||||
|
"jsx": true,
|
||||||
|
"useJSXTextNode": true
|
||||||
|
},
|
||||||
|
"extends": [
|
||||||
|
"plugin:@typescript-eslint/recommended"
|
||||||
|
],
|
||||||
|
"plugins": ["@typescript-eslint", "react-hooks", "react"],
|
||||||
|
"rules": {
|
||||||
|
"@typescript-eslint/no-inferrable-types": 0,
|
||||||
|
"@typescript-eslint/no-empty-function": 0,
|
||||||
|
"@typescript-eslint/no-var-requires": 0,
|
||||||
|
"@typescript-eslint/no-shadow": ["error"],
|
||||||
|
"@typescript-eslint/no-explicit-any": 0,
|
||||||
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
||||||
|
"@typescript-eslint/no-unused-vars": 0,
|
||||||
|
//
|
||||||
|
//Possible Errors
|
||||||
|
//
|
||||||
|
// The following rules point out areas where you might have made mistakes.
|
||||||
|
//
|
||||||
|
"comma-dangle": 2,
|
||||||
|
// disallow or enforce trailing commas
|
||||||
|
"no-cond-assign": 2,
|
||||||
|
// disallow assignment in conditional expressions
|
||||||
|
"no-console": [
|
||||||
|
"warn",
|
||||||
|
{
|
||||||
|
"allow": [
|
||||||
|
"warn",
|
||||||
|
"error"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// disallow use of console (off by default in the node environment)
|
||||||
|
"no-constant-condition": 2,
|
||||||
|
// disallow use of constant expressions in conditions
|
||||||
|
"no-control-regex": 2,
|
||||||
|
// disallow control characters in regular expressions
|
||||||
|
"no-debugger": 2,
|
||||||
|
// disallow use of debugger
|
||||||
|
"no-dupe-args": 2,
|
||||||
|
// disallow duplicate arguments in functions
|
||||||
|
"no-dupe-keys": 2,
|
||||||
|
// disallow duplicate keys when creating object literals
|
||||||
|
"no-duplicate-case": 2,
|
||||||
|
// disallow a duplicate case label.
|
||||||
|
"no-empty": 2,
|
||||||
|
// disallow empty statements
|
||||||
|
"no-empty-character-class": 2,
|
||||||
|
// disallow the use of empty character classes in regular expressions
|
||||||
|
"no-ex-assign": 2,
|
||||||
|
// disallow assigning to the exception in a catch block
|
||||||
|
"no-extra-boolean-cast": 2,
|
||||||
|
// disallow double-negation boolean casts in a boolean context
|
||||||
|
"no-extra-parens": 0,
|
||||||
|
// disallow unnecessary parentheses (off by default)
|
||||||
|
"no-extra-semi": 2,
|
||||||
|
// disallow unnecessary semicolons
|
||||||
|
"no-func-assign": 2,
|
||||||
|
// disallow overwriting functions written as function declarations
|
||||||
|
"no-inner-declarations": 2,
|
||||||
|
// disallow function or variable declarations in nested blocks
|
||||||
|
"no-invalid-regexp": 2,
|
||||||
|
// disallow invalid regular expression strings in the RegExp constructor
|
||||||
|
"no-irregular-whitespace": 2,
|
||||||
|
// disallow irregular whitespace outside of strings and comments
|
||||||
|
"no-negated-in-lhs": 2,
|
||||||
|
// disallow negation of the left operand of an in expression
|
||||||
|
"no-obj-calls": 2,
|
||||||
|
// disallow the use of object properties of the global object (Math and JSON) as functions
|
||||||
|
"no-regex-spaces": 2,
|
||||||
|
// disallow multiple spaces in a regular expression literal
|
||||||
|
"no-sparse-arrays": 2,
|
||||||
|
// disallow sparse arrays
|
||||||
|
"no-unreachable": 2,
|
||||||
|
// disallow unreachable statements after a return, throw, continue, or break statement
|
||||||
|
"use-isnan": 2,
|
||||||
|
// disallow comparisons with the value NaN
|
||||||
|
"valid-jsdoc": 2,
|
||||||
|
// Ensure JSDoc comments are valid (off by default)
|
||||||
|
"valid-typeof": 2,
|
||||||
|
// Ensure that the results of typeof are compared against a valid string
|
||||||
|
//
|
||||||
|
// Best Practices
|
||||||
|
//
|
||||||
|
// These are rules designed to prevent you from making mistakes.
|
||||||
|
// They either prescribe a better way of doing something or help you avoid footguns.
|
||||||
|
//
|
||||||
|
"prefer-arrow-callback": 2,
|
||||||
|
"block-scoped-var": 0,
|
||||||
|
// treat var statements as if they were block scoped (off by default). 0: deep destructuring is not compatible https://github.com/eslint/eslint/issues/1863
|
||||||
|
"complexity": 0,
|
||||||
|
// specify the maximum cyclomatic complexity allowed in a program (off by default)
|
||||||
|
"consistent-return": 2,
|
||||||
|
// require return statements to either always or never specify values
|
||||||
|
"curly": 2,
|
||||||
|
// specify curly brace conventions for all control statements
|
||||||
|
"default-case": 2,
|
||||||
|
// require default case in switch statements (off by default)
|
||||||
|
"dot-notation": 2,
|
||||||
|
// encourages use of dot notation whenever possible
|
||||||
|
"eqeqeq": 0,
|
||||||
|
// require the use of === and !==
|
||||||
|
"guard-for-in": 2,
|
||||||
|
// make sure for-in loops have an if statement (off by default)
|
||||||
|
"no-alert": 2,
|
||||||
|
// disallow the use of alert, confirm, and prompt
|
||||||
|
"no-caller": 2,
|
||||||
|
// disallow use of arguments.caller or arguments.callee
|
||||||
|
"no-div-regex": 2,
|
||||||
|
// disallow division operators explicitly at beginning of regular expression (off by default)
|
||||||
|
"no-else-return": 2,
|
||||||
|
// disallow else after a return in an if (off by default)
|
||||||
|
"no-eq-null": 2,
|
||||||
|
// disallow comparisons to null without a type-checking operator (off by default)
|
||||||
|
"no-eval": 1,
|
||||||
|
// disallow use of eval()
|
||||||
|
"no-extend-native": 2,
|
||||||
|
// disallow adding to native types
|
||||||
|
"no-extra-bind": 2,
|
||||||
|
// disallow unnecessary function binding
|
||||||
|
"no-fallthrough": 2,
|
||||||
|
// disallow fallthrough of case statements
|
||||||
|
"no-floating-decimal": 2,
|
||||||
|
// disallow the use of leading or trailing decimal points in numeric literals (off by default)
|
||||||
|
"no-implied-eval": 2,
|
||||||
|
// disallow use of eval()-like methods
|
||||||
|
"no-iterator": 2,
|
||||||
|
// disallow usage of __iterator__ property
|
||||||
|
"no-labels": 2,
|
||||||
|
// disallow use of labeled statements
|
||||||
|
"no-lone-blocks": 2,
|
||||||
|
// disallow unnecessary nested blocks
|
||||||
|
"no-loop-func": 2,
|
||||||
|
// disallow creation of functions within loops
|
||||||
|
"no-multi-spaces": 2,
|
||||||
|
// disallow use of multiple spaces
|
||||||
|
"no-multi-str": 2,
|
||||||
|
// disallow use of multiline strings
|
||||||
|
"no-native-reassign": 2,
|
||||||
|
// disallow reassignments of native objects
|
||||||
|
"no-new": 0,
|
||||||
|
// disallow use of new operator when not part of the assignment or comparison
|
||||||
|
"no-new-func": 2,
|
||||||
|
// disallow use of new operator for Function object
|
||||||
|
"no-new-wrappers": 2,
|
||||||
|
// disallows creating new instances of String,Number, and Boolean
|
||||||
|
"no-octal": 2,
|
||||||
|
// disallow use of octal literals
|
||||||
|
"no-octal-escape": 2,
|
||||||
|
// disallow use of octal escape sequences in string literals, such as var foo = "Copyright \251";
|
||||||
|
"no-param-reassign": 2,
|
||||||
|
// disallow reassignment of function parameters (off by default)
|
||||||
|
"no-process-env": 0,
|
||||||
|
// disallow use of import.meta.env (off by default)
|
||||||
|
"no-proto": 2,
|
||||||
|
// disallow usage of __proto__ property
|
||||||
|
"no-redeclare": 2,
|
||||||
|
// disallow declaring the same variable more then once
|
||||||
|
"no-return-assign": 0,
|
||||||
|
// disallow use of assignment in return statement
|
||||||
|
"no-script-url": 2,
|
||||||
|
// disallow use of javascript: urls.
|
||||||
|
"no-self-compare": 2,
|
||||||
|
// disallow comparisons where both sides are exactly the same (off by default)
|
||||||
|
"no-sequences": 2,
|
||||||
|
// disallow use of comma operator
|
||||||
|
"no-throw-literal": 2,
|
||||||
|
// restrict what can be thrown as an exception (off by default)
|
||||||
|
"no-unused-expressions": 0,
|
||||||
|
// disallow usage of expressions in statement position
|
||||||
|
"no-void": 2,
|
||||||
|
// disallow use of void operator (off by default)
|
||||||
|
"no-warning-comments": [
|
||||||
|
0,
|
||||||
|
{
|
||||||
|
"terms": [
|
||||||
|
"todo",
|
||||||
|
"fixme"
|
||||||
|
],
|
||||||
|
"location": "start"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// disallow usage of configurable warning terms in comments": 2, // e.g. TODO or FIXME (off by default)
|
||||||
|
"no-with": 2,
|
||||||
|
// disallow use of the with statement
|
||||||
|
"radix": 0,
|
||||||
|
// require use of the second argument for parseInt() (off by default)
|
||||||
|
"vars-on-top": 2,
|
||||||
|
// requires to declare all vars on top of their containing scope (off by default)
|
||||||
|
"wrap-iife": 2,
|
||||||
|
// require immediate function invocation to be wrapped in parentheses (off by default)
|
||||||
|
"yoda": 2,
|
||||||
|
// require or disallow Yoda conditions
|
||||||
|
//
|
||||||
|
// Strict Mode
|
||||||
|
//
|
||||||
|
// These rules relate to using strict mode.
|
||||||
|
//
|
||||||
|
"strict": 0,
|
||||||
|
// controls location of Use Strict Directives. 0: required by `babel-eslint`
|
||||||
|
//
|
||||||
|
// Variables
|
||||||
|
//
|
||||||
|
// These rules have to do with variable declarations.
|
||||||
|
//
|
||||||
|
"no-catch-shadow": 2,
|
||||||
|
// disallow the catch clause parameter name being the same as a variable in the outer scope (off by default in the node environment)
|
||||||
|
"no-delete-var": 2,
|
||||||
|
// disallow deletion of variables
|
||||||
|
"no-label-var": 2,
|
||||||
|
// disallow labels that share a name with a variable
|
||||||
|
"no-shadow": 2,
|
||||||
|
// disallow declaration of variables already declared in the outer scope
|
||||||
|
"no-shadow-restricted-names": 2,
|
||||||
|
// disallow shadowing of names such as arguments
|
||||||
|
"no-undef-init": 2,
|
||||||
|
// disallow use of undefined when initializing variables
|
||||||
|
"no-undefined": 0,
|
||||||
|
// disallow use of undefined variable (off by default)
|
||||||
|
"no-unused-vars": 0,
|
||||||
|
// disallow declaration of variables that are not used in the code
|
||||||
|
"no-use-before-define": 0,
|
||||||
|
// disallow use of variables before they are defined
|
||||||
|
"init-declarations": 2,
|
||||||
|
//
|
||||||
|
// Stylistic Issues
|
||||||
|
//
|
||||||
|
// These rules are purely matters of style and are quite subjective.
|
||||||
|
//
|
||||||
|
"indent": [
|
||||||
|
2,
|
||||||
|
4,
|
||||||
|
{
|
||||||
|
"SwitchCase": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// this option sets a specific tab width for your code (off by default)
|
||||||
|
"brace-style": 0,
|
||||||
|
// enforce one true brace style (off by default)
|
||||||
|
"camelcase": 0,
|
||||||
|
// require camel case names
|
||||||
|
"comma-spacing": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"before": false,
|
||||||
|
"after": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// enforce spacing before and after comma
|
||||||
|
"comma-style": [
|
||||||
|
1,
|
||||||
|
"last"
|
||||||
|
],
|
||||||
|
// enforce one true comma style (off by default)
|
||||||
|
"consistent-this": [
|
||||||
|
1,
|
||||||
|
"_this"
|
||||||
|
],
|
||||||
|
// enforces consistent naming when capturing the current execution context (off by default)
|
||||||
|
"eol-last": 0,
|
||||||
|
// enforce newline at the end of file, with no multiple empty lines
|
||||||
|
"func-names": 0,
|
||||||
|
// require function expressions to have a name (off by default)
|
||||||
|
"func-style": 0,
|
||||||
|
// enforces use of function declarations or expressions (off by default)
|
||||||
|
"key-spacing": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"beforeColon": false,
|
||||||
|
"afterColon": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// enforces spacing between keys and values in object literal properties
|
||||||
|
"max-nested-callbacks": [ 1, 5 ],
|
||||||
|
// specify the maximum depth callbacks can be nested (off by default)
|
||||||
|
"new-cap": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"newIsCap": true,
|
||||||
|
"capIsNew": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// require a capital letter for constructors
|
||||||
|
"new-parens": 1,
|
||||||
|
// disallow the omission of parentheses when invoking a constructor with no arguments
|
||||||
|
"newline-after-var": 0,
|
||||||
|
// allow/disallow an empty newline after var statement (off by default)
|
||||||
|
"no-array-constructor": 1,
|
||||||
|
// disallow use of the Array constructor
|
||||||
|
"no-inline-comments": 0,
|
||||||
|
// disallow comments inline after code (off by default)
|
||||||
|
"no-lonely-if": 1,
|
||||||
|
// disallow if as the only statement in an else block (off by default)
|
||||||
|
"no-mixed-spaces-and-tabs": 1,
|
||||||
|
// disallow mixed spaces and tabs for indentation
|
||||||
|
"no-multiple-empty-lines": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"max": 2
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// disallow multiple empty lines (off by default)
|
||||||
|
"no-nested-ternary": 2,
|
||||||
|
// disallow nested ternary expressions (off by default)
|
||||||
|
"no-new-object": 1,
|
||||||
|
// disallow use of the Object constructor
|
||||||
|
"no-spaced-func": 1,
|
||||||
|
// disallow space between function identifier and application
|
||||||
|
"no-ternary": 0,
|
||||||
|
// disallow the use of ternary operators (off by default)
|
||||||
|
"no-unneeded-ternary": 2,
|
||||||
|
"no-trailing-spaces": 2,
|
||||||
|
// disallow trailing whitespace at the end of lines
|
||||||
|
"no-underscore-dangle": 0,
|
||||||
|
// disallow dangling underscores in identifiers
|
||||||
|
"prefer-reflect": 0,
|
||||||
|
"one-var": [
|
||||||
|
0,
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
// allow just one var statement per function (off by default)
|
||||||
|
"operator-assignment": [
|
||||||
|
1,
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
// require assignment operator shorthand where possible or prohibit it entirely (off by default)
|
||||||
|
"padded-blocks": [
|
||||||
|
2,
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
// enforce padding within blocks (off by default)
|
||||||
|
"quote-props": [
|
||||||
|
1,
|
||||||
|
"as-needed"
|
||||||
|
],
|
||||||
|
// require quotes around object literal property names (off by default)
|
||||||
|
"quotes": [
|
||||||
|
2,
|
||||||
|
"double"
|
||||||
|
],
|
||||||
|
// specify whether double or single quotes should be used
|
||||||
|
"semi": [
|
||||||
|
2,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
// require or disallow use of semicolons instead of ASI
|
||||||
|
"semi-spacing": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"before": false,
|
||||||
|
"after": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// enforce spacing before and after semicolons
|
||||||
|
"sort-vars": 0,
|
||||||
|
// sort variables within the same declaration block (off by default)
|
||||||
|
"sort-imports": 0,
|
||||||
|
"keyword-spacing": [
|
||||||
|
1
|
||||||
|
],
|
||||||
|
// require a space after certain keywords (off by default)
|
||||||
|
"space-before-blocks": [
|
||||||
|
1,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
// require or disallow space before blocks (off by default)
|
||||||
|
"space-before-function-paren": [
|
||||||
|
0
|
||||||
|
],
|
||||||
|
// require or disallow space before function opening parenthesis (off by default)
|
||||||
|
"object-curly-spacing": [
|
||||||
|
2,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"template-curly-spacing": [
|
||||||
|
"error",
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
"array-bracket-spacing": [
|
||||||
|
0
|
||||||
|
],
|
||||||
|
"space-in-parens": [
|
||||||
|
1,
|
||||||
|
"never"
|
||||||
|
],
|
||||||
|
// require or disallow spaces inside parentheses (off by default)
|
||||||
|
"space-infix-ops": 0,
|
||||||
|
// require spaces around operators
|
||||||
|
"space-unary-ops": [
|
||||||
|
1,
|
||||||
|
{
|
||||||
|
"words": true,
|
||||||
|
"nonwords": false
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// Require or disallow spaces before/after unary operators (words on by default, nonwords off by default)
|
||||||
|
"spaced-comment": [
|
||||||
|
1,
|
||||||
|
"always"
|
||||||
|
],
|
||||||
|
// require or disallow a space immediately following the // in a line comment (off by default)
|
||||||
|
"wrap-regex": 0,
|
||||||
|
// require regex literals to be wrapped in parentheses (off by default)
|
||||||
|
//
|
||||||
|
// ECMAScript 6
|
||||||
|
//
|
||||||
|
// These rules are only relevant to ES6 environments and are off by default.
|
||||||
|
//
|
||||||
|
"no-var": 2,
|
||||||
|
// require let or const instead of var (off by default)
|
||||||
|
"generator-star-spacing": [
|
||||||
|
2,
|
||||||
|
"before"
|
||||||
|
],
|
||||||
|
// enforce the spacing around the * in generator functions (off by default)
|
||||||
|
//
|
||||||
|
// Legacy
|
||||||
|
//
|
||||||
|
// The following rules are included for compatibility with JSHint and JSLint.
|
||||||
|
// While the names of the rules may not match up with the JSHint/JSLint counterpart,
|
||||||
|
// the functionality is the same.
|
||||||
|
//
|
||||||
|
"max-depth": [
|
||||||
|
2,
|
||||||
|
3
|
||||||
|
],
|
||||||
|
// specify the maximum depth that blocks can be nested (off by default)
|
||||||
|
"max-len": [
|
||||||
|
0,
|
||||||
|
180,
|
||||||
|
2
|
||||||
|
],
|
||||||
|
// specify the maximum length of a line in your program (off by default)
|
||||||
|
"max-params": [
|
||||||
|
0
|
||||||
|
],
|
||||||
|
// limits the number of parameters that can be used in the function declaration. (off by default)
|
||||||
|
"max-statements": 0,
|
||||||
|
// specify the maximum number of statement allowed in a function (off by default)
|
||||||
|
"no-bitwise": 0,
|
||||||
|
// disallow use of bitwise operators (off by default)
|
||||||
|
"no-plusplus": 0,
|
||||||
|
// disallow use of unary operators, ++ and -- (off by default)
|
||||||
|
//
|
||||||
|
// eslint-plugin-react
|
||||||
|
//
|
||||||
|
// React specific linting rules for ESLint
|
||||||
|
//
|
||||||
|
"react/display-name": 0,
|
||||||
|
// Prevent missing displayName in a React component definition
|
||||||
|
"jsx-quotes": [
|
||||||
|
2,
|
||||||
|
"prefer-double"
|
||||||
|
],
|
||||||
|
"react/jsx-curly-spacing": [
|
||||||
|
2,
|
||||||
|
{
|
||||||
|
"when": "always",
|
||||||
|
"allowMultiline": false,
|
||||||
|
"children": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
// Enforce quote style for JSX attributes
|
||||||
|
"react/jsx-no-undef": 2,
|
||||||
|
// Disallow undeclared variables in JSX
|
||||||
|
"react/jsx-sort-props": 0,
|
||||||
|
// Enforce props alphabetical sorting
|
||||||
|
"react/sort-comp": [
|
||||||
|
2,
|
||||||
|
{
|
||||||
|
"order": [
|
||||||
|
"constructor",
|
||||||
|
"lifecycle",
|
||||||
|
"everything-else",
|
||||||
|
"render"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"react/jsx-uses-react": 2,
|
||||||
|
// Prevent React to be incorrectly marked as unused
|
||||||
|
"react/jsx-uses-vars": 2,
|
||||||
|
// Prevent variables used in JSX to be incorrectly marked as unused
|
||||||
|
//"react/no-did-mount-set-state": 2,
|
||||||
|
"react/no-did-mount-set-state": 0,
|
||||||
|
// Prevent usage of setState in componentDidMount
|
||||||
|
"react/no-did-update-set-state": 1,
|
||||||
|
// Prevent usage of setState in componentDidUpdate
|
||||||
|
"react/no-multi-comp": 0,
|
||||||
|
// Prevent multiple component definition per file
|
||||||
|
"react/no-unknown-property": 2,
|
||||||
|
// Prevent usage of unknown DOM property
|
||||||
|
"react/self-closing-comp": 2,
|
||||||
|
// Prevent extra closing tags for components without children
|
||||||
|
"react/jsx-wrap-multilines": 2,
|
||||||
|
// Prevent missing parentheses around multilines JSX
|
||||||
|
"react/forbid-prop-types": 0,
|
||||||
|
"react-hooks/exhaustive-deps": 0
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -4,37 +4,37 @@ import { Features } from "./blocks/features";
|
|||||||
import { Hero } from "./blocks/hero";
|
import { Hero } from "./blocks/hero";
|
||||||
import { Testimonial } from "./blocks/testimonial";
|
import { Testimonial } from "./blocks/testimonial";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
import {Carousel} from "./blocks/carousel";
|
import { Carousel } from "./blocks/carousel";
|
||||||
|
|
||||||
export const Blocks = (props: Omit<Page, "id" | "_sys" | "_values">) => {
|
export const Blocks = (props: Omit<Page, "id" | "_sys" | "_values">) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{props.blocks
|
{ props.blocks
|
||||||
? props.blocks.map(function (block, i) {
|
? props.blocks.map((block, i) => {
|
||||||
return (
|
return (
|
||||||
<div key={i} data-tina-field={tinaField(block)}>
|
<div key={ i } data-tina-field={ tinaField(block) }>
|
||||||
<Block {...block} />
|
<Block { ...block } />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
: null}
|
: null }
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const Block = (block: PageBlocks) => {
|
const Block = (block: PageBlocks) => {
|
||||||
switch (block.__typename) {
|
switch (block.__typename) {
|
||||||
case "PageBlocksContent":
|
case "PageBlocksContent":
|
||||||
return <Content data={block} />;
|
return <Content data={ block } />;
|
||||||
case "PageBlocksHero":
|
case "PageBlocksHero":
|
||||||
return <Hero data={block} />;
|
return <Hero data={ block } />;
|
||||||
case "PageBlocksFeatures":
|
case "PageBlocksFeatures":
|
||||||
return <Features data={block} />;
|
return <Features data={ block } />;
|
||||||
case "PageBlocksTestimonial":
|
case "PageBlocksTestimonial":
|
||||||
return <Testimonial data={block} />;
|
return <Testimonial data={ block } />;
|
||||||
case "PageBlocksCarousel":
|
case "PageBlocksCarousel":
|
||||||
return <Carousel data={block} />;
|
return <Carousel data={ block } />;
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import { Section } from "../util/section";
|
import { Section } from "../util/section";
|
||||||
import {PageBlocksCarousel} from "../../tina/__generated__/types";
|
import { PageBlocksCarousel } from "../../tina/__generated__/types";
|
||||||
import {Anchoring, anchoringSchema} from "../util/anchoring";
|
import { Anchoring, anchoringSchema } from "../util/anchoring";
|
||||||
import {Template} from "tinacms";
|
import { Template } from "tinacms";
|
||||||
|
|
||||||
export const Carousel = ({ data }: { data: PageBlocksCarousel }) => {
|
export const Carousel = ({ data }: { data: PageBlocksCarousel }) => {
|
||||||
return (
|
return (
|
||||||
@@ -20,17 +20,17 @@ export const carouselBlockSchema: Template = {
|
|||||||
label: "Carousel",
|
label: "Carousel",
|
||||||
ui: {
|
ui: {
|
||||||
previewSrc: "/blocks/features.png",
|
previewSrc: "/blocks/features.png",
|
||||||
defaultItem: [defaultCarousel, defaultCarousel, defaultCarousel],
|
defaultItem: [defaultCarousel, defaultCarousel, defaultCarousel]
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
type: "image",
|
type: "image",
|
||||||
label: "Images du carousel",
|
label: "Images du carousel",
|
||||||
name: "images",
|
name: "images",
|
||||||
list: true,
|
list: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
...anchoringSchema
|
...anchoringSchema
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,51 +2,51 @@ import React from "react";
|
|||||||
import { Container } from "../util/container";
|
import { Container } from "../util/container";
|
||||||
import { Section } from "../util/section";
|
import { Section } from "../util/section";
|
||||||
import { TinaMarkdown } from "tinacms/dist/rich-text";
|
import { TinaMarkdown } from "tinacms/dist/rich-text";
|
||||||
import type {Template, TinaTemplate} from "tinacms";
|
import type { Template, TinaTemplate } from "tinacms";
|
||||||
import { PageBlocksContent } from "../../tina/__generated__/types";
|
import { PageBlocksContent } from "../../tina/__generated__/types";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
|
|
||||||
export const Content = ({ data }: { data: PageBlocksContent }) => {
|
export const Content = ({ data }: { data: PageBlocksContent }) => {
|
||||||
return (
|
return (
|
||||||
<Section color={data.color}>
|
<Section color={ data.color }>
|
||||||
<Container
|
<Container
|
||||||
className={`prose prose-lg ${
|
className={ `prose prose-lg ${
|
||||||
data.color === "primary" ? `prose-primary` : `dark:prose-dark`
|
data.color === "primary" ? "prose-primary" : "dark:prose-dark"
|
||||||
}`}
|
}` }
|
||||||
data-tina-field={tinaField(data, "body")}
|
data-tina-field={ tinaField(data, "body") }
|
||||||
size="large"
|
size="large"
|
||||||
width="medium"
|
width="medium"
|
||||||
>
|
>
|
||||||
<TinaMarkdown content={data.body} />
|
<TinaMarkdown content={ data.body } />
|
||||||
</Container>
|
</Container>
|
||||||
</Section>
|
</Section>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const contentBlockSchema: Template = {
|
export const contentBlockSchema: Template = {
|
||||||
name: "content",
|
name: "content",
|
||||||
label: "Content",
|
label: "Content",
|
||||||
ui: {
|
ui: {
|
||||||
previewSrc: "/blocks/content.png",
|
previewSrc: "/blocks/content.png",
|
||||||
defaultItem: {
|
defaultItem: {
|
||||||
body: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede.",
|
body: "Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Donec odio. Quisque volutpat mattis eros. Nullam malesuada erat ut turpis. Suspendisse urna nibh, viverra non, semper suscipit, posuere a, pede."
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
fields: [
|
||||||
fields: [
|
{
|
||||||
{
|
type: "rich-text",
|
||||||
type: "rich-text",
|
label: "Body",
|
||||||
label: "Body",
|
name: "body"
|
||||||
name: "body",
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "string",
|
||||||
type: "string",
|
label: "Color",
|
||||||
label: "Color",
|
name: "color",
|
||||||
name: "color",
|
options: [
|
||||||
options: [
|
{ label: "Default", value: "default" },
|
||||||
{ label: "Default", value: "default" },
|
{ label: "Tint", value: "tint" },
|
||||||
{ label: "Tint", value: "tint" },
|
{ label: "Primary", value: "primary" }
|
||||||
{ label: "Primary", value: "primary" },
|
]
|
||||||
],
|
}
|
||||||
},
|
]
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,129 +3,129 @@ import { Container } from "../util/container";
|
|||||||
import { Icon } from "../util/icon";
|
import { Icon } from "../util/icon";
|
||||||
import { iconSchema } from "../util/icon";
|
import { iconSchema } from "../util/icon";
|
||||||
import {
|
import {
|
||||||
PageBlocksFeatures,
|
PageBlocksFeatures,
|
||||||
PageBlocksFeaturesItems,
|
PageBlocksFeaturesItems
|
||||||
} from "../../tina/__generated__/types";
|
} from "../../tina/__generated__/types";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
import {Template} from "tinacms";
|
import { Template } from "tinacms";
|
||||||
|
|
||||||
export const Feature = ({
|
export const Feature = ({
|
||||||
featuresColor,
|
featuresColor,
|
||||||
data,
|
data
|
||||||
}: {
|
}: {
|
||||||
featuresColor: string;
|
featuresColor: string;
|
||||||
data: PageBlocksFeaturesItems;
|
data: PageBlocksFeaturesItems;
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-tina-field={tinaField(data)}
|
data-tina-field={ tinaField(data) }
|
||||||
className="flex-1 flex flex-col gap-6 text-center items-center lg:items-start lg:text-left max-w-xl mx-auto"
|
className="flex-1 flex flex-col gap-6 text-center items-center lg:items-start lg:text-left max-w-xl mx-auto"
|
||||||
style={{ flexBasis: "16rem" }}
|
style={ { flexBasis: "16rem" } }
|
||||||
>
|
|
||||||
{data.icon && (
|
|
||||||
<Icon
|
|
||||||
tinaField={tinaField(data, "icon")}
|
|
||||||
parentColor={featuresColor}
|
|
||||||
data={{ size: "large", ...data.icon }}
|
|
||||||
/>
|
|
||||||
)}
|
|
||||||
{data.title && (
|
|
||||||
<h3
|
|
||||||
data-tina-field={tinaField(data, "title")}
|
|
||||||
className="text-2xl font-semibold title-font"
|
|
||||||
>
|
>
|
||||||
{data.title}
|
{ data.icon && (
|
||||||
</h3>
|
<Icon
|
||||||
)}
|
tinaField={ tinaField(data, "icon") }
|
||||||
{data.text && (
|
parentColor={ featuresColor }
|
||||||
<p
|
data={ { size: "large", ...data.icon } }
|
||||||
data-tina-field={tinaField(data, "text")}
|
/>
|
||||||
className="text-base opacity-80 leading-relaxed"
|
) }
|
||||||
>
|
{ data.title && (
|
||||||
{data.text}
|
<h3
|
||||||
</p>
|
data-tina-field={ tinaField(data, "title") }
|
||||||
)}
|
className="text-2xl font-semibold title-font"
|
||||||
</div>
|
>
|
||||||
);
|
{ data.title }
|
||||||
|
</h3>
|
||||||
|
) }
|
||||||
|
{ data.text && (
|
||||||
|
<p
|
||||||
|
data-tina-field={ tinaField(data, "text") }
|
||||||
|
className="text-base opacity-80 leading-relaxed"
|
||||||
|
>
|
||||||
|
{ data.text }
|
||||||
|
</p>
|
||||||
|
) }
|
||||||
|
</div>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Features = ({ data }: { data: PageBlocksFeatures }) => {
|
export const Features = ({ data }: { data: PageBlocksFeatures }) => {
|
||||||
return (
|
return (
|
||||||
<Section color={data.color}>
|
<Section color={ data.color }>
|
||||||
<Container
|
<Container
|
||||||
className={`flex flex-wrap gap-x-10 gap-y-8 text-left`}
|
className={ "flex flex-wrap gap-x-10 gap-y-8 text-left" }
|
||||||
size="large"
|
size="large"
|
||||||
>
|
>
|
||||||
{data.items &&
|
{ data.items &&
|
||||||
data.items.map(function (block, i) {
|
data.items.map((block, i) => {
|
||||||
return <Feature featuresColor={data.color} key={i} data={block} />;
|
return <Feature featuresColor={ data.color } key={ i } data={ block } />;
|
||||||
})}
|
}) }
|
||||||
</Container>
|
</Container>
|
||||||
</Section>
|
</Section>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
const defaultFeature = {
|
const defaultFeature = {
|
||||||
title: "Here's Another Feature",
|
title: "Here's Another Feature",
|
||||||
text: "This is where you might talk about the feature, if this wasn't just filler text.",
|
text: "This is where you might talk about the feature, if this wasn't just filler text.",
|
||||||
icon: {
|
icon: {
|
||||||
color: "",
|
color: "",
|
||||||
style: "float",
|
style: "float",
|
||||||
name: "",
|
name: ""
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export const featureBlockSchema: Template = {
|
export const featureBlockSchema: Template = {
|
||||||
name: "features",
|
name: "features",
|
||||||
label: "Features",
|
label: "Features",
|
||||||
ui: {
|
ui: {
|
||||||
previewSrc: "/blocks/features.png",
|
previewSrc: "/blocks/features.png",
|
||||||
defaultItem: {
|
|
||||||
items: [defaultFeature, defaultFeature, defaultFeature],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "object",
|
|
||||||
label: "Feature Items",
|
|
||||||
name: "items",
|
|
||||||
list: true,
|
|
||||||
ui: {
|
|
||||||
itemProps: (item) => {
|
|
||||||
return {
|
|
||||||
label: item?.title,
|
|
||||||
};
|
|
||||||
},
|
|
||||||
defaultItem: {
|
defaultItem: {
|
||||||
...defaultFeature,
|
items: [defaultFeature, defaultFeature, defaultFeature]
|
||||||
},
|
}
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
iconSchema,
|
|
||||||
{
|
{
|
||||||
type: "string",
|
type: "object",
|
||||||
label: "Title",
|
label: "Feature Items",
|
||||||
name: "title",
|
name: "items",
|
||||||
|
list: true,
|
||||||
|
ui: {
|
||||||
|
itemProps: (item) => {
|
||||||
|
return {
|
||||||
|
label: item?.title
|
||||||
|
};
|
||||||
|
},
|
||||||
|
defaultItem: {
|
||||||
|
...defaultFeature
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fields: [
|
||||||
|
iconSchema,
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Title",
|
||||||
|
name: "title"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Text",
|
||||||
|
name: "text",
|
||||||
|
ui: {
|
||||||
|
component: "textarea"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "string",
|
type: "string",
|
||||||
label: "Text",
|
label: "Color",
|
||||||
name: "text",
|
name: "color",
|
||||||
ui: {
|
options: [
|
||||||
component: "textarea",
|
{ label: "Default", value: "default" },
|
||||||
},
|
{ label: "Tint", value: "tint" },
|
||||||
},
|
{ label: "Primary", value: "primary" }
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
{
|
]
|
||||||
type: "string",
|
|
||||||
label: "Color",
|
|
||||||
name: "color",
|
|
||||||
options: [
|
|
||||||
{ label: "Default", value: "default" },
|
|
||||||
{ label: "Tint", value: "tint" },
|
|
||||||
{ label: "Primary", value: "primary" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -3,182 +3,182 @@ import { Actions } from "../util/actions";
|
|||||||
import { Container } from "../util/container";
|
import { Container } from "../util/container";
|
||||||
import { Section } from "../util/section";
|
import { Section } from "../util/section";
|
||||||
import { TinaMarkdown } from "tinacms/dist/rich-text";
|
import { TinaMarkdown } from "tinacms/dist/rich-text";
|
||||||
import type {Template, TinaTemplate} from "tinacms";
|
import type { Template, TinaTemplate } from "tinacms";
|
||||||
import { PageBlocksHero } from "../../tina/__generated__/types";
|
import { PageBlocksHero } from "../../tina/__generated__/types";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
|
|
||||||
export const Hero = ({ data }: { data: PageBlocksHero }) => {
|
export const Hero = ({ data }: { data: PageBlocksHero }) => {
|
||||||
const headlineColorClasses = {
|
const headlineColorClasses = {
|
||||||
blue: "from-blue-400 to-blue-600",
|
blue: "from-blue-400 to-blue-600",
|
||||||
teal: "from-teal-400 to-teal-600",
|
teal: "from-teal-400 to-teal-600",
|
||||||
green: "from-green-400 to-green-600",
|
green: "from-green-400 to-green-600",
|
||||||
red: "from-red-400 to-red-600",
|
red: "from-red-400 to-red-600",
|
||||||
pink: "from-pink-400 to-pink-600",
|
pink: "from-pink-400 to-pink-600",
|
||||||
purple: "from-purple-400 to-purple-600",
|
purple: "from-purple-400 to-purple-600",
|
||||||
orange: "from-orange-300 to-orange-600",
|
orange: "from-orange-300 to-orange-600",
|
||||||
yellow: "from-yellow-400 to-yellow-600",
|
yellow: "from-yellow-400 to-yellow-600"
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section color={data.color}>
|
<Section color={ data.color }>
|
||||||
<Container
|
<Container
|
||||||
size="large"
|
size="large"
|
||||||
className="grid grid-cols-1 md:grid-cols-5 gap-14 items-center justify-center"
|
className="grid grid-cols-1 md:grid-cols-5 gap-14 items-center justify-center"
|
||||||
>
|
|
||||||
<div className="row-start-2 md:row-start-1 md:col-span-3 text-center md:text-left">
|
|
||||||
{data.tagline && (
|
|
||||||
<h2
|
|
||||||
data-tina-field={tinaField(data, "tagline")}
|
|
||||||
className="relative inline-block px-3 py-1 mb-8 text-md font-bold tracking-wide title-font z-20"
|
|
||||||
>
|
>
|
||||||
{data.tagline}
|
<div className="row-start-2 md:row-start-1 md:col-span-3 text-center md:text-left">
|
||||||
<span className="absolute w-full h-full left-0 top-0 rounded-full -z-1 bg-current opacity-7"></span>
|
{ data.tagline && (
|
||||||
</h2>
|
<h2
|
||||||
)}
|
data-tina-field={ tinaField(data, "tagline") }
|
||||||
{data.headline && (
|
className="relative inline-block px-3 py-1 mb-8 text-md font-bold tracking-wide title-font z-20"
|
||||||
<h3
|
>
|
||||||
data-tina-field={tinaField(data, "headline")}
|
{ data.tagline }
|
||||||
className={`w-full relative mb-10 text-5xl font-extrabold tracking-normal leading-tight title-font`}
|
<span className="absolute w-full h-full left-0 top-0 rounded-full -z-1 bg-current opacity-7" />
|
||||||
>
|
</h2>
|
||||||
<span
|
) }
|
||||||
className={"bg-clip-text text-transparent bg-gradient-to-r from-white to-gray-100"}
|
{ data.headline && (
|
||||||
>
|
<h3
|
||||||
{data.headline}
|
data-tina-field={ tinaField(data, "headline") }
|
||||||
</span>
|
className={ "w-full relative mb-10 text-5xl font-extrabold tracking-normal leading-tight title-font" }
|
||||||
</h3>
|
>
|
||||||
)}
|
<span
|
||||||
{data.text && (
|
className={ "bg-clip-text text-transparent bg-gradient-to-r from-white to-gray-100" }
|
||||||
<div
|
>
|
||||||
data-tina-field={tinaField(data, "text")}
|
{ data.headline }
|
||||||
className={"prose prose-lg mx-auto md:mx-0 mb-10 prose-primary" }
|
</span>
|
||||||
>
|
</h3>
|
||||||
<TinaMarkdown content={data.text} />
|
) }
|
||||||
</div>
|
{ data.text && (
|
||||||
)}
|
<div
|
||||||
{data.actions && (
|
data-tina-field={ tinaField(data, "text") }
|
||||||
<Actions
|
className={ "prose prose-lg mx-auto md:mx-0 mb-10 prose-primary" }
|
||||||
className="justify-center md:justify-start py-2"
|
>
|
||||||
parentColor={data.color}
|
<TinaMarkdown content={ data.text } />
|
||||||
actions={data.actions}
|
</div>
|
||||||
/>
|
) }
|
||||||
)}
|
{ data.actions && (
|
||||||
</div>
|
<Actions
|
||||||
{data.image && (
|
className="justify-center md:justify-start py-2"
|
||||||
<div
|
parentColor={ data.color }
|
||||||
data-tina-field={tinaField(data.image, "src")}
|
actions={ data.actions }
|
||||||
className="relative row-start-1 md:col-span-2 flex justify-center"
|
/>
|
||||||
>
|
) }
|
||||||
<img
|
</div>
|
||||||
className="absolute w-full rounded-lg max-w-xs md:max-w-none h-auto blur-2xl brightness-150 contrast-[0.9] dark:brightness-150 saturate-200 opacity-50 dark:opacity-30 mix-blend-multiply dark:mix-blend-hard-light"
|
{ data.image && (
|
||||||
src={data.image.src}
|
<div
|
||||||
aria-hidden="true"
|
data-tina-field={ tinaField(data.image, "src") }
|
||||||
/>
|
className="relative row-start-1 md:col-span-2 flex justify-center"
|
||||||
<img
|
>
|
||||||
className="relative z-10 w-full max-w-xs rounded-lg md:max-w-none h-auto"
|
<img
|
||||||
alt={data.image.alt}
|
className="absolute w-full rounded-lg max-w-xs md:max-w-none h-auto blur-2xl brightness-150 contrast-[0.9] dark:brightness-150 saturate-200 opacity-50 dark:opacity-30 mix-blend-multiply dark:mix-blend-hard-light"
|
||||||
src={data.image.src}
|
src={ data.image.src }
|
||||||
/>
|
aria-hidden="true"
|
||||||
</div>
|
/>
|
||||||
)}
|
<img
|
||||||
</Container>
|
className="relative z-10 w-full max-w-xs rounded-lg md:max-w-none h-auto"
|
||||||
</Section>
|
alt={ data.image.alt }
|
||||||
);
|
src={ data.image.src }
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
) }
|
||||||
|
</Container>
|
||||||
|
</Section>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const heroBlockSchema: Template = {
|
export const heroBlockSchema: Template = {
|
||||||
name: "hero",
|
name: "hero",
|
||||||
label: "Hero",
|
label: "Hero",
|
||||||
ui: {
|
ui: {
|
||||||
previewSrc: "/blocks/hero.png",
|
previewSrc: "/blocks/hero.png",
|
||||||
defaultItem: {
|
|
||||||
tagline: "Here's some text above the other text",
|
|
||||||
headline: "This Big Text is Totally Awesome",
|
|
||||||
text: "Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo.",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Tagline",
|
|
||||||
name: "tagline",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Headline",
|
|
||||||
name: "headline",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Text",
|
|
||||||
name: "text",
|
|
||||||
type: "rich-text",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Actions",
|
|
||||||
name: "actions",
|
|
||||||
type: "object",
|
|
||||||
list: true,
|
|
||||||
ui: {
|
|
||||||
defaultItem: {
|
defaultItem: {
|
||||||
label: "Action Label",
|
tagline: "Here's some text above the other text",
|
||||||
type: "button",
|
headline: "This Big Text is Totally Awesome",
|
||||||
icon: true,
|
text: "Phasellus scelerisque, libero eu finibus rutrum, risus risus accumsan libero, nec molestie urna dui a leo."
|
||||||
link: "/",
|
}
|
||||||
},
|
|
||||||
itemProps: (item) => ({ label: item.label }),
|
|
||||||
},
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
label: "Label",
|
|
||||||
name: "label",
|
|
||||||
type: "string",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Type",
|
|
||||||
name: "type",
|
|
||||||
type: "string",
|
|
||||||
options: [
|
|
||||||
{ label: "Button", value: "button" },
|
|
||||||
{ label: "Link", value: "link" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Icon",
|
|
||||||
name: "icon",
|
|
||||||
type: "boolean",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Link",
|
|
||||||
name: "link",
|
|
||||||
type: "string",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
fields: [
|
||||||
type: "object",
|
|
||||||
label: "Image",
|
|
||||||
name: "image",
|
|
||||||
fields: [
|
|
||||||
{
|
{
|
||||||
name: "src",
|
type: "string",
|
||||||
label: "Image Source",
|
label: "Tagline",
|
||||||
type: "image",
|
name: "tagline"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "alt",
|
type: "string",
|
||||||
label: "Alt Text",
|
label: "Headline",
|
||||||
type: "string",
|
name: "headline"
|
||||||
},
|
},
|
||||||
],
|
{
|
||||||
},
|
label: "Text",
|
||||||
{
|
name: "text",
|
||||||
type: "string",
|
type: "rich-text"
|
||||||
label: "Color",
|
},
|
||||||
name: "color",
|
{
|
||||||
options: [
|
label: "Actions",
|
||||||
{ label: "Default", value: "default" },
|
name: "actions",
|
||||||
{ label: "Tint", value: "tint" },
|
type: "object",
|
||||||
{ label: "Primary", value: "primary" },
|
list: true,
|
||||||
],
|
ui: {
|
||||||
},
|
defaultItem: {
|
||||||
],
|
label: "Action Label",
|
||||||
|
type: "button",
|
||||||
|
icon: true,
|
||||||
|
link: "/"
|
||||||
|
},
|
||||||
|
itemProps: (item) => ({ label: item.label })
|
||||||
|
},
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
label: "Label",
|
||||||
|
name: "label",
|
||||||
|
type: "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Type",
|
||||||
|
name: "type",
|
||||||
|
type: "string",
|
||||||
|
options: [
|
||||||
|
{ label: "Button", value: "button" },
|
||||||
|
{ label: "Link", value: "link" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Icon",
|
||||||
|
name: "icon",
|
||||||
|
type: "boolean"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Link",
|
||||||
|
name: "link",
|
||||||
|
type: "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "object",
|
||||||
|
label: "Image",
|
||||||
|
name: "image",
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: "src",
|
||||||
|
label: "Image Source",
|
||||||
|
type: "image"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "alt",
|
||||||
|
label: "Alt Text",
|
||||||
|
type: "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Color",
|
||||||
|
name: "color",
|
||||||
|
options: [
|
||||||
|
{ label: "Default", value: "default" },
|
||||||
|
{ label: "Tint", value: "tint" },
|
||||||
|
{ label: "Primary", value: "primary" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { Container } from "../util/container";
|
import { Container } from "../util/container";
|
||||||
import { Section } from "../util/section";
|
import { Section } from "../util/section";
|
||||||
import type {Template, TinaTemplate} from "tinacms";
|
import type { Template } from "tinacms";
|
||||||
import { PageBlocksTestimonial } from "../../tina/__generated__/types";
|
import { PageBlocksTestimonial } from "../../tina/__generated__/types";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
|
|
||||||
|
|||||||
@@ -4,109 +4,143 @@ import { FaFacebookF, FaGithub, FaTwitter } from "react-icons/fa";
|
|||||||
import { AiFillInstagram } from "react-icons/ai";
|
import { AiFillInstagram } from "react-icons/ai";
|
||||||
import { Container } from "../../util/container";
|
import { Container } from "../../util/container";
|
||||||
import { RawRenderer } from "./rawRenderer";
|
import { RawRenderer } from "./rawRenderer";
|
||||||
|
import { ObjectField } from "@tinacms/schema-tools/dist/types";
|
||||||
|
|
||||||
export const Footer = ({ data, rawData }) => {
|
export const Footer = ({ data, rawData }) => {
|
||||||
const socialIconClasses = "h-7 w-auto";
|
const socialIconClasses = "h-7 w-auto";
|
||||||
const socialIconColorClasses = {
|
const socialIconColorClasses = {
|
||||||
blue: "text-blue-500 dark:text-blue-400 hover:text-blue-300",
|
blue: "text-blue-500 dark:text-blue-400 hover:text-blue-300",
|
||||||
teal: "text-teal-500 dark:text-teal-400 hover:text-teal-300",
|
teal: "text-teal-500 dark:text-teal-400 hover:text-teal-300",
|
||||||
green: "text-green-500 dark:text-green-400 hover:text-green-300",
|
green: "text-green-500 dark:text-green-400 hover:text-green-300",
|
||||||
red: "text-red-500 dark:text-red-400 hover:text-red-300",
|
red: "text-red-500 dark:text-red-400 hover:text-red-300",
|
||||||
pink: "text-pink-500 dark:text-pink-400 hover:text-pink-300",
|
pink: "text-pink-500 dark:text-pink-400 hover:text-pink-300",
|
||||||
purple: "text-purple-500 dark:text-purple-400 hover:text-purple-300",
|
purple: "text-purple-500 dark:text-purple-400 hover:text-purple-300",
|
||||||
orange: "text-orange-500 dark:text-orange-400 hover:text-orange-300",
|
orange: "text-orange-500 dark:text-orange-400 hover:text-orange-300",
|
||||||
yellow: "text-yellow-500 dark:text-yellow-400 hover:text-yellow-300",
|
yellow: "text-yellow-500 dark:text-yellow-400 hover:text-yellow-300",
|
||||||
primary: "text-white opacity-80 hover:opacity-100",
|
primary: "text-white opacity-80 hover:opacity-100"
|
||||||
};
|
};
|
||||||
|
|
||||||
const footerColor = {
|
const footerColor = {
|
||||||
default:
|
default:
|
||||||
"text-gray-800 from-white to-gray-50 dark:from-gray-900 dark:to-gray-1000",
|
"text-gray-800 from-white to-gray-50 dark:from-gray-900 dark:to-gray-1000",
|
||||||
primary: {
|
primary: {
|
||||||
blue: "text-white from-blue-500 to-blue-700",
|
blue: "text-white from-blue-500 to-blue-700",
|
||||||
teal: "text-white from-teal-500 to-teal-600",
|
teal: "text-white from-teal-500 to-teal-600",
|
||||||
green: "text-white from-green-500 to-green-600",
|
green: "text-white from-green-500 to-green-600",
|
||||||
red: "text-white from-red-500 to-red-600",
|
red: "text-white from-red-500 to-red-600",
|
||||||
pink: "text-white from-pink-500 to-pink-600",
|
pink: "text-white from-pink-500 to-pink-600",
|
||||||
purple: "text-white from-purple-500 to-purple-600",
|
purple: "text-white from-purple-500 to-purple-600",
|
||||||
orange: "text-white from-orange-500 to-orange-600",
|
orange: "text-white from-orange-500 to-orange-600",
|
||||||
yellow: "text-white from-yellow-500 to-yellow-600",
|
yellow: "text-white from-yellow-500 to-yellow-600"
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const footerColorCss = footerColor.default;
|
const footerColorCss = footerColor.default;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<footer className={`bg-gradient-to-br ${footerColorCss}`}>
|
<footer className={ `bg-gradient-to-br ${ footerColorCss }` }>
|
||||||
<Container className="relative" size="small">
|
<Container className="relative" size="small">
|
||||||
<div className="flex justify-between items-center gap-6 flex-wrap">
|
<div className="flex justify-between items-center gap-6 flex-wrap">
|
||||||
<Link
|
<Link
|
||||||
href="/"
|
href="/"
|
||||||
className="group mx-2 flex items-center font-bold tracking-tight text-gray-400 dark:text-gray-300 opacity-50 hover:opacity-100 transition duration-150 ease-out whitespace-nowrap"
|
className="group mx-2 flex items-center font-bold tracking-tight text-gray-400 dark:text-gray-300 opacity-50 hover:opacity-100 transition duration-150 ease-out whitespace-nowrap"
|
||||||
>
|
/>
|
||||||
</Link>
|
<div className="flex gap-4">
|
||||||
<div className="flex gap-4">
|
{ data.social && data.social.facebook && (
|
||||||
{data.social && data.social.facebook && (
|
<a
|
||||||
<a
|
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
||||||
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
href={ data.social.facebook }
|
||||||
href={data.social.facebook}
|
target="_blank"
|
||||||
target="_blank"
|
>
|
||||||
>
|
<FaFacebookF
|
||||||
<FaFacebookF
|
className={ `${ socialIconClasses } ${
|
||||||
className={`${socialIconClasses} ${
|
socialIconColorClasses.primary
|
||||||
socialIconColorClasses["primary"]
|
}` }
|
||||||
}`}
|
/>
|
||||||
|
</a>
|
||||||
|
) }
|
||||||
|
{ data.social && data.social.twitter && (
|
||||||
|
<a
|
||||||
|
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
||||||
|
href={ data.social.twitter }
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<FaTwitter
|
||||||
|
className={ `${ socialIconClasses } ${
|
||||||
|
socialIconColorClasses.primary
|
||||||
|
}` }
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
) }
|
||||||
|
{ data.social && data.social.instagram && (
|
||||||
|
<a
|
||||||
|
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
||||||
|
href={ data.social.instagram }
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<AiFillInstagram
|
||||||
|
className={ `${ socialIconClasses } ${
|
||||||
|
socialIconColorClasses.primary
|
||||||
|
}` }
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
) }
|
||||||
|
{ data.social && data.social.github && (
|
||||||
|
<a
|
||||||
|
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
||||||
|
href={ data.social.github }
|
||||||
|
target="_blank"
|
||||||
|
>
|
||||||
|
<FaGithub
|
||||||
|
className={ `${ socialIconClasses } ${
|
||||||
|
socialIconColorClasses.primary
|
||||||
|
}` }
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
) }
|
||||||
|
</div>
|
||||||
|
<RawRenderer parentColor={ data.color } rawData={ rawData } />
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className={ `absolute h-1 bg-gradient-to-r from-transparent ${
|
||||||
|
data.color === "primary" ? "via-white" : "via-black dark:via-white"
|
||||||
|
} to-transparent top-0 left-4 right-4 opacity-5` }
|
||||||
/>
|
/>
|
||||||
</a>
|
</Container>
|
||||||
)}
|
</footer>
|
||||||
{data.social && data.social.twitter && (
|
);
|
||||||
<a
|
};
|
||||||
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
|
||||||
href={data.social.twitter}
|
export const footerSchema: ObjectField = {
|
||||||
target="_blank"
|
type: "object",
|
||||||
>
|
label: "Footer",
|
||||||
<FaTwitter
|
name: "footer",
|
||||||
className={`${socialIconClasses} ${
|
fields: [
|
||||||
socialIconColorClasses["primary"]
|
{
|
||||||
}`}
|
type: "object",
|
||||||
/>
|
label: "Social Links",
|
||||||
</a>
|
name: "social",
|
||||||
)}
|
fields: [
|
||||||
{data.social && data.social.instagram && (
|
{
|
||||||
<a
|
type: "string",
|
||||||
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
label: "Facebook",
|
||||||
href={data.social.instagram}
|
name: "facebook"
|
||||||
target="_blank"
|
},
|
||||||
>
|
{
|
||||||
<AiFillInstagram
|
type: "string",
|
||||||
className={`${socialIconClasses} ${
|
label: "Twitter",
|
||||||
socialIconColorClasses["primary"]
|
name: "twitter"
|
||||||
}`}
|
},
|
||||||
/>
|
{
|
||||||
</a>
|
type: "string",
|
||||||
)}
|
label: "Instagram",
|
||||||
{data.social && data.social.github && (
|
name: "instagram"
|
||||||
<a
|
},
|
||||||
className="inline-block opacity-80 hover:opacity-100 transition ease-out duration-150"
|
{
|
||||||
href={data.social.github}
|
type: "string",
|
||||||
target="_blank"
|
label: "Github",
|
||||||
>
|
name: "github"
|
||||||
<FaGithub
|
}
|
||||||
className={`${socialIconClasses} ${
|
]
|
||||||
socialIconColorClasses["primary"]
|
}]
|
||||||
}`}
|
|
||||||
/>
|
|
||||||
</a>
|
|
||||||
)}
|
|
||||||
</div>
|
|
||||||
<RawRenderer parentColor={data.color} rawData={rawData} />
|
|
||||||
</div>
|
|
||||||
<div
|
|
||||||
className={`absolute h-1 bg-gradient-to-r from-transparent ${
|
|
||||||
data.color === "primary" ? `via-white` : `via-black dark:via-white`
|
|
||||||
} to-transparent top-0 left-4 right-4 opacity-5`}
|
|
||||||
></div>
|
|
||||||
</Container>
|
|
||||||
</footer>
|
|
||||||
);
|
|
||||||
};
|
};
|
||||||
@@ -3,90 +3,90 @@ import { Fragment, useState } from "react";
|
|||||||
import { Dialog, Transition } from "@headlessui/react";
|
import { Dialog, Transition } from "@headlessui/react";
|
||||||
|
|
||||||
export const RawRenderer = ({ rawData, parentColor }) => {
|
export const RawRenderer = ({ rawData, parentColor }) => {
|
||||||
const buttonColorClasses = {
|
const buttonColorClasses = {
|
||||||
blue: "text-blue-500",
|
blue: "text-blue-500",
|
||||||
teal: "text-teal-500",
|
teal: "text-teal-500",
|
||||||
green: "text-green-500",
|
green: "text-green-500",
|
||||||
red: "text-red-500",
|
red: "text-red-500",
|
||||||
pink: "text-pink-500",
|
pink: "text-pink-500",
|
||||||
purple: "text-purple-500",
|
purple: "text-purple-500",
|
||||||
orange: "text-orange-500",
|
orange: "text-orange-500",
|
||||||
yellow: "text-yellow-600",
|
yellow: "text-yellow-600"
|
||||||
};
|
};
|
||||||
const [isOpen, setIsOpen] = useState(false);
|
const [isOpen, setIsOpen] = useState(false);
|
||||||
|
|
||||||
function closeModal() {
|
function closeModal() {
|
||||||
setIsOpen(false);
|
setIsOpen(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
function openModal() {
|
function openModal() {
|
||||||
setIsOpen(true);
|
setIsOpen(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
onClick={openModal}
|
onClick={ openModal }
|
||||||
className={`z-10 relative flex items-center px-5 py-2 mx-3 my-2 font-semibold shadow-sm text-sm transition duration-150 ease-out rounded transform focus:shadow-outline focus:outline-none whitespace-nowrap opacity-80 hover:opacity-100 shadow-md ${
|
className={ `z-10 relative flex items-center px-5 py-2 mx-3 my-2 font-semibold shadow-sm text-sm transition duration-150 ease-out rounded transform focus:shadow-outline focus:outline-none whitespace-nowrap opacity-80 hover:opacity-100 shadow-md ${
|
||||||
buttonColorClasses[buttonColorClasses.blue]
|
buttonColorClasses[buttonColorClasses.blue]
|
||||||
}`}
|
}` }
|
||||||
>
|
>
|
||||||
View Raw Data
|
View Raw Data
|
||||||
<span
|
<span
|
||||||
className={`absolute w-full h-full left-0 top-0 rounded -z-1 ${
|
className={ `absolute w-full h-full left-0 top-0 rounded -z-1 ${
|
||||||
parentColor === "primary"
|
parentColor === "primary"
|
||||||
? `bg-white opacity-80`
|
? "bg-white opacity-80"
|
||||||
: `bg-current opacity-15`
|
: "bg-current opacity-15"
|
||||||
}`}
|
}` }
|
||||||
></span>
|
/>
|
||||||
</button>
|
</button>
|
||||||
<Transition appear show={isOpen} as={Fragment}>
|
<Transition appear show={ isOpen } as={ Fragment }>
|
||||||
<Dialog
|
<Dialog
|
||||||
as="div"
|
as="div"
|
||||||
className="fixed inset-0 z-10 overflow-y-auto"
|
className="fixed inset-0 z-10 overflow-y-auto"
|
||||||
onClose={closeModal}
|
onClose={ closeModal }
|
||||||
>
|
|
||||||
<div className="min-h-screen max-h-screen px-4 py-12 text-center flex flex-col items-center justify-center">
|
|
||||||
<Transition.Child
|
|
||||||
as={Fragment}
|
|
||||||
enter="ease-out duration-300"
|
|
||||||
enterFrom="opacity-0"
|
|
||||||
enterTo="opacity-100"
|
|
||||||
leave="ease-out duration-300"
|
|
||||||
leaveFrom="opacity-100"
|
|
||||||
leaveTo="opacity-0"
|
|
||||||
>
|
|
||||||
<div className="">
|
|
||||||
<Dialog.Overlay className="fixed inset-0 bg-gradient-to-br from-gray-800 to-gray-1000 opacity-80" />
|
|
||||||
</div>
|
|
||||||
</Transition.Child>
|
|
||||||
|
|
||||||
<Transition.Child
|
|
||||||
as={Fragment}
|
|
||||||
enter="ease-out duration-300"
|
|
||||||
enterFrom="opacity-0 scale-95"
|
|
||||||
enterTo="opacity-100 scale-100"
|
|
||||||
leave="ease-in duration-200"
|
|
||||||
leaveFrom="opacity-100 scale-100"
|
|
||||||
leaveTo="opacity-0 scale-95"
|
|
||||||
>
|
|
||||||
<div className="flex-1 w-full prose dark:prose-dark max-w-3xl p-6 overflow-hidden text-left align-middle transition-all transform bg-white dark:bg-gray-1000 shadow-xl rounded-xl inline-flex flex-col max-h-full">
|
|
||||||
<pre className="flex-1 overflow-y-auto">
|
|
||||||
<code>{JSON.stringify(rawData, null, 2)}</code>
|
|
||||||
</pre>
|
|
||||||
<button
|
|
||||||
type="button"
|
|
||||||
className="flex-0 font-semibold text-lg transition duration-150 ease-out opacity-80 hover:opacity-100"
|
|
||||||
onClick={closeModal}
|
|
||||||
>
|
>
|
||||||
|
<div className="min-h-screen max-h-screen px-4 py-12 text-center flex flex-col items-center justify-center">
|
||||||
|
<Transition.Child
|
||||||
|
as={ Fragment }
|
||||||
|
enter="ease-out duration-300"
|
||||||
|
enterFrom="opacity-0"
|
||||||
|
enterTo="opacity-100"
|
||||||
|
leave="ease-out duration-300"
|
||||||
|
leaveFrom="opacity-100"
|
||||||
|
leaveTo="opacity-0"
|
||||||
|
>
|
||||||
|
<div className="">
|
||||||
|
<Dialog.Overlay className="fixed inset-0 bg-gradient-to-br from-gray-800 to-gray-1000 opacity-80" />
|
||||||
|
</div>
|
||||||
|
</Transition.Child>
|
||||||
|
|
||||||
|
<Transition.Child
|
||||||
|
as={ Fragment }
|
||||||
|
enter="ease-out duration-300"
|
||||||
|
enterFrom="opacity-0 scale-95"
|
||||||
|
enterTo="opacity-100 scale-100"
|
||||||
|
leave="ease-in duration-200"
|
||||||
|
leaveFrom="opacity-100 scale-100"
|
||||||
|
leaveTo="opacity-0 scale-95"
|
||||||
|
>
|
||||||
|
<div className="flex-1 w-full prose dark:prose-dark max-w-3xl p-6 overflow-hidden text-left align-middle transition-all transform bg-white dark:bg-gray-1000 shadow-xl rounded-xl inline-flex flex-col max-h-full">
|
||||||
|
<pre className="flex-1 overflow-y-auto">
|
||||||
|
<code>{ JSON.stringify(rawData, null, 2) }</code>
|
||||||
|
</pre>
|
||||||
|
<button
|
||||||
|
type="button"
|
||||||
|
className="flex-0 font-semibold text-lg transition duration-150 ease-out opacity-80 hover:opacity-100"
|
||||||
|
onClick={ closeModal }
|
||||||
|
>
|
||||||
Great, thanks!
|
Great, thanks!
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</Transition.Child>
|
</Transition.Child>
|
||||||
</div>
|
</div>
|
||||||
</Dialog>
|
</Dialog>
|
||||||
</Transition>
|
</Transition>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,55 +2,116 @@ import React from "react";
|
|||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
import defaultLogo from "../../public/logo.png";
|
import defaultLogo from "../../public/logo.png";
|
||||||
import {GlobalHeader} from "../../tina/__generated__/types";
|
import { GlobalHeader } from "../../tina/__generated__/types";
|
||||||
|
import { ObjectField } from "@tinacms/schema-tools/dist/types";
|
||||||
|
|
||||||
export const Header = ({ data }: { data: GlobalHeader }) => {
|
export const Header = ({ data }: { data: GlobalHeader }) => {
|
||||||
return (
|
return (
|
||||||
<nav className="navbar flex flex-wrap content-between sticky top-0 py-2">
|
<nav className="navbar flex flex-wrap content-between sticky top-0 py-2">
|
||||||
<div className="flex grow justify-between px-6 h-full">
|
<div className="flex grow justify-between px-6 h-full">
|
||||||
<div className="flex navbar-brand">
|
<div className="flex navbar-brand">
|
||||||
<Link
|
<Link
|
||||||
href="/"
|
href="/"
|
||||||
className="container flex items-center"
|
className="container flex items-center"
|
||||||
>
|
>
|
||||||
<img src={ data.logoSrc || defaultLogo.src }/>
|
<img src={ data.logoSrc || defaultLogo.src }/>
|
||||||
<div className="flex flex-col px-6">
|
<div className="flex flex-col px-6">
|
||||||
<h3 className="title" data-tina-field={tinaField(data, "title")}>{data.title}</h3>
|
<h3 className="title" data-tina-field={ tinaField(data, "title") }>{ data.title }</h3>
|
||||||
<div className="subtitle" data-tina-field={tinaField(data, "subtitle")}>{data.subtitle}</div>
|
<div className="subtitle" data-tina-field={ tinaField(data, "subtitle") }>{ data.subtitle }</div>
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
<button className="navbar-toggler" type="button" data-bs-toggle="collapse"
|
||||||
</div>
|
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
|
||||||
<button className="navbar-toggler" type="button" data-bs-toggle="collapse"
|
aria-label="Toggle navigation">
|
||||||
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
|
<span className="navbar-toggler-icon" />
|
||||||
aria-label="Toggle navigation">
|
</button>
|
||||||
<span className="navbar-toggler-icon"></span>
|
<div className={ "flex items-center" } id="navbarSupportedContent">
|
||||||
</button>
|
<ul className="flex md:flex-row">
|
||||||
<div className={`flex items-center` } id="navbarSupportedContent">
|
{ data.nav &&
|
||||||
<ul className="flex md:flex-row">
|
|
||||||
{data.nav &&
|
|
||||||
data.nav.map((item, i) => {
|
data.nav.map((item, i) => {
|
||||||
/*const activeItem =
|
/* const activeItem =
|
||||||
(item.href === ""
|
(item.href === ""
|
||||||
? router.asPath === "/"
|
? router.asPath === "/"
|
||||||
: router.asPath.includes(item.href)) && isClient;*/
|
: router.asPath.includes(item.href)) && isClient;*/
|
||||||
return (
|
return (
|
||||||
<li
|
<li
|
||||||
key={`${item.label}-${i}`}
|
key={ `${ item.label }-${ i }` }
|
||||||
className="nav-item"
|
className="nav-item"
|
||||||
>
|
>
|
||||||
<Link
|
<Link
|
||||||
data-tina-field={tinaField(item, "label")}
|
data-tina-field={ tinaField(item, "label") }
|
||||||
href={`${ item.external? "" : "/" }${ item.href }`}
|
href={ `${ item.external? "" : "/" }${ item.href }` }
|
||||||
className={`nav-link p-2 ${ item.external ? "external-link-icon" : ""}`}
|
className={ `nav-link p-2 ${ item.external ? "external-link-icon" : "" }` }
|
||||||
>
|
>
|
||||||
{item.label}
|
{ item.label }
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
);
|
);
|
||||||
})}
|
}) }
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
);
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const headerSchema: ObjectField = {
|
||||||
|
type: "object",
|
||||||
|
label: "Header",
|
||||||
|
name: "header",
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Page Title",
|
||||||
|
name: "pageTitle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Title",
|
||||||
|
name: "title"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Subtitle",
|
||||||
|
name: "subtitle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "image",
|
||||||
|
label: "Logo",
|
||||||
|
name: "logoSrc"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "object",
|
||||||
|
label: "Nav Links",
|
||||||
|
name: "nav",
|
||||||
|
list: true,
|
||||||
|
ui: {
|
||||||
|
itemProps: (item) => {
|
||||||
|
return { label: item?.label };
|
||||||
|
},
|
||||||
|
defaultItem: {
|
||||||
|
href: "home",
|
||||||
|
label: "Home",
|
||||||
|
external: false
|
||||||
|
}
|
||||||
|
},
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Link",
|
||||||
|
name: "href"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "string",
|
||||||
|
label: "Label",
|
||||||
|
name: "label"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "boolean",
|
||||||
|
label: "External",
|
||||||
|
name: "external"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}]
|
||||||
};
|
};
|
||||||
@@ -6,39 +6,39 @@ import layoutData from "../../content/global/index.json";
|
|||||||
import { Global } from "../../tina/__generated__/types";
|
import { Global } from "../../tina/__generated__/types";
|
||||||
|
|
||||||
export const Layout = ({
|
export const Layout = ({
|
||||||
rawData = {},
|
rawData = {},
|
||||||
data = layoutData,
|
data = layoutData,
|
||||||
children,
|
children
|
||||||
}: {
|
}: {
|
||||||
rawData?: object;
|
rawData?: object;
|
||||||
data?: Omit<Global, "id" | "_sys" | "_values">;
|
data?: Omit<Global, "id" | "_sys" | "_values">;
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Head>
|
<Head>
|
||||||
<title>{data?.header?.pageTitle}</title>
|
<title>{ data?.header?.pageTitle }</title>
|
||||||
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
|
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
|
||||||
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||||
<link
|
<link
|
||||||
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;0,800;1,400;1,700;1,800&display=swap"
|
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,700;0,800;1,400;1,700;1,800&display=swap"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
/>
|
/>
|
||||||
</Head>
|
</Head>
|
||||||
<div
|
<div
|
||||||
className={"min-h-screen flex flex-col font-nunito" }
|
className={ "min-h-screen flex flex-col font-nunito" }
|
||||||
>
|
>
|
||||||
<Header data={data?.header} />
|
<Header data={ data?.header } />
|
||||||
<div className="flex-1 text-gray-800 bg-gradient-to-br from-white to-gray-50 dark:from-gray-900 dark:to-gray-1000 flex flex-col">
|
<div className="flex-1 text-gray-800 bg-gradient-to-br from-white to-gray-50 dark:from-gray-900 dark:to-gray-1000 flex flex-col">
|
||||||
{children}
|
{ children }
|
||||||
</div>
|
</div>
|
||||||
<Footer
|
<Footer
|
||||||
rawData={rawData}
|
rawData={ rawData }
|
||||||
data={data?.footer}
|
data={ data?.footer }
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -36,175 +36,175 @@ const components: Components<{
|
|||||||
disclaimer?: TinaMarkdownContent;
|
disclaimer?: TinaMarkdownContent;
|
||||||
};
|
};
|
||||||
}> = {
|
}> = {
|
||||||
code_block: (props) => <Prism {...props} />,
|
code_block: (props) => <Prism { ...props } />,
|
||||||
BlockQuote: (props: {
|
BlockQuote: (props: {
|
||||||
children: TinaMarkdownContent;
|
children: TinaMarkdownContent;
|
||||||
authorName: string;
|
authorName: string;
|
||||||
}) => {
|
}) => {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<blockquote>
|
<blockquote>
|
||||||
<TinaMarkdown content={props.children} />
|
<TinaMarkdown content={ props.children } />
|
||||||
{props.authorName}
|
{ props.authorName }
|
||||||
</blockquote>
|
</blockquote>
|
||||||
</div>
|
|
||||||
);
|
|
||||||
},
|
|
||||||
DateTime: (props) => {
|
|
||||||
const dt = React.useMemo(() => {
|
|
||||||
return new Date();
|
|
||||||
}, []);
|
|
||||||
|
|
||||||
switch (props.format) {
|
|
||||||
case "iso":
|
|
||||||
return <span>{format(dt, "yyyy-MM-dd")}</span>;
|
|
||||||
case "utc":
|
|
||||||
return <span>{format(dt, "eee, dd MMM yyyy HH:mm:ss OOOO")}</span>;
|
|
||||||
case "local":
|
|
||||||
return <span>{format(dt, "P")}</span>;
|
|
||||||
default:
|
|
||||||
return <span>{format(dt, "P")}</span>;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
NewsletterSignup: (props) => {
|
|
||||||
return (
|
|
||||||
<div className="bg-white">
|
|
||||||
<div className="max-w-7xl mx-auto py-8 px-4 sm:px-6 lg:px-8">
|
|
||||||
<div className="">
|
|
||||||
<TinaMarkdown content={props.children} />
|
|
||||||
</div>
|
|
||||||
<div className="mt-8 ">
|
|
||||||
<form className="sm:flex">
|
|
||||||
<label htmlFor="email-address" className="sr-only">
|
|
||||||
Email address
|
|
||||||
</label>
|
|
||||||
<input
|
|
||||||
id="email-address"
|
|
||||||
name="email-address"
|
|
||||||
type="email"
|
|
||||||
autoComplete="email"
|
|
||||||
required
|
|
||||||
className="w-full px-5 py-3 border border-gray-300 shadow-sm placeholder-gray-400 focus:ring-1 focus:ring-teal-500 focus:border-teal-500 sm:max-w-xs rounded-md"
|
|
||||||
placeholder={props.placeholder}
|
|
||||||
/>
|
|
||||||
<div className="mt-3 rounded-md shadow sm:mt-0 sm:ml-3 sm:flex-shrink-0">
|
|
||||||
<button
|
|
||||||
type="submit"
|
|
||||||
className="w-full flex items-center justify-center py-3 px-5 border border-transparent text-base font-medium rounded-md text-white bg-teal-600 hover:bg-teal-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-teal-500"
|
|
||||||
>
|
|
||||||
{props.buttonText}
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</form>
|
|
||||||
<div className="mt-3 text-sm text-gray-500">
|
|
||||||
{props.disclaimer && <TinaMarkdown content={props.disclaimer} />}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
);
|
||||||
</div>
|
},
|
||||||
</div>
|
DateTime: (props) => {
|
||||||
);
|
const dt = React.useMemo(() => {
|
||||||
},
|
return new Date();
|
||||||
img: (props) => (
|
}, []);
|
||||||
<span className="flex items-center justify-center">
|
|
||||||
<img src={props.url} alt={props.alt} />
|
switch (props.format) {
|
||||||
</span>
|
case "iso":
|
||||||
),
|
return <span>{ format(dt, "yyyy-MM-dd") }</span>;
|
||||||
|
case "utc":
|
||||||
|
return <span>{ format(dt, "eee, dd MMM yyyy HH:mm:ss OOOO") }</span>;
|
||||||
|
case "local":
|
||||||
|
return <span>{ format(dt, "P") }</span>;
|
||||||
|
default:
|
||||||
|
return <span>{ format(dt, "P") }</span>;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
NewsletterSignup: (props) => {
|
||||||
|
return (
|
||||||
|
<div className="bg-white">
|
||||||
|
<div className="max-w-7xl mx-auto py-8 px-4 sm:px-6 lg:px-8">
|
||||||
|
<div className="">
|
||||||
|
<TinaMarkdown content={ props.children } />
|
||||||
|
</div>
|
||||||
|
<div className="mt-8 ">
|
||||||
|
<form className="sm:flex">
|
||||||
|
<label htmlFor="email-address" className="sr-only">
|
||||||
|
Email address
|
||||||
|
</label>
|
||||||
|
<input
|
||||||
|
id="email-address"
|
||||||
|
name="email-address"
|
||||||
|
type="email"
|
||||||
|
autoComplete="email"
|
||||||
|
required
|
||||||
|
className="w-full px-5 py-3 border border-gray-300 shadow-sm placeholder-gray-400 focus:ring-1 focus:ring-teal-500 focus:border-teal-500 sm:max-w-xs rounded-md"
|
||||||
|
placeholder={ props.placeholder }
|
||||||
|
/>
|
||||||
|
<div className="mt-3 rounded-md shadow sm:mt-0 sm:ml-3 sm:flex-shrink-0">
|
||||||
|
<button
|
||||||
|
type="submit"
|
||||||
|
className="w-full flex items-center justify-center py-3 px-5 border border-transparent text-base font-medium rounded-md text-white bg-teal-600 hover:bg-teal-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-teal-500"
|
||||||
|
>
|
||||||
|
{ props.buttonText }
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
<div className="mt-3 text-sm text-gray-500">
|
||||||
|
{ props.disclaimer && <TinaMarkdown content={ props.disclaimer } /> }
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
|
img: (props) => (
|
||||||
|
<span className="flex items-center justify-center">
|
||||||
|
<img src={ props.url } alt={ props.alt } />
|
||||||
|
</span>
|
||||||
|
)
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Post = (props: PostType) => {
|
export const Post = (props: PostType) => {
|
||||||
const titleColorClasses = {
|
const titleColorClasses = {
|
||||||
blue: "from-blue-400 to-blue-600 dark:from-blue-300 dark:to-blue-500",
|
blue: "from-blue-400 to-blue-600 dark:from-blue-300 dark:to-blue-500",
|
||||||
teal: "from-teal-400 to-teal-600 dark:from-teal-300 dark:to-teal-500",
|
teal: "from-teal-400 to-teal-600 dark:from-teal-300 dark:to-teal-500",
|
||||||
green: "from-green-400 to-green-600",
|
green: "from-green-400 to-green-600",
|
||||||
red: "from-red-400 to-red-600",
|
red: "from-red-400 to-red-600",
|
||||||
pink: "from-pink-300 to-pink-500",
|
pink: "from-pink-300 to-pink-500",
|
||||||
purple:
|
purple:
|
||||||
"from-purple-400 to-purple-600 dark:from-purple-300 dark:to-purple-500",
|
"from-purple-400 to-purple-600 dark:from-purple-300 dark:to-purple-500",
|
||||||
orange:
|
orange:
|
||||||
"from-orange-300 to-orange-600 dark:from-orange-200 dark:to-orange-500",
|
"from-orange-300 to-orange-600 dark:from-orange-200 dark:to-orange-500",
|
||||||
yellow:
|
yellow:
|
||||||
"from-yellow-400 to-yellow-500 dark:from-yellow-300 dark:to-yellow-500",
|
"from-yellow-400 to-yellow-500 dark:from-yellow-300 dark:to-yellow-500"
|
||||||
};
|
};
|
||||||
|
|
||||||
const date = new Date(props.date);
|
const date = new Date(props.date);
|
||||||
let formattedDate = "";
|
let formattedDate = "";
|
||||||
if (!isNaN(date.getTime())) {
|
if (!isNaN(date.getTime())) {
|
||||||
formattedDate = format(date, "MMM dd, yyyy");
|
formattedDate = format(date, "MMM dd, yyyy");
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Section className="flex-1">
|
<Section className="flex-1">
|
||||||
<Container width="small" className={`flex-1 pb-2`} size="large">
|
<Container width="small" className={ "flex-1 pb-2" } size="large">
|
||||||
<h2
|
<h2
|
||||||
data-tina-field={tinaField(props, "title")}
|
data-tina-field={ tinaField(props, "title") }
|
||||||
className={`w-full relative mb-8 text-6xl font-extrabold tracking-normal text-center title-font`}
|
className={ "w-full relative mb-8 text-6xl font-extrabold tracking-normal text-center title-font" }
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
className={`bg-clip-text text-transparent bg-gradient-to-r`}
|
className={ "bg-clip-text text-transparent bg-gradient-to-r" }
|
||||||
>
|
>
|
||||||
{props.title}
|
{ props.title }
|
||||||
</span>
|
</span>
|
||||||
</h2>
|
</h2>
|
||||||
<div
|
<div
|
||||||
data-tina-field={tinaField(props, "author")}
|
data-tina-field={ tinaField(props, "author") }
|
||||||
className="flex items-center justify-center mb-16"
|
className="flex items-center justify-center mb-16"
|
||||||
>
|
>
|
||||||
{props.author && (
|
{ props.author && (
|
||||||
<>
|
<>
|
||||||
<div className="flex-shrink-0 mr-4">
|
<div className="flex-shrink-0 mr-4">
|
||||||
<img
|
<img
|
||||||
data-tina-field={tinaField(props.author, "avatar")}
|
data-tina-field={ tinaField(props.author, "avatar") }
|
||||||
className="h-14 w-14 object-cover rounded-full shadow-sm"
|
className="h-14 w-14 object-cover rounded-full shadow-sm"
|
||||||
src={props.author.avatar}
|
src={ props.author.avatar }
|
||||||
alt={props.author.name}
|
alt={ props.author.name }
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p
|
<p
|
||||||
data-tina-field={tinaField(props.author, "name")}
|
data-tina-field={ tinaField(props.author, "name") }
|
||||||
className="text-base font-medium text-gray-600 group-hover:text-gray-800 dark:text-gray-200 dark:group-hover:text-white"
|
className="text-base font-medium text-gray-600 group-hover:text-gray-800 dark:text-gray-200 dark:group-hover:text-white"
|
||||||
>
|
>
|
||||||
{props.author.name}
|
{ props.author.name }
|
||||||
</p>
|
</p>
|
||||||
<span className="font-bold text-gray-200 dark:text-gray-500 mx-2">
|
<span className="font-bold text-gray-200 dark:text-gray-500 mx-2">
|
||||||
—
|
—
|
||||||
</span>
|
</span>
|
||||||
</>
|
</>
|
||||||
)}
|
) }
|
||||||
<p
|
<p
|
||||||
data-tina-field={tinaField(props, "date")}
|
data-tina-field={ tinaField(props, "date") }
|
||||||
className="text-base text-gray-400 group-hover:text-gray-500 dark:text-gray-300 dark:group-hover:text-gray-150"
|
className="text-base text-gray-400 group-hover:text-gray-500 dark:text-gray-300 dark:group-hover:text-gray-150"
|
||||||
>
|
>
|
||||||
{formattedDate}
|
{ formattedDate }
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
{props.heroImg && (
|
{ props.heroImg && (
|
||||||
<div className="px-4 w-full">
|
<div className="px-4 w-full">
|
||||||
<div
|
<div
|
||||||
data-tina-field={tinaField(props, "heroImg")}
|
data-tina-field={ tinaField(props, "heroImg") }
|
||||||
className="relative max-w-4xl lg:max-w-5xl mx-auto"
|
className="relative max-w-4xl lg:max-w-5xl mx-auto"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
src={props.heroImg}
|
src={ props.heroImg }
|
||||||
className="absolute block rounded-lg w-full h-auto blur-2xl brightness-150 contrast-[0.9] dark:brightness-150 saturate-200 opacity-50 dark:opacity-30 mix-blend-multiply dark:mix-blend-hard-light"
|
className="absolute block rounded-lg w-full h-auto blur-2xl brightness-150 contrast-[0.9] dark:brightness-150 saturate-200 opacity-50 dark:opacity-30 mix-blend-multiply dark:mix-blend-hard-light"
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
/>
|
/>
|
||||||
<img
|
<img
|
||||||
src={props.heroImg}
|
src={ props.heroImg }
|
||||||
alt={props.title}
|
alt={ props.title }
|
||||||
className="relative z-10 mb-14 block rounded-lg w-full h-auto opacity-100"
|
className="relative z-10 mb-14 block rounded-lg w-full h-auto opacity-100"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
) }
|
||||||
<Container className={`flex-1 pt-4`} width="small" size="large">
|
<Container className={ "flex-1 pt-4" } width="small" size="large">
|
||||||
<div
|
<div
|
||||||
data-tina-field={tinaField(props, "_body")}
|
data-tina-field={ tinaField(props, "_body") }
|
||||||
className="prose dark:prose-dark w-full max-w-none"
|
className="prose dark:prose-dark w-full max-w-none"
|
||||||
>
|
>
|
||||||
<TinaMarkdown components={components} content={props._body} />
|
<TinaMarkdown components={ components } content={ props._body } />
|
||||||
</div>
|
</div>
|
||||||
</Container>
|
</Container>
|
||||||
</Section>
|
</Section>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,57 +6,57 @@ import format from "date-fns/format";
|
|||||||
import { PostsType } from "../../pages/posts";
|
import { PostsType } from "../../pages/posts";
|
||||||
|
|
||||||
export const Posts = ({ data }: { data: PostsType[] }) => {
|
export const Posts = ({ data }: { data: PostsType[] }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
{data.map((postData) => {
|
{ data.map((postData) => {
|
||||||
const post = postData.node;
|
const post = postData.node;
|
||||||
const date = new Date(post.date);
|
const date = new Date(post.date);
|
||||||
let formattedDate = "";
|
let formattedDate = "";
|
||||||
if (!isNaN(date.getTime())) {
|
if (!isNaN(date.getTime())) {
|
||||||
formattedDate = format(date, "MMM dd, yyyy");
|
formattedDate = format(date, "MMM dd, yyyy");
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
key={post._sys.filename}
|
key={ post._sys.filename }
|
||||||
href={`/posts/` + post._sys.filename}
|
href={ "/posts/" + post._sys.filename }
|
||||||
className="group block px-6 sm:px-8 md:px-10 py-10 mb-8 last:mb-0 bg-gray-50 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-1000 rounded-md shadow-sm transition-all duration-150 ease-out hover:shadow-md hover:to-gray-50 dark:hover:to-gray-800"
|
className="group block px-6 sm:px-8 md:px-10 py-10 mb-8 last:mb-0 bg-gray-50 bg-gradient-to-br from-gray-50 to-gray-100 dark:from-gray-900 dark:to-gray-1000 rounded-md shadow-sm transition-all duration-150 ease-out hover:shadow-md hover:to-gray-50 dark:hover:to-gray-800"
|
||||||
>
|
>
|
||||||
<h3
|
<h3
|
||||||
className={`text-gray-700 dark:text-white text-3xl lg:text-4xl font-semibold title-font mb-5 transition-all duration-150 ease-out`}
|
className={ "text-gray-700 dark:text-white text-3xl lg:text-4xl font-semibold title-font mb-5 transition-all duration-150 ease-out" }
|
||||||
>
|
>
|
||||||
{post.title}{" "}
|
{ post.title }{ " " }
|
||||||
<span className="inline-block opacity-0 group-hover:opacity-100 transition-all duration-300 ease-out">
|
<span className="inline-block opacity-0 group-hover:opacity-100 transition-all duration-300 ease-out">
|
||||||
<BsArrowRight className="inline-block h-8 -mt-1 ml-1 w-auto opacity-70" />
|
<BsArrowRight className="inline-block h-8 -mt-1 ml-1 w-auto opacity-70" />
|
||||||
</span>
|
</span>
|
||||||
</h3>
|
</h3>
|
||||||
<div className="prose dark:prose-dark w-full max-w-none mb-5 opacity-70">
|
<div className="prose dark:prose-dark w-full max-w-none mb-5 opacity-70">
|
||||||
<TinaMarkdown content={post.excerpt} />
|
<TinaMarkdown content={ post.excerpt } />
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center">
|
<div className="flex items-center">
|
||||||
<div className="flex-shrink-0 mr-2">
|
<div className="flex-shrink-0 mr-2">
|
||||||
<img
|
<img
|
||||||
className="h-10 w-10 object-cover rounded-full shadow-sm"
|
className="h-10 w-10 object-cover rounded-full shadow-sm"
|
||||||
src={post?.author?.avatar}
|
src={ post?.author?.avatar }
|
||||||
alt={post?.author?.name}
|
alt={ post?.author?.name }
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<p className="text-base font-medium text-gray-600 group-hover:text-gray-800 dark:text-gray-200 dark:group-hover:text-white">
|
<p className="text-base font-medium text-gray-600 group-hover:text-gray-800 dark:text-gray-200 dark:group-hover:text-white">
|
||||||
{post?.author?.name}
|
{ post?.author?.name }
|
||||||
</p>
|
</p>
|
||||||
{formattedDate !== "" && (
|
{ formattedDate !== "" && (
|
||||||
<>
|
<>
|
||||||
<span className="font-bold text-gray-200 dark:text-gray-500 mx-2">
|
<span className="font-bold text-gray-200 dark:text-gray-500 mx-2">
|
||||||
—
|
—
|
||||||
</span>
|
</span>
|
||||||
<p className="text-base text-gray-400 group-hover:text-gray-500 dark:text-gray-300 dark:group-hover:text-gray-150">
|
<p className="text-base text-gray-400 group-hover:text-gray-500 dark:text-gray-300 dark:group-hover:text-gray-150">
|
||||||
{formattedDate}
|
{ formattedDate }
|
||||||
</p>
|
</p>
|
||||||
</>
|
</>
|
||||||
)}
|
) }
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
})}
|
}) }
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -5,102 +5,102 @@ import { PageBlocksHeroActions } from "../../tina/__generated__/types";
|
|||||||
import { tinaField } from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
|
|
||||||
export const Actions = ({
|
export const Actions = ({
|
||||||
parentColor = "default",
|
parentColor = "default",
|
||||||
className = "",
|
className = "",
|
||||||
actions,
|
actions
|
||||||
}: {
|
}: {
|
||||||
parentColor: string;
|
parentColor: string;
|
||||||
className: string;
|
className: string;
|
||||||
actions: PageBlocksHeroActions[];
|
actions: PageBlocksHeroActions[];
|
||||||
}) => {
|
}) => {
|
||||||
const buttonColorClasses = {
|
const buttonColorClasses = {
|
||||||
blue: "text-white bg-blue-500 hover:bg-blue-600 bg-gradient-to-r from-blue-400 to-blue-600 hover:from-blue-400 hover:to-blue-500",
|
blue: "text-white bg-blue-500 hover:bg-blue-600 bg-gradient-to-r from-blue-400 to-blue-600 hover:from-blue-400 hover:to-blue-500",
|
||||||
teal: "text-white bg-teal-500 hover:bg-teal-600 bg-gradient-to-r from-teal-400 to-teal-600 hover:from-teal-400 hover:to-teal-500",
|
teal: "text-white bg-teal-500 hover:bg-teal-600 bg-gradient-to-r from-teal-400 to-teal-600 hover:from-teal-400 hover:to-teal-500",
|
||||||
green:
|
green:
|
||||||
"text-white bg-green-500 hover:bg-green-600 bg-gradient-to-r from-green-400 to-green-600 hover:from-green-400 hover:to-green-500",
|
"text-white bg-green-500 hover:bg-green-600 bg-gradient-to-r from-green-400 to-green-600 hover:from-green-400 hover:to-green-500",
|
||||||
red: "text-white bg-red-500 hover:bg-red-600 bg-gradient-to-r from-red-500 to-red-600 hover:from-red-400 hover:to-red-500",
|
red: "text-white bg-red-500 hover:bg-red-600 bg-gradient-to-r from-red-500 to-red-600 hover:from-red-400 hover:to-red-500",
|
||||||
pink: "text-white bg-pink-500 hover:bg-pink-600 bg-gradient-to-r from-pink-400 to-pink-600 hover:from-pink-400 hover:to-pink-500",
|
pink: "text-white bg-pink-500 hover:bg-pink-600 bg-gradient-to-r from-pink-400 to-pink-600 hover:from-pink-400 hover:to-pink-500",
|
||||||
purple:
|
purple:
|
||||||
"text-white bg-purple-500 hover:bg-purple-600 bg-gradient-to-r from-purple-400 to-purple-600 hover:from-purple-400 hover:to-purple-500",
|
"text-white bg-purple-500 hover:bg-purple-600 bg-gradient-to-r from-purple-400 to-purple-600 hover:from-purple-400 hover:to-purple-500",
|
||||||
orange:
|
orange:
|
||||||
"text-white bg-orange-500 hover:bg-orange-600 bg-gradient-to-r from-orange-400 to-orange-600 hover:from-orange-400 hover:to-orange-500",
|
"text-white bg-orange-500 hover:bg-orange-600 bg-gradient-to-r from-orange-400 to-orange-600 hover:from-orange-400 hover:to-orange-500",
|
||||||
yellow:
|
yellow:
|
||||||
"text-gray-800 bg-yellow-500 hover:bg-yellow-600 bg-gradient-to-r from-yellow-400 to-yellow-600 hover:from-yellow-400 hover:to-yellow-500",
|
"text-gray-800 bg-yellow-500 hover:bg-yellow-600 bg-gradient-to-r from-yellow-400 to-yellow-600 hover:from-yellow-400 hover:to-yellow-500"
|
||||||
};
|
};
|
||||||
|
|
||||||
const invertedButtonColorClasses = {
|
const invertedButtonColorClasses = {
|
||||||
blue: "text-blue-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
blue: "text-blue-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
teal: "text-teal-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
teal: "text-teal-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
green:
|
green:
|
||||||
"text-green-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
"text-green-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
red: "text-red-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
red: "text-red-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
pink: "text-pink-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
pink: "text-pink-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
purple:
|
purple:
|
||||||
"text-purple-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
"text-purple-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
orange:
|
orange:
|
||||||
"text-orange-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
"text-orange-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
||||||
yellow:
|
yellow:
|
||||||
"text-yellow-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100",
|
"text-yellow-500 bg-white hover:bg-gray-50 bg-gradient-to-r from-gray-50 to-white hover:to-gray-100"
|
||||||
};
|
};
|
||||||
|
|
||||||
const linkButtonColorClasses = {
|
const linkButtonColorClasses = {
|
||||||
blue: "text-blue-600 dark:text-blue-400 hover:text-blue-400 dark:hover:text-blue-200",
|
blue: "text-blue-600 dark:text-blue-400 hover:text-blue-400 dark:hover:text-blue-200",
|
||||||
teal: "ttext-teal-600 dark:text-teal-400 hover:text-teal-400 dark:hover:text-teal-200",
|
teal: "ttext-teal-600 dark:text-teal-400 hover:text-teal-400 dark:hover:text-teal-200",
|
||||||
green:
|
green:
|
||||||
"text-green-600 dark:text-green-400 hover:text-green-400 dark:hover:text-green-200",
|
"text-green-600 dark:text-green-400 hover:text-green-400 dark:hover:text-green-200",
|
||||||
red: "text-red-600 dark:text-red-400 hover:text-red-400 dark:hover:text-red-200",
|
red: "text-red-600 dark:text-red-400 hover:text-red-400 dark:hover:text-red-200",
|
||||||
pink: "text-pink-600 dark:text-pink-400 hover:text-pink-400 dark:hover:text-pink-200",
|
pink: "text-pink-600 dark:text-pink-400 hover:text-pink-400 dark:hover:text-pink-200",
|
||||||
purple:
|
purple:
|
||||||
"text-purple-600 dark:text-purple-400 hover:text-purple-400 dark:hover:text-purple-200",
|
"text-purple-600 dark:text-purple-400 hover:text-purple-400 dark:hover:text-purple-200",
|
||||||
orange:
|
orange:
|
||||||
"text-orange-600 dark:text-orange-400 hover:text-orange-400 dark:hover:text-orange-200",
|
"text-orange-600 dark:text-orange-400 hover:text-orange-400 dark:hover:text-orange-200",
|
||||||
yellow:
|
yellow:
|
||||||
"text-yellow-600 dark:text-yellow-400 hover:text-yellow-400 dark:hover:text-yellow-200",
|
"text-yellow-600 dark:text-yellow-400 hover:text-yellow-400 dark:hover:text-yellow-200"
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={`flex flex-wrap items-center gap-y-4 gap-x-6 ${className}`}>
|
<div className={ `flex flex-wrap items-center gap-y-4 gap-x-6 ${ className }` }>
|
||||||
{actions &&
|
{ actions &&
|
||||||
actions.map(function (action, index) {
|
actions.map((action, index) => {
|
||||||
let element = null;
|
let element = null;
|
||||||
if (action.type === "button") {
|
if (action.type === "button") {
|
||||||
element = (
|
element = (
|
||||||
<Link key={index} href={action.link ? action.link : "/"}>
|
<Link key={ index } href={ action.link ? action.link : "/" }>
|
||||||
<button
|
<button
|
||||||
data-tina-field={tinaField(action)}
|
data-tina-field={ tinaField(action) }
|
||||||
className={`z-10 relative flex items-center px-7 py-3 font-semibold text-lg transition duration-150 ease-out rounded-lg transform focus:shadow-outline focus:outline-none focus:ring-2 ring-offset-current ring-offset-2 whitespace-nowrap ${
|
className={ `z-10 relative flex items-center px-7 py-3 font-semibold text-lg transition duration-150 ease-out rounded-lg transform focus:shadow-outline focus:outline-none focus:ring-2 ring-offset-current ring-offset-2 whitespace-nowrap ${
|
||||||
invertedButtonColorClasses["blue"] }`}
|
invertedButtonColorClasses.blue }` }
|
||||||
>
|
>
|
||||||
{action.label}
|
{ action.label }
|
||||||
{action.icon && (
|
{ action.icon && (
|
||||||
<BiRightArrowAlt
|
<BiRightArrowAlt
|
||||||
className={`ml-1 -mr-1 w-6 h-6 opacity-80`}
|
className={ "ml-1 -mr-1 w-6 h-6 opacity-80" }
|
||||||
/>
|
/>
|
||||||
)}
|
) }
|
||||||
</button>
|
</button>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if (action.type === "link" || action.type === "linkExternal") {
|
if (action.type === "link" || action.type === "linkExternal") {
|
||||||
element = (
|
element = (
|
||||||
<Link
|
<Link
|
||||||
key={index}
|
key={ index }
|
||||||
href={action.link ? action.link : "/"}
|
href={ action.link ? action.link : "/" }
|
||||||
data-tina-field={tinaField(action)}
|
data-tina-field={ tinaField(action) }
|
||||||
className={"group inline-flex items-center font-semibold text-lg transition duration-150 ease-out text-white hover:text-gray-50" }
|
className={ "group inline-flex items-center font-semibold text-lg transition duration-150 ease-out text-white hover:text-gray-50" }
|
||||||
style={{
|
style={ {
|
||||||
textShadow: "0 3px 7px rgba(var(--color-rgb-blue-400),0.2)"
|
textShadow: "0 3px 7px rgba(var(--color-rgb-blue-400),0.2)"
|
||||||
}}
|
} }
|
||||||
>
|
>
|
||||||
{action.label}
|
{ action.label }
|
||||||
{action.icon && (
|
{ action.icon && (
|
||||||
<BiRightArrowAlt className={`ml-0 mr-0 w-6 h-6 opacity-80`} />
|
<BiRightArrowAlt className={ "ml-0 mr-0 w-6 h-6 opacity-80" } />
|
||||||
)}
|
) }
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return element;
|
return element;
|
||||||
})}
|
}) }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
import * as React from "react";
|
import * as React from "react";
|
||||||
import {useEffect, useRef, useState} from "react";
|
import { useEffect, useRef, useState } from "react";
|
||||||
import {tinaField} from "tinacms/dist/react";
|
import { tinaField } from "tinacms/dist/react";
|
||||||
import {ObjectField} from "@tinacms/schema-tools/dist/types";
|
import { ObjectField } from "@tinacms/schema-tools/dist/types";
|
||||||
import {SectionElement} from "@react-types/shared";
|
|
||||||
|
|
||||||
interface AnchoringProps {
|
interface AnchoringProps {
|
||||||
text?: string, // Default: Découvrez-en plus !
|
text?: string, // Default: Découvrez-en plus !
|
||||||
@@ -10,75 +9,75 @@ interface AnchoringProps {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const Anchoring = (props: AnchoringProps) => {
|
export const Anchoring = (props: AnchoringProps) => {
|
||||||
const [opacity, setOpacity] = useState(1);
|
const [opacity, setOpacity] = useState(1);
|
||||||
const anchoringRef = useRef<HTMLDivElement>(null);
|
const anchoringRef = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
const handleScrollOpacity = () => {
|
const handleScrollOpacity = () => {
|
||||||
const scrollTop = window.scrollY || window.pageYOffset;
|
const scrollTop = window.scrollY || window.pageYOffset;
|
||||||
const elementHeight = anchoringRef.current?.clientHeight ? anchoringRef.current.clientHeight : 1;
|
const elementHeight = anchoringRef.current?.clientHeight ? anchoringRef.current.clientHeight : 1;
|
||||||
const newOpacity = (elementHeight - scrollTop) / elementHeight;
|
const newOpacity = (elementHeight - scrollTop) / elementHeight;
|
||||||
setOpacity(newOpacity);
|
setOpacity(newOpacity);
|
||||||
};
|
|
||||||
|
|
||||||
const handleScrollClick = () => {
|
|
||||||
const nextSection = anchoringRef?.current?.closest("section")?.parentElement?.nextElementSibling;
|
|
||||||
nextSection?.scrollIntoView({
|
|
||||||
behavior: "smooth",
|
|
||||||
block: "start"
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
handleScrollOpacity(); // Initialize opacity on mount
|
|
||||||
|
|
||||||
window.addEventListener('scroll', handleScrollOpacity);
|
|
||||||
|
|
||||||
return () => {
|
|
||||||
window.removeEventListener('scroll', handleScrollOpacity);
|
|
||||||
};
|
};
|
||||||
}, []);
|
|
||||||
|
|
||||||
return (
|
const handleScrollClick = () => {
|
||||||
<div
|
const nextSection = anchoringRef?.current?.closest("section")?.parentElement?.nextElementSibling;
|
||||||
className="anchoring"
|
nextSection?.scrollIntoView({
|
||||||
ref={anchoringRef}
|
behavior: "smooth",
|
||||||
style={ { opacity: opacity } }
|
block: "start"
|
||||||
>
|
});
|
||||||
<a onClick={ handleScrollClick }>
|
};
|
||||||
<h1 data-tina-field={tinaField(props, "text")}>{ props.text }</h1>
|
|
||||||
<img
|
useEffect(() => {
|
||||||
src="data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTExLjI1OCAxNi4yNDItNi02YTEuMDUgMS4wNSAwIDEgMSAxLjQ4NC0xLjQ4NEwxMiAxNC4wMTVsNS4yNTgtNS4yNTdhMS4wNSAxLjA1IDAgMSAxIDEuNDg0IDEuNDg0bC02IDZhMS4wNSAxLjA1IDAgMCAxLTEuNDg0IDBaIiBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGNsYXNzPSJmaWxsLTAwMDAwMCI+PC9wYXRoPjwvc3ZnPg=="/>
|
handleScrollOpacity(); // Initialize opacity on mount
|
||||||
</a>
|
|
||||||
</div>
|
window.addEventListener("scroll", handleScrollOpacity);
|
||||||
);
|
|
||||||
|
return () => {
|
||||||
|
window.removeEventListener("scroll", handleScrollOpacity);
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="anchoring"
|
||||||
|
ref={ anchoringRef }
|
||||||
|
style={ { opacity: opacity } }
|
||||||
|
>
|
||||||
|
<a onClick={ handleScrollClick }>
|
||||||
|
<h1 data-tina-field={ tinaField(props, "text") }>{ props.text }</h1>
|
||||||
|
<img
|
||||||
|
src="data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTExLjI1OCAxNi4yNDItNi02YTEuMDUgMS4wNSAwIDEgMSAxLjQ4NC0xLjQ4NEwxMiAxNC4wMTVsNS4yNTgtNS4yNTdhMS4wNSAxLjA1IDAgMSAxIDEuNDg0IDEuNDg0bC02IDZhMS4wNSAxLjA1IDAgMCAxLTEuNDg0IDBaIiBmaWxsPSIjZmZmZmZmIiBmaWxsLXJ1bGU9Im5vbnplcm8iIGNsYXNzPSJmaWxsLTAwMDAwMCI+PC9wYXRoPjwvc3ZnPg=="/>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const anchoringSchema: ObjectField = {
|
export const anchoringSchema: ObjectField = {
|
||||||
type: "object",
|
type: "object",
|
||||||
label: "Lien",
|
label: "Lien",
|
||||||
name: "link",
|
name: "link",
|
||||||
ui: {
|
ui: {
|
||||||
defaultItem: {
|
defaultItem: {
|
||||||
text: "Découvrez-en plus !",
|
text: "Découvrez-en plus !",
|
||||||
linkTo: "#main-page",
|
linkTo: "#main-page",
|
||||||
enabled: true
|
enabled: true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
fields: [
|
||||||
fields: [
|
{
|
||||||
{
|
type: "boolean",
|
||||||
type: "boolean",
|
label: "Active",
|
||||||
label: "Active",
|
name: "enabled"
|
||||||
name: "enabled"
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "string",
|
||||||
type: "string",
|
label: "Texte",
|
||||||
label: "Texte",
|
name: "text"
|
||||||
name: "text"
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "string",
|
||||||
type: "string",
|
label: "Lien",
|
||||||
label: "Lien",
|
name: "linkTo"
|
||||||
name: "linkTo"
|
}
|
||||||
}
|
]
|
||||||
]
|
|
||||||
};
|
};
|
||||||
@@ -1,32 +1,32 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
export const Container = ({
|
export const Container = ({
|
||||||
children,
|
children,
|
||||||
size = "medium",
|
size = "medium",
|
||||||
width = "large",
|
width = "large",
|
||||||
className = "",
|
className = "",
|
||||||
...props
|
...props
|
||||||
}) => {
|
}) => {
|
||||||
const verticalPadding = {
|
const verticalPadding = {
|
||||||
custom: "",
|
custom: "",
|
||||||
small: "py-8",
|
small: "py-8",
|
||||||
medium: "py-12",
|
medium: "py-12",
|
||||||
large: "py-24",
|
large: "py-24",
|
||||||
default: "py-12",
|
default: "py-12"
|
||||||
};
|
};
|
||||||
const widthClass = {
|
const widthClass = {
|
||||||
small: "max-w-4xl",
|
small: "max-w-4xl",
|
||||||
medium: "max-w-5xl",
|
medium: "max-w-5xl",
|
||||||
large: "max-w-7xl",
|
large: "max-w-7xl",
|
||||||
custom: "",
|
custom: ""
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`${widthClass[width]} mx-auto px-6 sm:px-8 ${verticalPadding[size]} ${className}`}
|
className={ `${ widthClass[width] } mx-auto px-6 sm:px-8 ${ verticalPadding[size] } ${ className }` }
|
||||||
{...props}
|
{ ...props }
|
||||||
>
|
>
|
||||||
{children}
|
{ children }
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -2,158 +2,157 @@ import * as React from "react";
|
|||||||
import { ColorPickerInput } from "../../tina/fields/color";
|
import { ColorPickerInput } from "../../tina/fields/color";
|
||||||
import { IconPickerInput } from "../../tina/fields/icon";
|
import { IconPickerInput } from "../../tina/fields/icon";
|
||||||
import * as BoxIcons from "react-icons/bi";
|
import * as BoxIcons from "react-icons/bi";
|
||||||
import {Template} from "tinacms";
|
import { Template } from "tinacms";
|
||||||
import {ObjectField} from "@tinacms/schema-tools/dist/types";
|
import { ObjectField } from "@tinacms/schema-tools/dist/types";
|
||||||
|
|
||||||
export const IconOptions = {
|
export const IconOptions = {
|
||||||
Tina: (props) => (
|
Tina: (props) => (
|
||||||
<svg
|
<svg
|
||||||
{...props}
|
{ ...props }
|
||||||
viewBox="0 0 66 80"
|
viewBox="0 0 66 80"
|
||||||
fill="none"
|
fill="none"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
>
|
>
|
||||||
<title>Tina</title>
|
<title>Tina</title>
|
||||||
<path
|
<path
|
||||||
d="M39.4615 36.1782C42.763 33.4475 44.2259 17.3098 45.6551 11.5091C47.0843 5.70828 52.995 6.0025 52.995 6.0025C52.995 6.0025 51.4605 8.67299 52.0864 10.6658C52.7123 12.6587 57 14.4401 57 14.4401L56.0752 16.8781C56.0752 16.8781 54.1441 16.631 52.995 18.9297C51.8459 21.2283 53.7336 43.9882 53.7336 43.9882C53.7336 43.9882 46.8271 57.6106 46.8271 63.3621C46.8271 69.1136 49.5495 73.9338 49.5495 73.9338H45.7293C45.7293 73.9338 40.1252 67.2648 38.9759 63.9318C37.8266 60.5988 38.2861 57.2658 38.2861 57.2658C38.2861 57.2658 32.1946 56.921 26.7931 57.2658C21.3915 57.6106 17.7892 62.2539 17.1391 64.8512C16.4889 67.4486 16.2196 73.9338 16.2196 73.9338H13.1991C11.3606 68.2603 9.90043 66.2269 10.6925 63.3621C12.8866 55.4269 12.4557 50.9263 11.9476 48.9217C11.4396 46.9172 8 45.1676 8 45.1676C9.68492 41.7349 11.4048 40.0854 18.8029 39.9133C26.201 39.7413 36.1599 38.9088 39.4615 36.1782Z"
|
d="M39.4615 36.1782C42.763 33.4475 44.2259 17.3098 45.6551 11.5091C47.0843 5.70828 52.995 6.0025 52.995 6.0025C52.995 6.0025 51.4605 8.67299 52.0864 10.6658C52.7123 12.6587 57 14.4401 57 14.4401L56.0752 16.8781C56.0752 16.8781 54.1441 16.631 52.995 18.9297C51.8459 21.2283 53.7336 43.9882 53.7336 43.9882C53.7336 43.9882 46.8271 57.6106 46.8271 63.3621C46.8271 69.1136 49.5495 73.9338 49.5495 73.9338H45.7293C45.7293 73.9338 40.1252 67.2648 38.9759 63.9318C37.8266 60.5988 38.2861 57.2658 38.2861 57.2658C38.2861 57.2658 32.1946 56.921 26.7931 57.2658C21.3915 57.6106 17.7892 62.2539 17.1391 64.8512C16.4889 67.4486 16.2196 73.9338 16.2196 73.9338H13.1991C11.3606 68.2603 9.90043 66.2269 10.6925 63.3621C12.8866 55.4269 12.4557 50.9263 11.9476 48.9217C11.4396 46.9172 8 45.1676 8 45.1676C9.68492 41.7349 11.4048 40.0854 18.8029 39.9133C26.201 39.7413 36.1599 38.9088 39.4615 36.1782Z"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
/>
|
/>
|
||||||
<path
|
<path
|
||||||
d="M20.25 63.03C20.25 63.03 21.0305 70.2533 25.1773 73.9342H28.7309C25.1773 69.9085 24.7897 59.415 24.7897 59.415C22.9822 60.0035 20.4799 62.1106 20.25 63.03Z"
|
d="M20.25 63.03C20.25 63.03 21.0305 70.2533 25.1773 73.9342H28.7309C25.1773 69.9085 24.7897 59.415 24.7897 59.415C22.9822 60.0035 20.4799 62.1106 20.25 63.03Z"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
/>
|
/>
|
||||||
</svg>
|
</svg>
|
||||||
),
|
),
|
||||||
...BoxIcons,
|
...BoxIcons
|
||||||
};
|
};
|
||||||
|
|
||||||
const iconColorClass: {
|
const iconColorClass: {
|
||||||
[name: string]: { regular: string; circle: string };
|
[name: string]: { regular: string; circle: string };
|
||||||
} = {
|
} = {
|
||||||
blue: {
|
blue: {
|
||||||
regular: "text-blue-400",
|
regular: "text-blue-400",
|
||||||
circle: "bg-blue-400 dark:bg-blue-500 text-blue-50",
|
circle: "bg-blue-400 dark:bg-blue-500 text-blue-50"
|
||||||
},
|
},
|
||||||
teal: {
|
teal: {
|
||||||
regular: "text-teal-400",
|
regular: "text-teal-400",
|
||||||
circle: "bg-teal-400 dark:bg-teal-500 text-teal-50",
|
circle: "bg-teal-400 dark:bg-teal-500 text-teal-50"
|
||||||
},
|
},
|
||||||
green: {
|
green: {
|
||||||
regular: "text-green-400",
|
regular: "text-green-400",
|
||||||
circle: "bg-green-400 dark:bg-green-500 text-green-50",
|
circle: "bg-green-400 dark:bg-green-500 text-green-50"
|
||||||
},
|
},
|
||||||
red: {
|
red: {
|
||||||
regular: "text-red-400",
|
regular: "text-red-400",
|
||||||
circle: "bg-red-400 dark:bg-red-500 text-red-50",
|
circle: "bg-red-400 dark:bg-red-500 text-red-50"
|
||||||
},
|
},
|
||||||
pink: {
|
pink: {
|
||||||
regular: "text-pink-400",
|
regular: "text-pink-400",
|
||||||
circle: "bg-pink-400 dark:bg-pink-500 text-pink-50",
|
circle: "bg-pink-400 dark:bg-pink-500 text-pink-50"
|
||||||
},
|
},
|
||||||
purple: {
|
purple: {
|
||||||
regular: "text-purple-400",
|
regular: "text-purple-400",
|
||||||
circle: "bg-purple-400 dark:bg-purple-500 text-purple-50",
|
circle: "bg-purple-400 dark:bg-purple-500 text-purple-50"
|
||||||
},
|
},
|
||||||
orange: {
|
orange: {
|
||||||
regular: "text-orange-400",
|
regular: "text-orange-400",
|
||||||
circle: "bg-orange-400 dark:bg-orange-500 text-orange-50",
|
circle: "bg-orange-400 dark:bg-orange-500 text-orange-50"
|
||||||
},
|
},
|
||||||
yellow: {
|
yellow: {
|
||||||
regular: "text-yellow-400",
|
regular: "text-yellow-400",
|
||||||
circle: "bg-yellow-400 dark:bg-yellow-500 text-yellow-50",
|
circle: "bg-yellow-400 dark:bg-yellow-500 text-yellow-50"
|
||||||
},
|
},
|
||||||
white: {
|
white: {
|
||||||
regular: "text-white opacity-80",
|
regular: "text-white opacity-80",
|
||||||
circle: "bg-white-400 dark:bg-white-500 text-white-50",
|
circle: "bg-white-400 dark:bg-white-500 text-white-50"
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const iconSizeClass = {
|
const iconSizeClass = {
|
||||||
xs: "w-6 h-6 flex-shrink-0",
|
xs: "w-6 h-6 flex-shrink-0",
|
||||||
small: "w-8 h-8 flex-shrink-0",
|
small: "w-8 h-8 flex-shrink-0",
|
||||||
medium: "w-12 h-12 flex-shrink-0",
|
medium: "w-12 h-12 flex-shrink-0",
|
||||||
large: "w-14 h-14 flex-shrink-0",
|
large: "w-14 h-14 flex-shrink-0",
|
||||||
xl: "w-16 h-16 flex-shrink-0",
|
xl: "w-16 h-16 flex-shrink-0",
|
||||||
custom: "",
|
custom: ""
|
||||||
};
|
};
|
||||||
|
|
||||||
export const Icon = ({
|
export const Icon = ({
|
||||||
data,
|
data,
|
||||||
parentColor = "",
|
parentColor = "",
|
||||||
className = "",
|
className = "",
|
||||||
tinaField = "",
|
tinaField = ""
|
||||||
}) => {
|
}) => {
|
||||||
if (IconOptions[data.name] === null || IconOptions[data.name] === undefined) {
|
if (IconOptions[data.name] === null || IconOptions[data.name] === undefined) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { name, color, size = "medium", style = "regular" } = data;
|
const { name, color, size = "medium", style = "regular" } = data;
|
||||||
|
|
||||||
const IconSVG = IconOptions[name];
|
const IconSVG = IconOptions[name];
|
||||||
|
|
||||||
const iconSizeClasses =
|
const iconSizeClasses =
|
||||||
typeof size === "string"
|
typeof size === "string"
|
||||||
? iconSizeClass[size]
|
? iconSizeClass[size]
|
||||||
: iconSizeClass[Object.keys(iconSizeClass)[size]];
|
: iconSizeClass[Object.keys(iconSizeClass)[size]];
|
||||||
|
|
||||||
const iconColor = color;
|
const iconColor = color;
|
||||||
|
|
||||||
if (style == "circle") {
|
if (style == "circle") {
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
data-tina-field={tinaField}
|
data-tina-field={ tinaField }
|
||||||
className={`relative z-10 inline-flex items-center justify-center flex-shrink-0 ${iconSizeClasses} rounded-full ${iconColorClass[iconColor].circle} ${className}`}
|
className={ `relative z-10 inline-flex items-center justify-center flex-shrink-0 ${ iconSizeClasses } rounded-full ${ iconColorClass[iconColor].circle } ${ className }` }
|
||||||
>
|
>
|
||||||
<IconSVG className="w-2/3 h-2/3" />
|
<IconSVG className="w-2/3 h-2/3" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
} else {
|
}
|
||||||
const iconColorClasses =
|
const iconColorClasses =
|
||||||
iconColorClass[parentColor === "primary" && (iconColor === "primary") ? "white" : iconColor]?.regular || "white";
|
iconColorClass[parentColor === "primary" && (iconColor === "primary") ? "white" : iconColor]?.regular || "white";
|
||||||
return (
|
return (
|
||||||
<IconSVG
|
<IconSVG
|
||||||
data-tina-field={tinaField}
|
data-tina-field={ tinaField }
|
||||||
className={`${iconSizeClasses} ${iconColorClasses} ${className}`}
|
className={ `${ iconSizeClasses } ${ iconColorClasses } ${ className }` }
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const iconSchema: ObjectField = {
|
export const iconSchema: ObjectField = {
|
||||||
type: "object",
|
type: "object",
|
||||||
label: "Icon",
|
label: "Icon",
|
||||||
name: "icon",
|
name: "icon",
|
||||||
fields: [
|
fields: [
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Icon",
|
|
||||||
name: "name",
|
|
||||||
ui: {
|
|
||||||
component: (props) => IconPickerInput(props),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Color",
|
|
||||||
name: "color",
|
|
||||||
ui: {
|
|
||||||
component: () => ColorPickerInput,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "style",
|
|
||||||
label: "Style",
|
|
||||||
type: "string",
|
|
||||||
options: [
|
|
||||||
{
|
{
|
||||||
label: "Circle",
|
type: "string",
|
||||||
value: "circle",
|
label: "Icon",
|
||||||
|
name: "name",
|
||||||
|
ui: {
|
||||||
|
component: (props) => IconPickerInput(props)
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Float",
|
type: "string",
|
||||||
value: "float",
|
label: "Color",
|
||||||
|
name: "color",
|
||||||
|
ui: {
|
||||||
|
component: () => ColorPickerInput
|
||||||
|
}
|
||||||
},
|
},
|
||||||
],
|
{
|
||||||
},
|
name: "style",
|
||||||
],
|
label: "Style",
|
||||||
|
type: "string",
|
||||||
|
options: [
|
||||||
|
{
|
||||||
|
label: "Circle",
|
||||||
|
value: "circle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Float",
|
||||||
|
value: "float"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
export const Section = ({ children, color = "", className = "" }) => {
|
export const Section = ({ children, color = "", className = "" }) => {
|
||||||
const sectionColor = {
|
const sectionColor = {
|
||||||
default:
|
default:
|
||||||
"text-gray-800 dark:text-gray-50 bg-gradient-to-tl from-gray-50 dark:from-gray-900 via-transparent to-transparent",
|
"text-gray-800 dark:text-gray-50 bg-gradient-to-tl from-gray-50 dark:from-gray-900 via-transparent to-transparent",
|
||||||
tint: "text-gray-900 dark:text-gray-100 bg-gradient-to-br from-gray-100 dark:from-gray-1000 to-transparent",
|
tint: "text-gray-900 dark:text-gray-100 bg-gradient-to-br from-gray-100 dark:from-gray-1000 to-transparent",
|
||||||
primary: {
|
primary: {
|
||||||
blue: "text-white bg-blue-500 bg-gradient-to-br from-blue-500 to-blue-600",
|
blue: "text-white bg-blue-500 bg-gradient-to-br from-blue-500 to-blue-600",
|
||||||
teal: "text-white bg-teal-500 bg-gradient-to-br from-teal-500 to-teal-600",
|
teal: "text-white bg-teal-500 bg-gradient-to-br from-teal-500 to-teal-600",
|
||||||
green:
|
green:
|
||||||
"text-white bg-green-600 bg-gradient-to-br from-green-600 to-green-700",
|
"text-white bg-green-600 bg-gradient-to-br from-green-600 to-green-700",
|
||||||
red: "text-white bg-red-500 bg-gradient-to-br from-red-500 to-red-600",
|
red: "text-white bg-red-500 bg-gradient-to-br from-red-500 to-red-600",
|
||||||
pink: "text-white bg-pink-500 bg-gradient-to-br from-pink-500 to-pink-600",
|
pink: "text-white bg-pink-500 bg-gradient-to-br from-pink-500 to-pink-600",
|
||||||
purple:
|
purple:
|
||||||
"text-white bg-purple-500 bg-gradient-to-br from-purple-500 to-purple-600",
|
"text-white bg-purple-500 bg-gradient-to-br from-purple-500 to-purple-600",
|
||||||
orange:
|
orange:
|
||||||
"text-white bg-orange-500 bg-gradient-to-br from-orange-500 to-orange-600",
|
"text-white bg-orange-500 bg-gradient-to-br from-orange-500 to-orange-600",
|
||||||
yellow:
|
yellow:
|
||||||
"text-white bg-yellow-500 bg-gradient-to-br from-yellow-500 to-yellow-600",
|
"text-white bg-yellow-500 bg-gradient-to-br from-yellow-500 to-yellow-600"
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
const sectionColorCss = sectionColor[color]
|
const sectionColorCss = sectionColor[color]
|
||||||
? sectionColor[color]
|
? sectionColor[color]
|
||||||
: sectionColor.default;
|
: sectionColor.default;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section
|
<section
|
||||||
className={`flex-1 relative transition duration-150 ease-out body-font overflow-hidden ${sectionColorCss} ${className}`}
|
className={ `flex-1 relative transition duration-150 ease-out body-font overflow-hidden ${ sectionColorCss } ${ className }` }
|
||||||
>
|
>
|
||||||
{children}
|
{ children }
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -76,3 +76,6 @@ blocks:
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,9 +17,11 @@
|
|||||||
"@types/react": "^17.0.35",
|
"@types/react": "^17.0.35",
|
||||||
"@types/styled-components": "^5.1.15",
|
"@types/styled-components": "^5.1.15",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
"@typescript-eslint/eslint-plugin": "^5.20.0",
|
||||||
"@typescript-eslint/parser": "^5.20.0",
|
"@typescript-eslint/parser": "^6.5.0",
|
||||||
"autoprefixer": "^10.4.0",
|
"autoprefixer": "^10.4.0",
|
||||||
"eslint": "^8.13.0",
|
"eslint": "^8.13.0",
|
||||||
|
"eslint-plugin-react": "^7.33.2",
|
||||||
|
"eslint-plugin-react-hooks": "^4.6.0",
|
||||||
"postcss": "^8.3.11",
|
"postcss": "^8.3.11",
|
||||||
"postcss-import": "^14.0.2",
|
"postcss-import": "^14.0.2",
|
||||||
"postcss-nesting": "^10.1.0"
|
"postcss-nesting": "^10.1.0"
|
||||||
|
|||||||
38
pages/404.js
38
pages/404.js
@@ -2,23 +2,23 @@ import { Hero } from "../components/blocks/hero";
|
|||||||
import { Layout } from "../components/layout";
|
import { Layout } from "../components/layout";
|
||||||
|
|
||||||
export default function FourOhFour() {
|
export default function FourOhFour() {
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
<Hero
|
<Hero
|
||||||
data={{
|
data={ {
|
||||||
color: "default",
|
color: "default",
|
||||||
headline: "404 – Page Not Found",
|
headline: "404 – Page Not Found",
|
||||||
text: "Oops! It seems there's nothing here, how embarrassing.",
|
text: "Oops! It seems there's nothing here, how embarrassing.",
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
label: "Return Home",
|
label: "Return Home",
|
||||||
type: "button",
|
type: "button",
|
||||||
icon: true,
|
icon: true,
|
||||||
link: "/",
|
link: "/"
|
||||||
},
|
}
|
||||||
],
|
]
|
||||||
}}
|
} }
|
||||||
/>
|
/>
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,36 +6,36 @@ import { Layout } from "../components/layout";
|
|||||||
import { client } from "../tina/__generated__/client";
|
import { client } from "../tina/__generated__/client";
|
||||||
|
|
||||||
export default function HomePage(
|
export default function HomePage(
|
||||||
props: InferGetStaticPropsType<typeof getStaticProps>
|
props: InferGetStaticPropsType<typeof getStaticProps>
|
||||||
) {
|
) {
|
||||||
const { data } = useTina(props);
|
const { data } = useTina(props);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout rawData={data} data={data.global as any}>
|
<Layout rawData={ data } data={ data.global as any }>
|
||||||
<Blocks {...data.page} />
|
<Blocks { ...data.page } />
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getStaticProps = async ({ params }) => {
|
export const getStaticProps = async ({ params }) => {
|
||||||
const tinaProps = await client.queries.contentQuery({
|
const tinaProps = await client.queries.contentQuery({
|
||||||
relativePath: `${params.filename}.md`,
|
relativePath: `${ params.filename }.md`
|
||||||
});
|
});
|
||||||
const props = {
|
const props = {
|
||||||
...tinaProps,
|
...tinaProps,
|
||||||
enableVisualEditing: process.env.VERCEL_ENV === "preview",
|
enableVisualEditing: process.env.VERCEL_ENV === "preview"
|
||||||
};
|
};
|
||||||
return {
|
return {
|
||||||
props: JSON.parse(JSON.stringify(props)) as typeof props,
|
props: JSON.parse(JSON.stringify(props)) as typeof props
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export const getStaticPaths = async () => {
|
export const getStaticPaths = async () => {
|
||||||
const pagesListData = await client.queries.pageConnection();
|
const pagesListData = await client.queries.pageConnection();
|
||||||
return {
|
return {
|
||||||
paths: pagesListData.data.pageConnection?.edges?.map((page) => ({
|
paths: pagesListData.data.pageConnection?.edges?.map((page) => ({
|
||||||
params: { filename: page?.node?._sys.filename },
|
params: { filename: page?.node?._sys.filename }
|
||||||
})),
|
})),
|
||||||
fallback: false,
|
fallback: false
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
import "../styles/_styles.scss";
|
import "../styles/_styles.scss";
|
||||||
|
|
||||||
const App = ({ Component, pageProps }) => {
|
const App = ({ Component, pageProps }) => {
|
||||||
return <Component {...pageProps} />;
|
return <Component { ...pageProps } />;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|||||||
@@ -6,28 +6,28 @@ import { Layout } from "../components/layout";
|
|||||||
import { InferGetStaticPropsType } from "next";
|
import { InferGetStaticPropsType } from "next";
|
||||||
|
|
||||||
export default function HomePage(
|
export default function HomePage(
|
||||||
props: InferGetStaticPropsType<typeof getStaticProps>
|
props: InferGetStaticPropsType<typeof getStaticProps>
|
||||||
) {
|
) {
|
||||||
const posts = props.data.postConnection.edges;
|
const posts = props.data.postConnection.edges;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Layout>
|
<Layout>
|
||||||
<Section className="flex-1">
|
<Section className="flex-1">
|
||||||
<Container size="large" width="small">
|
<Container size="large" width="small">
|
||||||
<Posts data={posts} />
|
<Posts data={ posts } />
|
||||||
</Container>
|
</Container>
|
||||||
</Section>
|
</Section>
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getStaticProps = async () => {
|
export const getStaticProps = async () => {
|
||||||
const tinaProps = await client.queries.pageQuery();
|
const tinaProps = await client.queries.pageQuery();
|
||||||
return {
|
return {
|
||||||
props: {
|
props: {
|
||||||
...tinaProps,
|
...tinaProps
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type PostsType = InferGetStaticPropsType<
|
export type PostsType = InferGetStaticPropsType<
|
||||||
|
|||||||
@@ -6,36 +6,36 @@ import { InferGetStaticPropsType } from "next";
|
|||||||
|
|
||||||
// Use the props returned by get static props
|
// Use the props returned by get static props
|
||||||
export default function BlogPostPage(
|
export default function BlogPostPage(
|
||||||
props: InferGetStaticPropsType<typeof getStaticProps>
|
props: InferGetStaticPropsType<typeof getStaticProps>
|
||||||
) {
|
) {
|
||||||
const { data } = useTina({
|
const { data } = useTina({
|
||||||
query: props.query,
|
query: props.query,
|
||||||
variables: props.variables,
|
variables: props.variables,
|
||||||
data: props.data,
|
data: props.data
|
||||||
});
|
});
|
||||||
if (data && data.post) {
|
if (data && data.post) {
|
||||||
|
return (
|
||||||
|
<Layout rawData={ data } data={ data.global }>
|
||||||
|
<Post { ...data.post } />
|
||||||
|
</Layout>
|
||||||
|
);
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<Layout rawData={data} data={data.global}>
|
<Layout>
|
||||||
<Post {...data.post} />
|
<div>No data</div>;
|
||||||
</Layout>
|
</Layout>
|
||||||
);
|
);
|
||||||
}
|
|
||||||
return (
|
|
||||||
<Layout>
|
|
||||||
<div>No data</div>;
|
|
||||||
</Layout>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const getStaticProps = async ({ params }) => {
|
export const getStaticProps = async ({ params }) => {
|
||||||
const tinaProps = await client.queries.blogPostQuery({
|
const tinaProps = await client.queries.blogPostQuery({
|
||||||
relativePath: `${params.filename}.mdx`,
|
relativePath: `${ params.filename }.mdx`
|
||||||
});
|
});
|
||||||
return {
|
return {
|
||||||
props: {
|
props: {
|
||||||
...tinaProps,
|
...tinaProps
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -46,13 +46,13 @@ export const getStaticProps = async ({ params }) => {
|
|||||||
* be viewable at http://localhost:3000/posts/hello
|
* be viewable at http://localhost:3000/posts/hello
|
||||||
*/
|
*/
|
||||||
export const getStaticPaths = async () => {
|
export const getStaticPaths = async () => {
|
||||||
const postsListData = await client.queries.postConnection();
|
const postsListData = await client.queries.postConnection();
|
||||||
return {
|
return {
|
||||||
paths: postsListData.data.postConnection.edges.map((post) => ({
|
paths: postsListData.data.postConnection.edges.map((post) => ({
|
||||||
params: { filename: post.node._sys.filename },
|
params: { filename: post.node._sys.filename }
|
||||||
})),
|
})),
|
||||||
fallback: "blocking",
|
fallback: "blocking"
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
export type PostType = InferGetStaticPropsType<
|
export type PostType = InferGetStaticPropsType<
|
||||||
|
|||||||
501
tina/config.tsx
501
tina/config.tsx
@@ -3,320 +3,229 @@ import { contentBlockSchema } from "../components/blocks/content";
|
|||||||
import { featureBlockSchema } from "../components/blocks/features";
|
import { featureBlockSchema } from "../components/blocks/features";
|
||||||
import { heroBlockSchema } from "../components/blocks/hero";
|
import { heroBlockSchema } from "../components/blocks/hero";
|
||||||
import { testimonialBlockSchema } from "../components/blocks/testimonial";
|
import { testimonialBlockSchema } from "../components/blocks/testimonial";
|
||||||
import { ColorPickerInput } from "./fields/color";
|
import { carouselBlockSchema } from "../components/blocks/carousel";
|
||||||
import {carouselBlockSchema} from "../components/blocks/carousel";
|
import { headerSchema } from "../components/layout/header";
|
||||||
|
import { footerSchema } from "../components/layout/footer/footer";
|
||||||
|
|
||||||
const config = defineConfig({
|
const config = defineConfig({
|
||||||
clientId: process.env.NEXT_PUBLIC_TINA_CLIENT_ID!,
|
clientId: process.env.NEXT_PUBLIC_TINA_CLIENT_ID!,
|
||||||
branch:
|
branch:
|
||||||
process.env.NEXT_PUBLIC_TINA_BRANCH! || // custom branch env override
|
process.env.NEXT_PUBLIC_TINA_BRANCH! || // custom branch env override
|
||||||
process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF! || // Vercel branch env
|
process.env.NEXT_PUBLIC_VERCEL_GIT_COMMIT_REF! || // Vercel branch env
|
||||||
process.env.HEAD!, // Netlify branch env
|
process.env.HEAD!, // Netlify branch env
|
||||||
token: process.env.TINA_TOKEN!,
|
token: process.env.TINA_TOKEN!,
|
||||||
media: {
|
media: {
|
||||||
// If you wanted cloudinary do this
|
// If you wanted cloudinary do this
|
||||||
// loadCustomStore: async () => {
|
// loadCustomStore: async () => {
|
||||||
// const pack = await import("next-tinacms-cloudinary");
|
// const pack = await import("next-tinacms-cloudinary");
|
||||||
// return pack.TinaCloudCloudinaryMediaStore;
|
// return pack.TinaCloudCloudinaryMediaStore;
|
||||||
// },
|
// },
|
||||||
// this is the config for the tina cloud media store
|
// this is the config for the tina cloud media store
|
||||||
tina: {
|
tina: {
|
||||||
publicFolder: "public",
|
publicFolder: "public",
|
||||||
mediaRoot: "uploads",
|
mediaRoot: "uploads"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
},
|
build: {
|
||||||
build: {
|
publicFolder: "public", // The public asset folder for your framework
|
||||||
publicFolder: "public", // The public asset folder for your framework
|
outputFolder: "admin" // within the public folder
|
||||||
outputFolder: "admin", // within the public folder
|
},
|
||||||
},
|
schema: {
|
||||||
schema: {
|
collections: [
|
||||||
collections: [
|
{
|
||||||
{
|
label: "Blog Posts",
|
||||||
label: "Blog Posts",
|
name: "post",
|
||||||
name: "post",
|
path: "content/posts",
|
||||||
path: "content/posts",
|
format: "mdx",
|
||||||
format: "mdx",
|
ui: {
|
||||||
ui: {
|
router: ({ document }) => {
|
||||||
router: ({ document }) => {
|
return `/posts/${ document._sys.filename }`;
|
||||||
return `/posts/${document._sys.filename}`;
|
}
|
||||||
},
|
},
|
||||||
},
|
fields: [
|
||||||
fields: [
|
{
|
||||||
{
|
type: "string",
|
||||||
type: "string",
|
label: "Title",
|
||||||
label: "Title",
|
name: "title",
|
||||||
name: "title",
|
isTitle: true,
|
||||||
isTitle: true,
|
required: true
|
||||||
required: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "image",
|
||||||
type: "image",
|
name: "heroImg",
|
||||||
name: "heroImg",
|
label: "Hero Image"
|
||||||
label: "Hero Image",
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "rich-text",
|
||||||
type: "rich-text",
|
label: "Excerpt",
|
||||||
label: "Excerpt",
|
name: "excerpt"
|
||||||
name: "excerpt",
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "reference",
|
||||||
type: "reference",
|
label: "Author",
|
||||||
label: "Author",
|
name: "author",
|
||||||
name: "author",
|
collections: ["author"]
|
||||||
collections: ["author"],
|
},
|
||||||
},
|
{
|
||||||
{
|
type: "datetime",
|
||||||
type: "datetime",
|
label: "Posted Date",
|
||||||
label: "Posted Date",
|
name: "date",
|
||||||
name: "date",
|
ui: {
|
||||||
ui: {
|
dateFormat: "MMMM DD YYYY",
|
||||||
dateFormat: "MMMM DD YYYY",
|
timeFormat: "hh:mm A"
|
||||||
timeFormat: "hh:mm A",
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: "rich-text",
|
||||||
|
label: "Body",
|
||||||
|
name: "_body",
|
||||||
|
templates: [
|
||||||
|
{
|
||||||
|
name: "DateTime",
|
||||||
|
label: "Date & Time",
|
||||||
|
inline: true,
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: "format",
|
||||||
|
label: "Format",
|
||||||
|
type: "string",
|
||||||
|
options: ["utc", "iso", "local"]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "BlockQuote",
|
||||||
|
label: "Block Quote",
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: "children",
|
||||||
|
label: "Quote",
|
||||||
|
type: "rich-text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "authorName",
|
||||||
|
label: "Author",
|
||||||
|
type: "string"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "NewsletterSignup",
|
||||||
|
label: "Newsletter Sign Up",
|
||||||
|
fields: [
|
||||||
|
{
|
||||||
|
name: "children",
|
||||||
|
label: "CTA",
|
||||||
|
type: "rich-text"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "placeholder",
|
||||||
|
label: "Placeholder",
|
||||||
|
type: "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "buttonText",
|
||||||
|
label: "Button Text",
|
||||||
|
type: "string"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "disclaimer",
|
||||||
|
label: "Disclaimer",
|
||||||
|
type: "rich-text"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
ui: {
|
||||||
|
defaultItem: {
|
||||||
|
placeholder: "Enter your email",
|
||||||
|
buttonText: "Notify Me"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
isBody: true
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
},
|
{
|
||||||
{
|
label: "Global",
|
||||||
type: "rich-text",
|
name: "global",
|
||||||
label: "Body",
|
path: "content/global",
|
||||||
name: "_body",
|
format: "json",
|
||||||
templates: [
|
|
||||||
{
|
|
||||||
name: "DateTime",
|
|
||||||
label: "Date & Time",
|
|
||||||
inline: true,
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
name: "format",
|
|
||||||
label: "Format",
|
|
||||||
type: "string",
|
|
||||||
options: ["utc", "iso", "local"],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "BlockQuote",
|
|
||||||
label: "Block Quote",
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
name: "children",
|
|
||||||
label: "Quote",
|
|
||||||
type: "rich-text",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "authorName",
|
|
||||||
label: "Author",
|
|
||||||
type: "string",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "NewsletterSignup",
|
|
||||||
label: "Newsletter Sign Up",
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
name: "children",
|
|
||||||
label: "CTA",
|
|
||||||
type: "rich-text",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "placeholder",
|
|
||||||
label: "Placeholder",
|
|
||||||
type: "string",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "buttonText",
|
|
||||||
label: "Button Text",
|
|
||||||
type: "string",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "disclaimer",
|
|
||||||
label: "Disclaimer",
|
|
||||||
type: "rich-text",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
ui: {
|
ui: {
|
||||||
defaultItem: {
|
global: true
|
||||||
placeholder: "Enter your email",
|
|
||||||
buttonText: "Notify Me",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
isBody: true,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Global",
|
|
||||||
name: "global",
|
|
||||||
path: "content/global",
|
|
||||||
format: "json",
|
|
||||||
ui: {
|
|
||||||
global: true,
|
|
||||||
},
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "object",
|
|
||||||
label: "Header",
|
|
||||||
name: "header",
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Page Title",
|
|
||||||
name: "pageTitle",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Title",
|
|
||||||
name: "title",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Subtitle",
|
|
||||||
name: "subtitle",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "image",
|
|
||||||
label: "Logo",
|
|
||||||
name: "logoSrc"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "object",
|
|
||||||
label: "Nav Links",
|
|
||||||
name: "nav",
|
|
||||||
list: true,
|
|
||||||
ui: {
|
|
||||||
itemProps: (item) => {
|
|
||||||
return { label: item?.label };
|
|
||||||
},
|
|
||||||
defaultItem: {
|
|
||||||
href: "home",
|
|
||||||
label: "Home",
|
|
||||||
external: false
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
fields: [
|
fields: [
|
||||||
{
|
headerSchema,
|
||||||
type: "string",
|
footerSchema
|
||||||
label: "Link",
|
]
|
||||||
name: "href",
|
},
|
||||||
},
|
{
|
||||||
{
|
label: "Authors",
|
||||||
type: "string",
|
name: "author",
|
||||||
label: "Label",
|
path: "content/authors",
|
||||||
name: "label",
|
format: "md",
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "boolean",
|
|
||||||
label: "External",
|
|
||||||
name: "external",
|
|
||||||
}
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "object",
|
|
||||||
label: "Footer",
|
|
||||||
name: "footer",
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "object",
|
|
||||||
label: "Social Links",
|
|
||||||
name: "social",
|
|
||||||
fields: [
|
fields: [
|
||||||
{
|
{
|
||||||
type: "string",
|
type: "string",
|
||||||
label: "Facebook",
|
label: "Name",
|
||||||
name: "facebook",
|
name: "name",
|
||||||
},
|
isTitle: true,
|
||||||
{
|
required: true
|
||||||
type: "string",
|
},
|
||||||
label: "Twitter",
|
{
|
||||||
name: "twitter",
|
type: "image",
|
||||||
},
|
label: "Avatar",
|
||||||
{
|
name: "avatar"
|
||||||
type: "string",
|
}
|
||||||
label: "Instagram",
|
]
|
||||||
name: "instagram",
|
},
|
||||||
},
|
{
|
||||||
{
|
label: "Pages",
|
||||||
type: "string",
|
name: "page",
|
||||||
label: "Github",
|
path: "content/pages",
|
||||||
name: "github",
|
ui: {
|
||||||
},
|
router: ({ document }) => {
|
||||||
],
|
if (document._sys.filename === "home") {
|
||||||
},
|
return "/";
|
||||||
],
|
}
|
||||||
},
|
if (document._sys.filename === "about") {
|
||||||
],
|
return "/about";
|
||||||
},
|
}
|
||||||
{
|
return undefined;
|
||||||
label: "Authors",
|
}
|
||||||
name: "author",
|
},
|
||||||
path: "content/authors",
|
fields: [
|
||||||
format: "md",
|
{
|
||||||
fields: [
|
type: "string",
|
||||||
{
|
label: "Title",
|
||||||
type: "string",
|
name: "title",
|
||||||
label: "Name",
|
description:
|
||||||
name: "name",
|
|
||||||
isTitle: true,
|
|
||||||
required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
type: "image",
|
|
||||||
label: "Avatar",
|
|
||||||
name: "avatar",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Pages",
|
|
||||||
name: "page",
|
|
||||||
path: "content/pages",
|
|
||||||
ui: {
|
|
||||||
router: ({ document }) => {
|
|
||||||
if (document._sys.filename === "home") {
|
|
||||||
return `/`;
|
|
||||||
}
|
|
||||||
if (document._sys.filename === "about") {
|
|
||||||
return `/about`;
|
|
||||||
}
|
|
||||||
return undefined;
|
|
||||||
},
|
|
||||||
},
|
|
||||||
fields: [
|
|
||||||
{
|
|
||||||
type: "string",
|
|
||||||
label: "Title",
|
|
||||||
name: "title",
|
|
||||||
description:
|
|
||||||
"The title of the page. This is used to display the title in the CMS",
|
"The title of the page. This is used to display the title in the CMS",
|
||||||
isTitle: true,
|
isTitle: true,
|
||||||
required: true,
|
required: true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "object",
|
type: "object",
|
||||||
list: true,
|
list: true,
|
||||||
name: "blocks",
|
name: "blocks",
|
||||||
label: "Sections",
|
label: "Sections",
|
||||||
ui: {
|
ui: {
|
||||||
visualSelector: true,
|
visualSelector: true
|
||||||
},
|
},
|
||||||
templates: [
|
templates: [
|
||||||
heroBlockSchema,
|
heroBlockSchema,
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
featureBlockSchema,
|
featureBlockSchema,
|
||||||
contentBlockSchema,
|
contentBlockSchema,
|
||||||
testimonialBlockSchema,
|
testimonialBlockSchema,
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
carouselBlockSchema
|
carouselBlockSchema
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
],
|
]
|
||||||
},
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
export default config;
|
export default config;
|
||||||
|
|||||||
@@ -2,51 +2,51 @@ import * as React from "react";
|
|||||||
import { wrapFieldsWithMeta } from "tinacms";
|
import { wrapFieldsWithMeta } from "tinacms";
|
||||||
|
|
||||||
export const colorOptions = [
|
export const colorOptions = [
|
||||||
"blue",
|
"blue",
|
||||||
"teal",
|
"teal",
|
||||||
"green",
|
"green",
|
||||||
"yellow",
|
"yellow",
|
||||||
"orange",
|
"orange",
|
||||||
"red",
|
"red",
|
||||||
"pink",
|
"pink",
|
||||||
"purple",
|
"purple",
|
||||||
"white",
|
"white"
|
||||||
];
|
];
|
||||||
|
|
||||||
export const ColorPickerInput = wrapFieldsWithMeta(({ input }) => {
|
export const ColorPickerInput = wrapFieldsWithMeta(({ input }) => {
|
||||||
const inputClasses = {
|
const inputClasses = {
|
||||||
blue: "bg-blue-500 border-blue-600",
|
blue: "bg-blue-500 border-blue-600",
|
||||||
teal: "bg-teal-500 border-teal-600",
|
teal: "bg-teal-500 border-teal-600",
|
||||||
green: "bg-green-500 border-green-600",
|
green: "bg-green-500 border-green-600",
|
||||||
yellow: "bg-yellow-500 border-yellow-600",
|
yellow: "bg-yellow-500 border-yellow-600",
|
||||||
orange: "bg-orange-500 border-orange-600",
|
orange: "bg-orange-500 border-orange-600",
|
||||||
red: "bg-red-500 border-red-600",
|
red: "bg-red-500 border-red-600",
|
||||||
pink: "bg-pink-500 border-pink-600",
|
pink: "bg-pink-500 border-pink-600",
|
||||||
purple: "bg-purple-500 border-purple-600",
|
purple: "bg-purple-500 border-purple-600",
|
||||||
white: "bg-white border-gray-150",
|
white: "bg-white border-gray-150"
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<input type="text" id={input.name} className="hidden" {...input} />
|
<input type="text" id={ input.name } className="hidden" { ...input } />
|
||||||
<div className="flex gap-2 flex-wrap">
|
<div className="flex gap-2 flex-wrap">
|
||||||
{colorOptions.map((color) => {
|
{ colorOptions.map((color) => {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className={`w-9 h-9 rounded-full shadow border ${
|
className={ `w-9 h-9 rounded-full shadow border ${
|
||||||
inputClasses[color]
|
inputClasses[color]
|
||||||
} ${
|
} ${
|
||||||
input.value === color
|
input.value === color
|
||||||
? "ring-[3px] ring-offset-2 ring-blue-400"
|
? "ring-[3px] ring-offset-2 ring-blue-400"
|
||||||
: ""
|
: ""
|
||||||
}`}
|
}` }
|
||||||
onClick={() => {
|
onClick={ () => {
|
||||||
input.onChange(color);
|
input.onChange(color);
|
||||||
}}
|
} }
|
||||||
></button>
|
/>
|
||||||
);
|
);
|
||||||
})}
|
}) }
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -6,129 +6,128 @@ import { Icon, IconOptions } from "../../components/util/icon";
|
|||||||
import { BiChevronRight } from "react-icons/bi";
|
import { BiChevronRight } from "react-icons/bi";
|
||||||
|
|
||||||
const parseIconName = (name: string) => {
|
const parseIconName = (name: string) => {
|
||||||
const splitName = name.split(/(?=[A-Z])/);
|
const splitName = name.split(/(?=[A-Z])/);
|
||||||
if (splitName.length > 1) {
|
if (splitName.length > 1) {
|
||||||
return splitName.slice(1).join(" ");
|
return splitName.slice(1).join(" ");
|
||||||
} else {
|
}
|
||||||
return name;
|
return name;
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const IconPickerInput = wrapFieldsWithMeta(({ input }) => {
|
export const IconPickerInput = wrapFieldsWithMeta(({ input }) => {
|
||||||
const [filter, setFilter] = React.useState("");
|
const [filter, setFilter] = React.useState("");
|
||||||
const filteredBlocks = React.useMemo(() => {
|
const filteredBlocks = React.useMemo(() => {
|
||||||
return Object.keys(IconOptions).filter((name) => {
|
return Object.keys(IconOptions).filter((name) => {
|
||||||
return name.toLowerCase().includes(filter.toLowerCase());
|
return name.toLowerCase().includes(filter.toLowerCase());
|
||||||
});
|
});
|
||||||
}, [filter]);
|
}, [filter]);
|
||||||
|
|
||||||
const inputLabel = Object.keys(IconOptions).includes(input.value)
|
const inputLabel = Object.keys(IconOptions).includes(input.value)
|
||||||
? parseIconName(input.value)
|
? parseIconName(input.value)
|
||||||
: "Select Icon";
|
: "Select Icon";
|
||||||
const InputIcon = IconOptions[input.value] ? IconOptions[input.value] : null;
|
const InputIcon = IconOptions[input.value] ? IconOptions[input.value] : null;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative z-[1000]">
|
<div className="relative z-[1000]">
|
||||||
<input type="text" id={input.name} className="hidden" {...input} />
|
<input type="text" id={ input.name } className="hidden" { ...input } />
|
||||||
<Popover>
|
<Popover>
|
||||||
{({ open }) => (
|
{ ({ open }) => (
|
||||||
<>
|
<>
|
||||||
<Popover.Button as={"span"}>
|
<Popover.Button as={ "span" }>
|
||||||
<Button
|
<Button
|
||||||
className={`text-sm h-11 px-4 ${InputIcon ? "h-11" : "h-10"}`}
|
className={ `text-sm h-11 px-4 ${ InputIcon ? "h-11" : "h-10" }` }
|
||||||
size="custom"
|
size="custom"
|
||||||
rounded="full"
|
rounded="full"
|
||||||
variant={open ? "secondary" : "white"}
|
variant={ open ? "secondary" : "white" }
|
||||||
>
|
>
|
||||||
{InputIcon && (
|
{ InputIcon && (
|
||||||
<InputIcon className="w-7 mr-1 h-auto fill-current text-blue-500" />
|
<InputIcon className="w-7 mr-1 h-auto fill-current text-blue-500" />
|
||||||
)}
|
) }
|
||||||
{inputLabel}
|
{ inputLabel }
|
||||||
{!InputIcon && (
|
{ !InputIcon && (
|
||||||
<BiChevronRight className="w-5 h-auto fill-current opacity-70 ml-1" />
|
<BiChevronRight className="w-5 h-auto fill-current opacity-70 ml-1" />
|
||||||
)}
|
) }
|
||||||
</Button>
|
</Button>
|
||||||
</Popover.Button>
|
</Popover.Button>
|
||||||
<div
|
<div
|
||||||
className="absolute w-full min-w-[192px] max-w-2xl -bottom-2 left-0 translate-y-full"
|
className="absolute w-full min-w-[192px] max-w-2xl -bottom-2 left-0 translate-y-full"
|
||||||
style={{ zIndex: 1000 }}
|
style={ { zIndex: 1000 } }
|
||||||
>
|
>
|
||||||
<Transition
|
<Transition
|
||||||
enter="transition duration-150 ease-out"
|
enter="transition duration-150 ease-out"
|
||||||
enterFrom="transform opacity-0 -translate-y-2"
|
enterFrom="transform opacity-0 -translate-y-2"
|
||||||
enterTo="transform opacity-100 translate-y-0"
|
enterTo="transform opacity-100 translate-y-0"
|
||||||
leave="transition duration-75 ease-in"
|
leave="transition duration-75 ease-in"
|
||||||
leaveFrom="transform opacity-100 translate-y-0"
|
leaveFrom="transform opacity-100 translate-y-0"
|
||||||
leaveTo="transform opacity-0 -translate-y-2"
|
leaveTo="transform opacity-0 -translate-y-2"
|
||||||
>
|
>
|
||||||
<Popover.Panel className="relative overflow-hidden rounded-lg shadow-lg bg-white border border-gray-150 z-50">
|
<Popover.Panel className="relative overflow-hidden rounded-lg shadow-lg bg-white border border-gray-150 z-50">
|
||||||
{({ close }) => (
|
{ ({ close }) => (
|
||||||
<div className="max-h-[24rem] flex flex-col w-full h-full">
|
<div className="max-h-[24rem] flex flex-col w-full h-full">
|
||||||
<div className="bg-gray-50 p-2 border-b border-gray-100 z-10 shadow-sm">
|
<div className="bg-gray-50 p-2 border-b border-gray-100 z-10 shadow-sm">
|
||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
className="bg-white text-sm rounded-sm border border-gray-100 shadow-inner py-1.5 px-2.5 w-full block placeholder-gray-200"
|
className="bg-white text-sm rounded-sm border border-gray-100 shadow-inner py-1.5 px-2.5 w-full block placeholder-gray-200"
|
||||||
onClick={(event: any) => {
|
onClick={ (event: any) => {
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
}}
|
} }
|
||||||
value={filter}
|
value={ filter }
|
||||||
onChange={(event: any) => {
|
onChange={ (event: any) => {
|
||||||
setFilter(event.target.value);
|
setFilter(event.target.value);
|
||||||
}}
|
} }
|
||||||
placeholder="Filter..."
|
placeholder="Filter..."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
{filteredBlocks.length === 0 && (
|
{ filteredBlocks.length === 0 && (
|
||||||
<span className="relative text-center text-xs px-2 py-3 text-gray-300 bg-gray-50 italic">
|
<span className="relative text-center text-xs px-2 py-3 text-gray-300 bg-gray-50 italic">
|
||||||
No matches found
|
No matches found
|
||||||
</span>
|
</span>
|
||||||
)}
|
) }
|
||||||
{filteredBlocks.length > 0 && (
|
{ filteredBlocks.length > 0 && (
|
||||||
<div className="w-full grid grid-cols-6 auto-rows-auto p-2 overflow-y-auto">
|
<div className="w-full grid grid-cols-6 auto-rows-auto p-2 overflow-y-auto">
|
||||||
<button
|
<button
|
||||||
className="relative rounded-lg text-center text-xs py-2 px-3 flex-1 outline-none transition-all ease-out duration-150 hover:text-blue-500 focus:text-blue-500 focus:bg-gray-50 hover:bg-gray-50"
|
className="relative rounded-lg text-center text-xs py-2 px-3 flex-1 outline-none transition-all ease-out duration-150 hover:text-blue-500 focus:text-blue-500 focus:bg-gray-50 hover:bg-gray-50"
|
||||||
key={"clear-input"}
|
key={ "clear-input" }
|
||||||
onClick={() => {
|
onClick={ () => {
|
||||||
input.onChange("");
|
input.onChange("");
|
||||||
setFilter("");
|
setFilter("");
|
||||||
close();
|
close();
|
||||||
}}
|
} }
|
||||||
>
|
>
|
||||||
<GoCircleSlash className="w-6 h-auto text-gray-200" />
|
<GoCircleSlash className="w-6 h-auto text-gray-200" />
|
||||||
</button>
|
</button>
|
||||||
{filteredBlocks.map((name) => {
|
{ filteredBlocks.map((name) => {
|
||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className="relative flex items-center justify-center rounded-lg text-center text-xs py-2 px-3 flex-1 outline-none transition-all ease-out duration-150 hover:text-blue-500 focus:text-blue-500 focus:bg-gray-50 hover:bg-gray-50"
|
className="relative flex items-center justify-center rounded-lg text-center text-xs py-2 px-3 flex-1 outline-none transition-all ease-out duration-150 hover:text-blue-500 focus:text-blue-500 focus:bg-gray-50 hover:bg-gray-50"
|
||||||
key={name}
|
key={ name }
|
||||||
onClick={() => {
|
onClick={ () => {
|
||||||
input.onChange(name);
|
input.onChange(name);
|
||||||
setFilter("");
|
setFilter("");
|
||||||
close();
|
close();
|
||||||
}}
|
} }
|
||||||
>
|
>
|
||||||
<Icon
|
<Icon
|
||||||
data={{
|
data={ {
|
||||||
name: name,
|
name: name,
|
||||||
size: "custom",
|
size: "custom",
|
||||||
color: "blue",
|
color: "blue"
|
||||||
}}
|
} }
|
||||||
className="w-7 h-auto"
|
className="w-7 h-auto"
|
||||||
/>
|
/>
|
||||||
</button>
|
</button>
|
||||||
);
|
);
|
||||||
})}
|
}) }
|
||||||
|
</div>
|
||||||
|
) }
|
||||||
|
</div>
|
||||||
|
) }
|
||||||
|
</Popover.Panel>
|
||||||
|
</Transition>
|
||||||
</div>
|
</div>
|
||||||
)}
|
</>
|
||||||
</div>
|
) }
|
||||||
)}
|
</Popover>
|
||||||
</Popover.Panel>
|
</div>
|
||||||
</Transition>
|
);
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</Popover>
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user