{message}
\nISIBUTE
\n \n { setNavExpanded(!navExpanded) }}>☰\n \n\n Thanks for your interest in using Isibute.\n
\n\n Please request support in building your team by submitting your information below.\n
\nNevermind
\nThanks for your request. We’ll be in touch with you about that about building your team.
\nGo Back Home
\n\n Thanks for your interest in using Isibute.\n
\n\n Please request support in building your career by submitting your information below.\n
\nNevermind
\nThanks for your request. We’ll be in touch with you about building your career.
\nGo Back Home
\nForgot Your Password?
\n\n \nBack To Login
\nUpdate
\n{primaryEmail}
\nThe email address associated with your Isibute account.
\nUpdate
\n***...
\nYour password for your Isibute account. For security, do not reuse on other websites.
\nClose Permanently
\nOnce you close your Isibute account, it cannot be reopened.
\n\n You've seen all available articles\n
\n }\n scrollableTarget=\"html\"\n >\n{`${location.municipality}, ${location.state} ${location.country}`}
;\n });\n };\n\n const categoriesFromBiopharmaGroup = (biopharmaGroup) => {\n return biopharmaGroup.categories.map((category) => {\n return{category.name}
;\n });\n };\n\n return (\nName | \nWebsite | \nState | \nCreated At | \n|||
---|---|---|---|---|---|---|
{request.firstName} {request.lastName} | \n{request.email} | \n{request.linkedinProfileUrl} | \n{request.personalBlogOrWebsiteUrl} | \n{request.aasmState} | \n{request.createdAt} | \n\n \n | \n
No unresolved career builder requests.
\n );\n};\n\nexport default CareerBuilderRequestsTable;\n","import { HTTPRequestMethods } from \"../../Shared/httpRequestMethods\";\n\nexport const getCareerBuilderRequests = ({ onResponse, onError }) => {\n fetch(\n `/api/career_builder_requests`,\n {\n method: HTTPRequestMethods.GET,\n headers: {\n 'Content-Type': 'application/json',\n },\n }\n )\n .then(response => {\n return response.json().then((data) => {\n onResponse(data);\n });\n })\n .catch((error) => {\n onError({\n feedbackMessage: error.message,\n feedbackVariant: \"error\",\n });\n });\n};\n\nexport const resolveCareerBuilderRequest = ({ userInvitationRequest, onResponse, onError, body }) => {\n fetch(\n `/api/user_invitation_requests/${userInvitationRequest.id}/approve`,\n {\n method: HTTPRequestMethods.PATCH,\n headers: {\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(body),\n },\n )\n .then(response => {\n return response.json().then((data) => {\n onResponse(data);\n });\n })\n .catch((error) => {\n onError({\n feedbackMessage: error.message,\n feedbackVariant: \"error\",\n });\n });\n};\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"resolveCareerBuilderRequestBtn\":\"CareerBuilderRequestsTable-module__resolveCareerBuilderRequestBtn___V90MH\",\"noContentMessage\":\"CareerBuilderRequestsTable-module__noContentMessage___2-Zx8\",\"tableTitle\":\"CareerBuilderRequestsTable-module__tableTitle___eXGS_\",\"table\":\"CareerBuilderRequestsTable-module__table___2e_MA\",\"th\":\"CareerBuilderRequestsTable-module__th___3OIjZ\",\"tr\":\"CareerBuilderRequestsTable-module__tr___2o-Th\",\"td\":\"CareerBuilderRequestsTable-module__td___2zJ49\"};","// extracted by mini-css-extract-plugin\nmodule.exports = {\"careerBuilderRequestsSection\":\"CareerBuilderRequests-module__careerBuilderRequestsSection___3DDTF\"};","import React, { useState, useEffect } from 'react';\n\nimport { getDocument } from '../../DiscourseIndex/components/restApi';\nimport {\n setCursorPositionInDOM,\n} from './RichTextEditerHelpers';\n\nimport DiscourseLoading from './DiscourseLoading';\nimport DiscoursePublishingWorkflowControls from './DiscoursePublishingWorkflowControls';\nimport DiscoursePublishingInfoSection from './DiscoursePublishingInfoSection';\nimport DiscourseFormattingControls from './DiscourseFormattingControls';\nimport DiscourseMainSection from './DiscourseMainSection';\nimport DiscourseDebugger from './DiscourseDebugger';\nimport Feedback from '../../Feedback/components/Feedback';\n\nimport DocumentManager from './DocumentManager';\n\nimport styles from './Discourse.module.scss';\n\nconst Discourse = ({\n authenticatedUser,\n documentManagerId,\n id,\n openWithContentEditable\n}) => {\n const [state, setState] = useState({\n documentManager: new DocumentManager({ id: documentManagerId }),\n loading: !!id,\n feedbackMessage: null,\n feedbackVariant: null,\n });\n const [contentEditable, setContentEditable] = useState(openWithContentEditable);\n\n const clearFeedback = () => {\n setState((prevState) => {\n const nextState = {\n ...prevState,\n feedbackMessage: null,\n feedbackVariant: null,\n };\n\n return nextState;\n });\n };\n\n const onResponse = (response) => {\n setState(prevState => {\n const nextState = { ...prevState, loading: response.loading };\n nextState.documentManager.addDocumentToHistoryFromData(response);\n\n return nextState;\n });\n };\n\n const onError = feedback => setState(prevState => ({ ...prevState, ...feedback }));\n\n useEffect(() => {\n if (id) {\n getDocument({\n documentId: id,\n onResponse,\n onError,\n });\n }\n }, []);\n\n useEffect(() => {\n setCursorPositionInDOM({\n editableContentId: styles.mainSection,\n isibuteDocument: state.documentManager.getCurrentDocument(),\n });\n }, [state.documentManager.historyIndex]);\n\n if (state.loading) {\n return\n Published by {authorName} on {localizedPublishedAt}\n
\n{parse(documentComponent, documentComponent.id)}
;\n case 'DocumentSectionTitle':\n if (documentComponent.size == 2) {\n return{documentComponent?.caption}
\n{parse(documentComponent, documentComponent.id)}
;\n case 'DocumentEmphasis':\n return{parse(documentComponent, documentComponent.id)}
;\n case 'DocumentCitationsSection':\n const citations = Object.values(documentComponent.documentCitations)\n .sort((thisComponent, thatComponent) => {\n return thisComponent.ordinal - thatComponent.ordinal;\n })\n ?.map((citation) => {\n const fullCitationId = `${documentComponent.id}-${citation.id}`;\n return