Skip to content

Commit

Permalink
Merge pull request #767 from CodeForAfrica/bugfix/roboshield-payload-…
Browse files Browse the repository at this point in the history
…configurations

@/Roboshield Payload configurations. #760
  • Loading branch information
koechkevin committed Jul 12, 2024
2 parents e1797d7 + 6bfbd04 commit 288371c
Show file tree
Hide file tree
Showing 26 changed files with 101 additions and 21 deletions.
3 changes: 3 additions & 0 deletions apps/roboshield/.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ SENTRY_PROJECT=roboshield

NEXT_PUBLIC_IMAGE_DOMAINS="*.codeforafrica.org"
NEXT_PUBLIC_IMAGE_UNOPTIMIZED="true"

NEXT_PUBLIC_APP_URL=http://localhost:3000
PAYLOAD_PUBLIC_APP_URL=$NEXT_PUBLIC_APP_URL
4 changes: 2 additions & 2 deletions apps/roboshield/payload-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ export interface Page {
blockType: "mediaBlock";
}
| {
externalEmbeddFields?: {
externalEmbedFields?: {
embedType?: ("url" | "code") | null;
url?: string | null;
caption?: string | null;
code?: string | null;
};
id?: string | null;
blockName?: string | null;
blockType: "externalEmbedd";
blockType: "externalEmbed";
}
)[]
| null;
Expand Down
4 changes: 1 addition & 3 deletions apps/roboshield/payload.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import path from "path";

import { buildConfig } from "payload/config";
import { slateEditor } from "@payloadcms/richtext-slate";
import { mongooseAdapter } from "@payloadcms/db-mongodb";
Expand Down Expand Up @@ -99,7 +97,7 @@ export default buildConfig({
},
}),
seo({
collections: ["pages", "posts"],
collections: ["pages"],
globals: [],
uploadsCollection: "media",
generateTitle: ({ doc }: any) => doc?.title?.value as string,
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions apps/roboshield/src/components/Content/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ type ContentProps = ExtractBlockType<
"content"
>;

export type ExternalEmbeddBlock = ExtractNestedBlockType<
export type ExternalEmbedBlock = ExtractNestedBlockType<
NonNullable<ContentProps["content"]>[number],
"externalEmbedd"
"externalEmbed"
>;

export type RichTextBlock = ExtractNestedBlockType<
Expand All @@ -32,14 +32,14 @@ export type MediaBlock = ExtractNestedBlockType<
type ComponentMap = {
richtext: React.FC<RichTextBlock>;
mediaBlock: React.FC<MediaBlock>;
externalEmbedd: React.FC<ExternalEmbeddBlock>;
externalEmbed: React.FC<ExternalEmbedBlock>;
};

export default function Content({ content }: ContentProps) {
const COMPONENT_BY_CONTENT_TYPE: ComponentMap = {
richtext: LongFormRichText,
mediaBlock: LongFormMedia,
externalEmbedd: LongFormExternalEmbed,
externalEmbed: LongFormExternalEmbed,
};

return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { RichTypography } from "@commons-ui/core";
import { Box } from "@mui/material";
import React from "react";
import { ExternalEmbeddBlock } from "@/roboshield/components/Content/Content";
import { ExternalEmbedBlock } from "@/roboshield/components/Content/Content";

export default function LongFormExternalEmbed(props: ExternalEmbeddBlock) {
const { externalEmbeddFields: { code = "", caption = "", url = "" } = {} } =
export default function LongFormExternalEmbed(props: ExternalEmbedBlock) {
const { externalEmbedFields: { code = "", caption = "", url = "" } = {} } =
props;

return (
Expand Down
28 changes: 28 additions & 0 deletions apps/roboshield/src/pages/api/draft.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { NextApiRequest, NextApiResponse } from "next";

type User = object;

interface CustomNextApiRequest extends NextApiRequest {
user: User;
query: {
slug: string;
[key: string]: string | string[];
};
}

export default async function handler(
req: CustomNextApiRequest,
res: NextApiResponse,
) {
if (!req.user) {
return res.status(401).json({ message: "UNAUTHORIZED_USER" });
}
const { slug = "/" } = req.query;
res.setDraftMode({ enable: true });
const appUrl = new URL(process.env.NEXT_PUBLIC_APP_URL ?? "");
const requestedUrl = new URL(slug, appUrl);
if (requestedUrl.origin !== appUrl.origin) {
return res.status(401).json({ message: "UNAUTHORIZED_REDIRECT" });
}
return res.redirect(requestedUrl.pathname);
}
6 changes: 4 additions & 2 deletions apps/roboshield/src/payload/blocks/Content.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
import { Block } from "payload/types";
import { RichText } from "./RichText";
import { MediaBlock } from "./MediaBlock";
import { ExternalEmbedd } from "./ExternalEmbedd";
import { ExternalEmbed } from "./ExternalEmbed";

export const Content: Block = {
slug: "content",
labels: {
singular: "Content",
plural: "Content",
},
imageURL: "/images/cms/blocks/blog.png",
imageAltText: "Used in About page. Allows addition of blog like content",
fields: [
{
type: "blocks",
name: "content",
blocks: [RichText, MediaBlock, ExternalEmbedd],
blocks: [RichText, MediaBlock, ExternalEmbed],
},
],
};
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Block } from "payload/types";

export const ExternalEmbedd: Block = {
slug: "externalEmbedd",
export const ExternalEmbed: Block = {
slug: "externalEmbed",
labels: {
singular: "External Embedd",
plural: "External Embedd",
singular: "External Embed",
plural: "External Embed",
},
fields: [
{
name: "externalEmbeddFields",
name: "externalEmbedFields",
type: "group",
fields: [
{
Expand Down
2 changes: 2 additions & 0 deletions apps/roboshield/src/payload/blocks/PageHeader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ export const PageHeader: Block = {
singular: "Page Header",
plural: "Page Header",
},
imageURL: "/images/cms/blocks/pageHeader.png",
imageAltText: "Used in About page.",
fields: [
{
name: "title",
Expand Down
2 changes: 2 additions & 0 deletions apps/roboshield/src/payload/blocks/PageHero.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { RowLabelArgs } from "payload/dist/admin/components/forms/RowLabel/types

export const PageHero: Block = {
slug: "page-hero",
imageURL: "/images/cms/blocks/hero.png",
imageAltText: "Used in homepage",
labels: {
singular: "Page Hero",
plural: "Page Hero",
Expand Down
19 changes: 17 additions & 2 deletions apps/roboshield/src/payload/blocks/RobotsTxtGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ const validateSteps: Validate = (value = [], args) => {
const ExistingRobots: Block = {
slug: "existing-robots-txt",
labels: { singular: "Existing Robots Txt", plural: "Existing Robots Txt" },
imageURL: "/images/cms/blocks/existingRobots.png",
imageAltText: "Fetch existing robots.txt",
fields: [
{
name: "title",
Expand Down Expand Up @@ -87,6 +89,8 @@ const ExistingRobots: Block = {
const Delays: Block = {
slug: "delays",
labels: { singular: "Delays", plural: "Delays" },
imageURL: "/images/cms/blocks/delays.png",
imageAltText: "Set bot delays for the robots you want to generate.",
fields: [
{
name: "title",
Expand Down Expand Up @@ -170,6 +174,9 @@ const Delays: Block = {
const Paths: Block = {
slug: "paths",
labels: { singular: "Paths", plural: "Paths" },
imageURL: "/images/cms/blocks/paths.png",
imageAltText:
"Set disallowed and allowed paths for the robots you want to generate.",
fields: [
{
name: "title",
Expand Down Expand Up @@ -254,6 +261,8 @@ const Paths: Block = {
const BlockBots: Block = {
slug: "block-bots",
labels: { singular: "Block Bots", plural: "Block Bots" },
imageURL: "/images/cms/blocks/blockBots.png",
imageAltText: "Select bots you want to block from crawling your website.",
fields: [
{
name: "title",
Expand Down Expand Up @@ -318,6 +327,8 @@ const BlockBots: Block = {
const SiteMaps: Block = {
slug: "site-maps",
labels: { singular: "Site Maps", plural: "Site Maps" },
imageURL: "/images/cms/blocks/siteMaps.png",
imageAltText: "Add sitemap URLs to your robots.txt file.",
fields: [
{
name: "title",
Expand Down Expand Up @@ -347,6 +358,8 @@ const SiteMaps: Block = {
const Finish: Block = {
slug: "finish",
labels: { singular: "Finish", plural: "Finish" },
imageURL: "/images/cms/blocks/finish.png",
imageAltText: "Completes robots generation process",
fields: [
{
name: "title",
Expand Down Expand Up @@ -376,7 +389,7 @@ const Finish: Block = {
],
};

const Labels: Field = {
const Actions: Field = {
name: "actions",
label: "Actions",
type: "group",
Expand Down Expand Up @@ -422,6 +435,8 @@ const Labels: Field = {
const RobotsTxtGenerator: Block = {
slug: "robots-txt-generator",
labels: { singular: "robots.txt Generator", plural: "robots.txt Generator" },
imageURL: "/images/cms/blocks/robotsGenerator.png",
imageAltText: "Set action labels and content for robots.txt generator.",
fields: [
{
type: "blocks",
Expand All @@ -432,7 +447,7 @@ const RobotsTxtGenerator: Block = {
},
validate: validateSteps,
},
Labels,
Actions,
],
};

Expand Down
2 changes: 2 additions & 0 deletions apps/roboshield/src/payload/blocks/Statistics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ export const Statistics: Block = {
singular: "Statistics",
plural: "Statistics",
},
imageURL: "/images/cms/blocks/statistics.png",
imageAltText: "Used in About page.",
fields: [
{
name: "title",
Expand Down
3 changes: 3 additions & 0 deletions apps/roboshield/src/payload/collections/Pages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { PageHeader } from "../blocks/PageHeader";
import { PageHero } from "../blocks/PageHero";
import { Content } from "../blocks/Content";
import { Statistics } from "../blocks/Statistics";
import formatDraftUrl from "../utils/formatDraftUrl";

const Pages: CollectionConfig = {
slug: "pages",
Expand All @@ -15,8 +16,10 @@ const Pages: CollectionConfig = {
update: () => true,
},
admin: {
defaultColumns: ["fullTitle", "slug", "updatedAt"],
group: "Publication",
useAsTitle: "title",
preview: (doc) => formatDraftUrl("pages", doc),
},
fields: [
{
Expand Down
8 changes: 8 additions & 0 deletions apps/roboshield/src/payload/globals/Site/InitiativeTab.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Tab } from "payload/types";
import image from "../../fields/image";
import link from "../../fields/links/link";
import richText from "../../fields/richText";
import { RowLabelArgs } from "payload/dist/admin/components/forms/RowLabel/types";

const PartnersTab: Tab = {
label: "Initiative",
Expand Down Expand Up @@ -42,6 +43,13 @@ const PartnersTab: Tab = {
disableOpenInNewTab: true,
}),
],
admin: {
components: {
RowLabel: ({ data, index = 0 }: RowLabelArgs) => {
return data?.name || `Partner ${index + 1}`;
},
},
},
},
],
},
Expand Down
17 changes: 17 additions & 0 deletions apps/roboshield/src/payload/utils/formatDraftUrl.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import formatPagePath from "./formatPagePath";
import { Document } from "payload/types";

const payloadUrl =
process.env.PAYLOAD_PUBLIC_APP_URL || process.env.NEXT_PUBLIC_APP_URL;

function formatDraftUrl(collection: string, doc: Document) {
const pagePath = formatPagePath(collection, doc);
if (pagePath) {
const slug = pagePath;
const url = new URL(`/api/draft?slug=${slug}`, payloadUrl);
return url.href;
}
return null;
}

export default formatDraftUrl;

0 comments on commit 288371c

Please sign in to comment.