Skip to content
Snippets Groups Projects
Commit d93cb2c1 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

hp datensatz

parent c9602c13
No related branches found
No related tags found
No related merge requests found
Pipeline #418346 failed
import { TabButtonRow } from "./Buttons"; import { TabButtonRow } from "./Buttons";
import TimeHori from "./HorizontalTimeline"; import TimeHori from "./HorizontalTimeline";
import { BFHStyleTabs, ButtonRowTabs } from "./Tabs"; import { BFHStyleTabs, ButtonRowTabs } from "./Tabs";
import { timelinepersontabs } from "./data/timelinepersontabs"; import { timelinedata } from "./data/hptimelinedata";
export function HPTimeline(){ export function HPTimeline(){
return( return(
<section id="Timeline" className="section"> <section id="Timeline" className="section">
...@@ -11,7 +10,7 @@ export function HPTimeline(){ ...@@ -11,7 +10,7 @@ export function HPTimeline(){
</div> </div>
<TabButtonRow data={timelinebuttonrowdata} classy="" opentype="timelinecardtabs" closing="timelinepersontabs" /> <TabButtonRow data={timelinebuttonrowdata} classy="" opentype="timelinecardtabs" closing="timelinepersontabs" />
<ButtonRowTabs cla="timelinecardtabs" data={timelinebuttonrowdata}/> <ButtonRowTabs cla="timelinecardtabs" data={timelinebuttonrowdata}/>
<BFHStyleTabs cla="timelinepersontabs" data={timelinepersontabs}></BFHStyleTabs> <BFHStyleTabs cla="timelinepersontabs" data={timelinedata}></BFHStyleTabs>
</section> </section>
) )
} }
......
...@@ -11,23 +11,143 @@ export function ButtonRowTabs({data, cla}: {data: Array<TabDatensatz>, cla: stri ...@@ -11,23 +11,143 @@ export function ButtonRowTabs({data, cla}: {data: Array<TabDatensatz>, cla: stri
return rows; return rows;
} }
export function BFHStyleTabs({data, cla}: {data: Array<NodeDatensatz>, cla: string}) { import { BlockQuoteB } from "./Quotes";
import { TimelineDatenpunkt } from "./data/hptimelinedata";
export function BFHStyleTabs({data, cla}: {data: Array<TimelineDatenpunkt>, cla: string}) {
let rows = [] let rows = []
for ( let i = 0; i < data.length; i++ ){ for ( let i = 0; i < data.length; i++ ){
if (data[i].cssname === "timeline"){ var problem: Boolean = false;
var problem_desc: Array<string> = [];
/* Language */
var lang;
if(data[i].language === "en"){
lang = "Original language: English"
}
else if(data[i].language === "de"){
lang = "Original language: German"
}
else if(data[i].type != "meta"){
problem = true;
problem_desc.push("interview language");
}
/* Quotation */
var quoted: string = "";
if(data[i].quote != ""){
if(data[i].quoteNachname && data[i].quoteVorname){
quoted = data[i].quoteVorname + " " + data[i].quoteNachname;
}
else{
quoted = data[i].vorname + " " + data[i].nachnname;
}
}
else{
problem = true;
problem_desc.push("quote missing");
}
/* textparts */
if(data[i].aimofcontact === ""){
problem = true;
problem_desc.push(" aim of contact missing");
}
if(data[i].insights === ""){
problem = true;
problem_desc.push(" insights missing");
}
if(data[i].implementation === ""){
problem = true;
problem_desc.push(" implementation missing");
}
/* Clarification */
var clari: React.ReactNode = <></>
if(data[i].clarification){
clari = <>
<h4>Clarification</h4>
<p>{data[i].clarification}</p>
</>
}
/* Other warnings */
if(data[i].interviewtabid === ""){
problem = true;
problem_desc.push(" interviewtabid missing");
}
/* if(data[i].cardtext === ""){
problem = true;
problem_desc.push(" cardtext missing");
} */
if(data[i].type !== "meta"){
if(data[i].affiliation === undefined || data[i].affiliation === ""){
problem = true;
problem_desc.push(" affiliation missing");
}
if(data[i].job === undefined || data[i].job === ""){
problem = true;
problem_desc.push(" job missing" );
}
}
if(data[i].type === "meta"){
if(data[i].quoteVorname === undefined || data[i].quoteVorname === ""){
problem = true;
problem_desc.push(" who is the quote from?" );
}
}
let node = <>
<br/>
<h3>{data[i].vorname} {data[i].nachnname}</h3>
<hr/>
<div className="row">
<div className="col-6">
<div className={"t-tag " + data[i].tag}>
{data[i].job}
</div>
</div>
<div className="col-3">{lang}</div>
</div>
<div className="row">
<div className="col">
<BlockQuoteB text={data[i].quote} cite={quoted}></BlockQuoteB>
</div>
<div className="col-3">
<img className="middle sechpro" src={data[i].pictureurl}/>
</div>
</div>
<h4>Aim of contact</h4>
<p>{data[i].aimofcontact}</p>
<h4>Insights</h4>
<p>{data[i].insights}</p>
{clari}
<h4>Implementation</h4>
<p>{data[i].implementation}</p>
</>
if(problem){
rows.push( rows.push(
<div id={data[i].cssname} className={cla} style={{display: "block"}}> <div id={data[i].interviewtabid} className={cla} style={{ backgroundColor: "black", color: "white"}}>
{data[i].node} <h1>PROBLEM with {data[i].vorname} {data[i].nachnname}</h1>
<p> because of: </p>
{problem_desc}
</div> </div>
) )
} }
else{ else{
rows.push( if (data[i].interviewtabid === "timeline"){
<div id={data[i].cssname} className={cla}> rows.push(
{data[i].node} <div id={data[i].interviewtabid} className={cla} style={{display: "block"}}>
</div> {node}
) </div>
)
}
else{
rows.push(
<div id={data[i].interviewtabid} className={cla}>
{node}
</div>
)
}
} }
} }
return rows; return rows;
} }
\ No newline at end of file
interface TimelineDatenpunkt { export interface TimelineDatenpunkt {
title?: string; title?: string;
vorname: string; vorname: string;
nachnname: string; nachnname: string;
...@@ -40,24 +40,25 @@ const pics: { [key: string]: string } = { ...@@ -40,24 +40,25 @@ const pics: { [key: string]: string } = {
}; };
/* { /* {
vorname: "Vorlage", vorname: "",
nachnname: "Vorlage", nachnname: "",
pictureurl: pics['placeholder'], pictureurl: pics['placeholder'],
tag: "Other", tag: "",
heading: "Vorlage", heading: "",
interviewtabid: "Vorlage", interviewtabid: "",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage", insights: "",
aimofcontact: "Vorlage", implementation: "",
clarification: "Vorlage",
insights: "Vorlage",
implementation: "Vorlage",
} */ } */
/* WICHTIG!
Fehlende Infos einfach leer lassen und keine Dummy-Texte einfügen!
*/
export const timelinedata: Array<TimelineDatenpunkt> = [ export const timelinedata: Array<TimelineDatenpunkt> = [
{ {
vorname: "Building the team", vorname: "Building the team",
...@@ -66,14 +67,11 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -66,14 +67,11 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Other", tag: "Other",
heading: "Development of a multidisciplinary team structure", heading: "Development of a multidisciplinary team structure",
interviewtabid: "recruiting", interviewtabid: "recruiting",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage", insights: "",
aimofcontact: "Vorlage", implementation: "",
clarification: "Vorlage",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
...@@ -83,14 +81,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -83,14 +81,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Other", tag: "Other",
heading: "Getting Acquainted with Cystic Fibrosis", heading: "Getting Acquainted with Cystic Fibrosis",
interviewtabid: "firstpresi", interviewtabid: "firstpresi",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
...@@ -100,14 +96,11 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -100,14 +96,11 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Other", tag: "Other",
heading: "Brainstorming and selection of ideas and concepts", heading: "Brainstorming and selection of ideas and concepts",
interviewtabid: "ideas", interviewtabid: "ideas",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage", insights: "",
aimofcontact: "Vorlage", implementation: "",
clarification: "Vorlage",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
...@@ -117,17 +110,14 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -117,17 +110,14 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
job: "Research Group Cellular and Molecular Biotechnology", job: "Research Group Cellular and Molecular Biotechnology",
pictureurl: pics['kristian'], pictureurl: pics['kristian'],
tag: "Academia", tag: "Academia",
heading: "Vorlage", heading: "",
interviewtabid: "kristian", interviewtabid: "kristian",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage", insights: "",
aimofcontact: "Vorlage", implementation: "",
clarification: "Vorlage",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Max", vorname: "Max",
...@@ -137,18 +127,16 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -137,18 +127,16 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Patient", tag: "Patient",
heading: "Gathering valuable insights from the patient’s perspective", heading: "Gathering valuable insights from the patient’s perspective",
interviewtabid: "maxfirst", interviewtabid: "maxfirst",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "xx", title: "XXX",
vorname: "Christoph", vorname: "Christoph",
nachnname: "Weber", nachnname: "Weber",
job: "", job: "",
...@@ -156,15 +144,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -156,15 +144,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Feedback Session with Expert", heading: "Feedback Session with Expert",
interviewtabid: "weber", interviewtabid: "weber",
cardtext: "Vorlage", cardtext: "",
language: "en", language: "en",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Exploring new ideas", vorname: "Exploring new ideas",
...@@ -174,14 +160,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -174,14 +160,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
affiliation: "", affiliation: "",
heading: "Further brainstorming on approaches", heading: "Further brainstorming on approaches",
interviewtabid: "brainstorming", interviewtabid: "brainstorming",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
...@@ -194,15 +178,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -194,15 +178,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Industry", tag: "Industry",
heading: "Determining the optimal cell media for experimentation", heading: "Determining the optimal cell media for experimentation",
interviewtabid: "michaela", interviewtabid: "michaela",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Looking for expertise", vorname: "Looking for expertise",
...@@ -211,14 +193,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -211,14 +193,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Other", tag: "Other",
heading: "Identifying key experts in cystic fibrosis and prime editing", heading: "Identifying key experts in cystic fibrosis and prime editing",
interviewtabid: "experts", interviewtabid: "experts",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
...@@ -228,34 +208,30 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -228,34 +208,30 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Other", tag: "Other",
heading: "Tracking progress in expert search and idea development", heading: "Tracking progress in expert search and idea development",
interviewtabid: "progress", interviewtabid: "progress",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
type: "meta" type: "meta"
}, },
{ {
vorname: "Katrin", vorname: "Katrin",
nachnname: "Westhoff", nachnname: "Westhoff",
job: "physiotherapist", job: "Physiotherapist",
affiliation: "", affiliation: "Independent",
pictureurl: pics['westhoff'], pictureurl: pics['westhoff'],
tag: "Medical Professional", tag: "Medical Professional",
heading: "Interview with a specialized physiotherapist regarding breathing therapy for cystic fibrosis patients", heading: "Interview with a specialized physiotherapist regarding breathing therapy for cystic fibrosis patients",
interviewtabid: "westhoffinv", interviewtabid: "westhoffinv",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "The more we know, the more opportunities we have.",
quoteNachname: "Vorlage", aimofcontact: "The objective of the contact was to gain in-depth insights into the treatment and care of children with cystic fibrosis. The therapist's expertise was intended to help develop a better understanding of the challenges and necessary measures in the treatment of this chronic disease. In addition, the aim was to ascertain how the therapy is implemented in everyday life and which specific approaches and methods are particularly effective.",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "The interview yielded valuable insights into the regular implementation of the therapy, the use of aids and the adaptation of exercises to the individual needs of the patients. It was notable that the therapy has improved considerably thanks to better medication and adapted exercises, with a concomitant increase in life expectancy for children affected by cystic fibrosis. Of particular interest was the emphasis on the importance of sport and exercise, which should not only be therapeutically effective, but also increase quality of life. ",
clarification: "Vorlage", implementation: "The following statement by Katrin Westhoff had a particularly profound impact on our project: 'The more we know, the more opportunities we have.' We learned from the interview that the current medication is already helping many patients to a huge extent, but that there is still a significant opportunity for improvement. After all, successful gene therapy would markedly enhance the quality of life for those affected. The findings of this project will be disseminated to the relevant researchers in order to facilitate the rapid improvement of the quality of life of all cystic fibrosis patients, regardless of their mutation. ",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Cristian-Gabriel", vorname: "Cristian-Gabriel",
...@@ -266,15 +242,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -266,15 +242,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Medical Professional", tag: "Medical Professional",
heading: "Discussion with a pediatrician and his former patient about treatment challenges and perspectives", heading: "Discussion with a pediatrician and his former patient about treatment challenges and perspectives",
interviewtabid: "olariu", interviewtabid: "olariu",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Mattijs", vorname: "Mattijs",
...@@ -285,15 +259,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -285,15 +259,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Discussion with a Prime Editing Expert on Similar Approaches for Different Mutations", heading: "Discussion with a Prime Editing Expert on Similar Approaches for Different Mutations",
interviewtabid: "mattijsinv", interviewtabid: "mattijsinv",
cardtext: "Vorlage", cardtext: "",
language: "en", language: "en",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Nicole", vorname: "Nicole",
...@@ -304,15 +276,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -304,15 +276,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Discussion on how health insurance companies manage cystic fibrosis patients and gene therapy treatments", heading: "Discussion on how health insurance companies manage cystic fibrosis patients and gene therapy treatments",
interviewtabid: "nicole", interviewtabid: "nicole",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Katrin", vorname: "Katrin",
...@@ -323,15 +293,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -323,15 +293,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Medical Professional", tag: "Medical Professional",
heading: "In-Depth Visit to Specialized Physiotherapist for CF Breathing Therapy", heading: "In-Depth Visit to Specialized Physiotherapist for CF Breathing Therapy",
interviewtabid: "westhoffvisit", interviewtabid: "westhoffvisit",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Jukia", vorname: "Jukia",
...@@ -342,15 +310,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -342,15 +310,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Patient", tag: "Patient",
heading: "Interview with a CF Parent About Their Experience and Treatment Needs", heading: "Interview with a CF Parent About Their Experience and Treatment Needs",
interviewtabid: "julia", interviewtabid: "julia",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Joshua", vorname: "Joshua",
...@@ -361,15 +327,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -361,15 +327,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Patient", tag: "Patient",
heading: "Interview with a CF Parent and Global Advocate on Worldwide Support and Perspectives", heading: "Interview with a CF Parent and Global Advocate on Worldwide Support and Perspectives",
interviewtabid: "joshua", interviewtabid: "joshua",
cardtext: "Vorlage", cardtext: "",
language: "en", language: "en",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "Prof. Dr.", title: "Prof. Dr.",
...@@ -381,15 +345,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -381,15 +345,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Discussion on Techniques for Measuring CFTR Channel Functionality", heading: "Discussion on Techniques for Measuring CFTR Channel Functionality",
interviewtabid: "patchclamp", interviewtabid: "patchclamp",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "Prof. Dr.", title: "Prof. Dr.",
...@@ -401,15 +363,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -401,15 +363,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Safety Briefing and Laboratory Practices Advice", heading: "Safety Briefing and Laboratory Practices Advice",
interviewtabid: "hammer", interviewtabid: "hammer",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "Dr.", title: "Dr.",
...@@ -421,15 +381,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -421,15 +381,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "First steps in LNPs", heading: "First steps in LNPs",
interviewtabid: "kolonkofirst", interviewtabid: "kolonkofirst",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Svenja", vorname: "Svenja",
...@@ -440,15 +398,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -440,15 +398,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "First steps in LNPs", heading: "First steps in LNPs",
interviewtabid: "svenja", interviewtabid: "svenja",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Max", vorname: "Max",
...@@ -458,15 +414,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -458,15 +414,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Patient", tag: "Patient",
heading: "Consultation on University Hygiene Risks and Improvement for Hygiene Concept", heading: "Consultation on University Hygiene Risks and Improvement for Hygiene Concept",
interviewtabid: "maxhygiene", interviewtabid: "maxhygiene",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "Dr.", title: "Dr.",
...@@ -478,15 +432,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -478,15 +432,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Bioethics: Best Practices for Handling Patient Data and Primary Cells", /* Guidance from Ethics Committee on Best Practices for Patient Data and Primary Cells */ heading: "Bioethics: Best Practices for Handling Patient Data and Primary Cells", /* Guidance from Ethics Committee on Best Practices for Patient Data and Primary Cells */
interviewtabid: "berens", interviewtabid: "berens",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Collaboration", vorname: "Collaboration",
...@@ -497,15 +449,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -497,15 +449,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "LNP Handbook", heading: "LNP Handbook",
interviewtabid: "", interviewtabid: "",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "", vorname: "",
...@@ -516,15 +466,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -516,15 +466,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Industry", tag: "Industry",
heading: "Rnhale", heading: "Rnhale",
interviewtabid: "", interviewtabid: "",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "XXX", title: "XXX",
...@@ -536,14 +484,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -536,14 +484,12 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "", heading: "",
interviewtabid: "", interviewtabid: "",
cardtext: "Vorlage", cardtext: "",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "", vorname: "",
...@@ -554,15 +500,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -554,15 +500,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "Corden", heading: "Corden",
interviewtabid: "", interviewtabid: "",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
vorname: "Mattijs", vorname: "Mattijs",
...@@ -573,15 +517,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -573,15 +517,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "", heading: "",
interviewtabid: "mattijsvisit", interviewtabid: "mattijsvisit",
cardtext: "Vorlage", cardtext: "",
language: "en", language: "en",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
{ {
title: "Dr.", title: "Dr.",
...@@ -593,15 +535,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [ ...@@ -593,15 +535,13 @@ export const timelinedata: Array<TimelineDatenpunkt> = [
tag: "Academia", tag: "Academia",
heading: "", heading: "",
interviewtabid: "patchclamp", interviewtabid: "patchclamp",
cardtext: "Vorlage", cardtext: "",
language: "de", language: "de",
quote: "Vorlage", quote: "",
quoteNachname: "Vorlage", aimofcontact: "",
quoteVorname: "Vorlage",
aimofcontact: "Vorlage", insights: "",
clarification: "Vorlage", implementation: "",
insights: "Vorlage",
implementation: "Vorlage",
}, },
] ]
import { BlockQuoteB } from "../Quotes" import { BlockQuoteB } from "../Quotes"
export const timelinepersontabs = [ export const timelinepersontabs = [
{ {
node: <> node: <>
...@@ -399,13 +401,13 @@ export const timelinepersontabs = [ ...@@ -399,13 +401,13 @@ export const timelinepersontabs = [
<h3>Joshua Bauder</h3> <h3>Joshua Bauder</h3>
<hr/> <hr/>
<div className="row"> <div className="row">
<div className="col-1"> <div className="col-1">
<div className="t-tag Patient"> <div className="t-tag Patient">
Parent Parent
</div> </div>
</div> </div>
<div className="col-3">Original language: English</div> <div className="col-3">Original language: English</div>
<div className="col"><button>Go to interview</button></div> <div className="col"><button>Go to interview</button></div>
</div> </div>
<div className="row"> <div className="row">
<div className="col"> <div className="col">
...@@ -450,13 +452,12 @@ export const timelinepersontabs = [ ...@@ -450,13 +452,12 @@ export const timelinepersontabs = [
</div> </div>
</div> </div>
<h4>Aim of contact</h4> <h4>Aim of contact</h4>
<p>The objective of the contact was to gain in-depth insights into the treatment and care of children with cystic fibrosis. The therapist's expertise was intended to help develop a better understanding of the challenges and necessary measures in the treatment of this chronic disease. In addition, the aim was to ascertain how the therapy is implemented in everyday life and which specific approaches and methods are particularly effective. </p>
<h4>Insights</h4> <h4>Insights</h4>
<p>The interview yielded valuable insights into the regular implementation of the therapy, the use of aids and the adaptation of exercises to the individual needs of the patients. It was notable that the therapy has improved considerably thanks to better medication and adapted exercises, with a concomitant increase in life expectancy for children affected by cystic fibrosis. Of particular interest was the emphasis on the importance of sport and exercise, which should not only be therapeutically effective, but also increase quality of life. </p> <p></p>
{/* <h4>Clarification</h4> {/* <h4>Clarification</h4>
<p></p> */} <p></p> */}
<h4>Implementation</h4> <h4>Implementation</h4>
<p>The following statement by Katrin Westhoff had a particularly profound impact on our project: "The more we know, the more opportunities we have." We learned from the interview that the current medication is already helping many patients to a huge extent, but that there is still a significant opportunity for improvement. After all, successful gene therapy would markedly enhance the quality of life for those affected. The findings of this project will be disseminated to the relevant researchers in order to facilitate the rapid improvement of the quality of life of all cystic fibrosis patients, regardless of their mutation. </p> <p></p>
<button>Jump to visit</button> <button>Jump to visit</button>
</>, </>,
cssname: "InvWesthoff" cssname: "InvWesthoff"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment