{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js", "ssg:https://framerusercontent.com/modules/Svc8XoVZjzmGASItO8jX/G86a0wcf1rH7TVK6UyoS/r8gYzE_Ut.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */ export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==PlayOptions.Normal;const showThumbnail=onCanvas||thumbnail!==ThumbnailOptions.Off&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/ _jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/ _jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?ThumbnailFormat.WebP:ThumbnailFormat.JPG);// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(isAutoplay||showThumbnail){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===PlayOptions.Loop){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/ _jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},children:[isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/ _jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/ _jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),showVideo?/*#__PURE__*/ _jsx(\"iframe\",{style:videoStyle,src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp}):/*#__PURE__*/ _jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===PlayOptions.Normal;}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==PlayOptions.Normal;}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:PlayOptions.Normal,shouldMute:true,thumbnail:ThumbnailOptions.Medium,isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL1=getEmbedURL(videoId);return[videoId,embedURL1];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId1=pathSegments[1];return[videoId1,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId2=url.pathname.slice(1);const embedURL2=getEmbedURL(videoId2);return[videoId2,embedURL2];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=ThumbnailFormat.JPG){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=ThumbnailFormat.WebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=ThumbnailFormat.WebP?\"webp\":\"jpg\";switch(res){case ThumbnailOptions.Low:return`${pre}${videoId}/hqdefault.${ext}`;case ThumbnailOptions.Medium:return`${pre}${videoId}/sddefault.${ext}`;case ThumbnailOptions.High:return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(!!(element.getContext&&element.getContext(\"2d\"))){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")==0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/ _jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/ _jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/ _jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/ _jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/ _jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{addPropertyControls as a,ComponentPresetsConsumer as n,ControlType as r,Link as i}from\"framer\";import{motion as s}from\"framer-motion\";import*as l from\"react\";import{Youtube as c}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";let d=\"PqsEubzop\",o=\"KOTUBNUvn\",h=\"rRGN_AAF1\",p=\"wFCs_qBQF\",g=\"oTi2E1q5q\",m=\"ARoMpKl0j\",u=\"KM9wvxts6\",f=\"qQFb9br73\",b=\"w8JznYlUa\",w=\"Wr7IrG34w\",v=\"UJx7NcneU\",_=\"ElaOj29pC\",y=\"lV4AIZ7qm\",E=\"QD75n8eiL\",A=\"jgBSxfXB1\",k=\"nGFZqWypQ\",I=\"CrXpa9Cp9\",F=\"xsF7a_hrD\",S=\"HUB3yhEjs\",O=\"LJRvrCLe7\",N=\"Ed1AAFJj3\",R=\"XhyyKDeKs\",q=\"Uz8fIphkY\",D=\"pW12Jkloi\",P=\"kvze0kcMl\",T=\"Ega2OZHgo\",C=\"XgDQnMgVv\",x=\"bOf0NwdKq\",z=\"mbdmoayME\",L=\"GeLapfkNP\",G=(e,t)=>{if(e&&\"object\"==typeof e)return{...e,alt:t};},B=[{id:\"eqU9kolAV\",[d]:\"Design Case\",[o]:\"Design for enhancing the trust of chronic patients in teleconsultation\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Made by Shuxian Qian (2022)\"}),/*#__PURE__*/t(\"p\",{children:[\"Click the link to learn more about this project: \",/*#__PURE__*/e(i,{href:\"http://resolver.tudelft.nl/uuid:ac79e07d-bd44-46fd-ac7a-c0fd6957e1e8\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"http://resolver.tudelft.nl/uuid:ac79e07d-bd44-46fd-ac7a-c0fd6957e1e8\"})})]})]}),[p]:\"design-for-enhancing-the-trust-of-chronic-patients-in-teleconsultation\",[g]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[m]:\"Design process\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"This project is part of a design call for Consultation Room 2030. During the preparation phase, several group discussions were scheduled to clarify project requirements and generate a project brief. To gain an initial understanding of patient trust, the current healthcare context, and the development of teleconsultation, desk research, literature reviews, and qualitative research were performed. After the problem-thinking phase, a framework for understanding patient trust and a future design vision were generated. In the problem-solving phase, a set of design strategies and guidelines were generated to help future designers build the trust of chronic patients in teleconsultation. The implementation phase was outside the scope of this master project.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ZpskHfYqc4Ek9ivgo4nNoUJIlk.png\",\"data-framer-height\":\"1504\",\"data-framer-width\":\"4616\",height:\"752\",src:\"https://framerusercontent.com/images/ZpskHfYqc4Ek9ivgo4nNoUJIlk.png?scale-down-to=4096\",style:{aspectRatio:\"4616 / 1504\"},width:\"2308\"})]}),[f]:\"Understand\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Four patient archetypes were identified, each with different patterns of mindset and behavioral characteristics. Six design strategies were mapped to meet their different trust-related needs.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,Q7feWVfRNzzRTuQ6sR4gUACqe4E.png\",\"data-framer-height\":\"3096\",\"data-framer-width\":\"3285\",height:\"1548\",src:\"https://framerusercontent.com/images/Q7feWVfRNzzRTuQ6sR4gUACqe4E.png\",style:{aspectRatio:\"3285 / 3096\"},width:\"1642\"})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Other design cases\",[S]:{pathVariables:{wFCs_qBQF:\"roadmap-towards-future-patient-teleconsultation-experience\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-a-hybrid-patient-journey-in-supportive-care\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Roadmap towards Future Patient Teleconsultation Experience\",[D]:\"Design a hybrid patient journey in supportive care\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"h5\",{children:\"    \"})}),[L]:'var(--token-8ca84397-29e0-4737-907d-8e50c9429fca, rgb(239, 238, 247)) /* {\"name\":\"Casestudy Pruple\"} */'},{id:\"dFaximBgb\",[d]:\"Design Case\",[o]:\"Roadmap towards Future Patient Teleconsultation Experience\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Made by Wenhao Li (2022)\"}),/*#__PURE__*/t(\"p\",{children:[\"Click the link to learn more about this project: \",/*#__PURE__*/e(i,{href:\"http://resolver.tudelft.nl/uuid:dcb65f26-1f23-443b-a399-298dfa260ffa\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"http://resolver.tudelft.nl/uuid:dcb65f26-1f23-443b-a399-298dfa260ffa\"})}),\".\"]})]}),[p]:\"roadmap-towards-future-patient-teleconsultation-experience\",[g]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[m]:\"Design process\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"This project started with clarifying project requirements and creating a project brief during the preparation phase. Followed by understanding the research context at the problem-thinking phase. A literature review and expert interviews were conducted to map out the patient journey and define innovation opportunities. To explore what cutting-edge technologies will be available in 2030 and how people's values and lifestyles will evolve in the following decade. Methods of Strategic Trend Research, Technology Scouting, and Future Visioning from the book Design Roadmapping were adopted to generate the desired future vision, which served as the end point of this phase. In the problem-solving phase, key user insights were generated to achieve the goal of human-centered design. Thematic analysis and generative design research methods were used to distinguish patient traits and future expectations, thereby facilitating concept development. Several design proposals were presented and mapped out on the roadmap. Through evaluation, the roadmap and proposals were iterated in a spiral. Due to the fact that this was a graduation project focused on design strategies, fewer design efforts were made to achieve the final implementation and make the business successful.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,ugYO84yuvSMlPcBjj6jN034jc.jpg\",\"data-framer-height\":\"1637\",\"data-framer-width\":\"2314\",height:\"818\",src:\"https://framerusercontent.com/images/ugYO84yuvSMlPcBjj6jN034jc.jpg\",style:{aspectRatio:\"2314 / 1637\"},width:\"1157\"})]}),[f]:\"Understand\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"In the future, to improve digital patient experiences, especially to alleviate patients' anxiety and emotions during the consultation journey, highly connected, personalized, community-based remote care solutions that incorporate social support were suggested. Four patient traits and eight design strategies were generated and mapped in this context.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,qZsIUXPXaghn6gE7YgJA2BMQ.png\",\"data-framer-height\":\"2838\",\"data-framer-width\":\"2197\",height:\"1419\",src:\"https://framerusercontent.com/images/qZsIUXPXaghn6gE7YgJA2BMQ.png\",style:{aspectRatio:\"2197 / 2838\"},width:\"1098\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,oEu7CgkpUKUiodhiAwA1OdqF8.png\",\"data-framer-height\":\"1451\",\"data-framer-width\":\"2880\",height:\"725\",src:\"https://framerusercontent.com/images/oEu7CgkpUKUiodhiAwA1OdqF8.png\",style:{aspectRatio:\"2880 / 1451\"},width:\"1440\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,8hnPXz1OJIZKBucRHExuHTXc1c.png\",\"data-framer-height\":\"2347\",\"data-framer-width\":\"4526\",height:\"1173\",src:\"https://framerusercontent.com/images/8hnPXz1OJIZKBucRHExuHTXc1c.png?scale-down-to=4096\",style:{aspectRatio:\"4526 / 2347\"},width:\"2263\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,AxlHynhigm2yZkhqJ9BuyjZtPA.png\",\"data-framer-height\":\"1779\",\"data-framer-width\":\"4537\",height:\"889\",src:\"https://framerusercontent.com/images/AxlHynhigm2yZkhqJ9BuyjZtPA.png?scale-down-to=4096\",style:{aspectRatio:\"4537 / 1779\"},width:\"2268\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,WVzvMpYBdlBtBEmWxAGFlU57x7c.png\",\"data-framer-height\":\"1743\",\"data-framer-width\":\"2368\",height:\"871\",src:\"https://framerusercontent.com/images/WVzvMpYBdlBtBEmWxAGFlU57x7c.png\",style:{aspectRatio:\"2368 / 1743\"},width:\"1184\"})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Other design cases\",[S]:{pathVariables:{wFCs_qBQF:\"design-a-hybrid-patient-journey-in-supportive-care\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-for-enhancing-the-trust-of-chronic-patients-in-teleconsultation\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Design a hybrid patient journey in supportive care\",[D]:\"Design for enhancing the trust of chronic patients in teleconsultation\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"h5\",{children:\"    \"})}),[L]:'var(--token-8ca84397-29e0-4737-907d-8e50c9429fca, rgb(239, 238, 247)) /* {\"name\":\"Casestudy Pruple\"} */'},{id:\"QM7fB9tBO\",[d]:\"Design Case\",[o]:\"Design a hybrid patient journey in supportive care\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Made by Tingwei Long (2022)\"}),/*#__PURE__*/t(\"p\",{children:[\"Click the link to learn more about this project: \",/*#__PURE__*/e(i,{href:\"http://resolver.tudelft.nl/uuid:e03f154c-cba3-475c-9337-38e41d25afb2\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"http://resolver.tudelft.nl/uuid:e03f154c-cba3-475c-9337-38e41d25afb2\"})})]})]}),[p]:\"design-a-hybrid-patient-journey-in-supportive-care\",[g]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[m]:\"Design process\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"Starting with receiving a design assignment from the Consultation Room 2030 program, the designer conducted several group discussions to clarify project requirements and formulate a project brief during the preparation phase. Literature reviews and interviews were used to map the current patient journey and the healthcare workflow in cancer supportive care. The problem-thinking phase ended with a well-defined problem.\\xa0 The problem-solving phase started with framing a design goal. The designer conducted several design ideation sessions to generate and validate a future hybrid journey map and a roadmap in cancer supportive care. The implementation phase was not included in this master project.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,BBnbyD7C8c8ZIeRZLp4gEDHJHLU.png\",\"data-framer-height\":\"3057\",\"data-framer-width\":\"3401\",height:\"1528\",src:\"https://framerusercontent.com/images/BBnbyD7C8c8ZIeRZLp4gEDHJHLU.png\",style:{aspectRatio:\"3401 / 3057\"},width:\"1700\"})]}),[f]:\"Understand\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"The hybrid patient journey was generated to incorporate rapidly developed digital health into the supportive care system. It introduced potential touch points that happen before the first consultation, during the first consultation, and in follow-up care.\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",\"data-framer-asset\":\"data:framer/asset-reference,q36lMLmAzGjiGJqAK35gTu0aMzc.png\",\"data-framer-height\":\"2839\",\"data-framer-width\":\"4960\",height:\"1419\",src:\"https://framerusercontent.com/images/q36lMLmAzGjiGJqAK35gTu0aMzc.png?scale-down-to=4096\",style:{aspectRatio:\"4960 / 2839\"},width:\"2480\"}),/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(c,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/5WAW-a--noA?si=CEcAoKmqvTEf5bMB\"})})})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Other design cases\",[S]:{pathVariables:{wFCs_qBQF:\"design-for-enhancing-the-trust-of-chronic-patients-in-teleconsultation\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"roadmap-towards-future-patient-teleconsultation-experience\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Design for enhancing the trust of chronic patients in teleconsultation\",[D]:\"Roadmap towards Future Patient Teleconsultation Experience\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"h5\",{children:\"    \"})}),[L]:'var(--token-8ca84397-29e0-4737-907d-8e50c9429fca, rgb(239, 238, 247)) /* {\"name\":\"Casestudy Pruple\"} */'},{id:\"PnfZ3POXT\",[d]:\"High-tech Case Study\",[o]:\"VR Distraction for pain management in wound care: prospective observational study\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"This study aims to evaluate digital patient experiences of using VR distraction (\",/*#__PURE__*/e(i,{href:\"https://www.syncvrmedical.com/\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://www.syncvrmedical.com/\"})}),\") in wound care to further improve care quality. Researchers (https://www.tudelft.nl/io/over-io/personen/wang-t) from Delft University of Technology and Erasmus MC conducted a prospective observational study in clinical settings. Here is an introduction video in Dutch ( \",/*#__PURE__*/e(i,{href:\"https://we.tl/t-79rU0udWHF\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"https://we.tl/t-79rU0udWHF\"})}),\"). \"]}),/*#__PURE__*/e(\"p\",{children:\"A step-by-step evaluation process was presented as below:\"})]}),[p]:\"high-tech-case-study\",[g]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[m]:\"\",[u]:null,[f]:\"Step-by-step\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(s.div,{className:\"framer-text-module\",style:{\"--aspect-ratio\":\"560 / 315\",aspectRatio:\"var(--aspect-ratio)\",height:\"auto\",width:\"100%\"},children:/*#__PURE__*/e(n,{componentIdentifier:\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\",children:t=>/*#__PURE__*/e(c,{...t,play:\"Off\",shouldMute:!0,thumbnail:\"Medium Quality\",url:\"https://youtu.be/51lC7n5mGtk\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"Two evaluation objectives were clarified at the beginning: one is to support designers and developers in improving the design, development, and implementation of VR distraction in wound care, and the second is to inform patients and healtchare providers about the benefits of using VR distraction in wound care to achieve evidence-based clinical usage and increase adoption and uptake.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"When to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"In this case, VR glasses and contents have already been developed and used in some clinical settings. Therefore, the research team chose to focus on evaluating the effectiveness and implementation stages. Participants were asked to report their perceptions and experiences before and after their wound care, with or without VR distraction. Their momentary data was collected before, during, or immediately after the wound care.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"What to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"The research team selected a variety of variables to assess. Some were behavioral determinants, such as technology acceptance and intention to use, used for formative assessment. Some were emotional, perceptual, behavioral, and clinical outcomes, such as overall satisfaction, perceived usefulness, actual use, and pain outcomes, used for summative assessment.\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"According to the overall objectives and related resources, the research team chose a prospective before-and-after observational study as the final study design. They used adjusted questionnaires as data collection methods to collect quantitative data from patients, and they performed quantitative analysis, which was \\xa0statistical analysis, in SPSS to analyze the data.\"}),/*#__PURE__*/e(\"p\",{children:\"They will report their results to designers and developers to inform their future design, development, and implementation of VR distraction in wound care. They will suggest to certain patients and healthcare providers whether to use VR distraction in wound care based on the research findings. To conclude, they planned to submit their evaluation results to high-quality journals to provide both theoretical and practical implications for a wider community in this area.\"})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Supplement\",[S]:\"https://www.syncvrmedical.com/\",[q]:\"SyncVR Medical\",[D]:\"\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/ajZt48bki4Osv6OPY3GXSoxkfk.png\",srcSet:\"https://framerusercontent.com/images/ajZt48bki4Osv6OPY3GXSoxkfk.png?scale-down-to=512 512w, https://framerusercontent.com/images/ajZt48bki4Osv6OPY3GXSoxkfk.png 750w\"},\"\"),[x]:\"*Notes: We initiated the whole project.\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"h5\",{children:\"    \"})}),[L]:'var(--token-8ca84397-29e0-4737-907d-8e50c9429fca, rgb(239, 238, 247)) /* {\"name\":\"Casestudy Pruple\"} */'},{id:\"iMMdvtvw8\",[d]:\"Low-tech Case Study\",[o]:\"A digital intake tool for Fecal Immunochemical Test-based colorectal cancer screening programs: questionnaires\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"This study aims to assess digital patient experiences of a digital intake tool in the \",/*#__PURE__*/e(i,{href:\"https://www.rivm.nl/en/colorectal-cancer-screening-programme\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Dutch colorectal cancer screening program\"})})}),/*#__PURE__*/e(\"strong\",{children:\" \"}),\"in participants aged from 55-70 with a positive Fecal Immunochemical Test who are referred for colonoscopy. \",/*#__PURE__*/e(i,{href:\"https://www.tudelft.nl/io/over-io/personen/wang-t\",openInNewTab:!0,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:/*#__PURE__*/e(\"strong\",{children:\"Researchers\"})})}),\" from Delft University of Technology and Erasmus MC conducted a patient survey to understand how patients experience the digital intake tool and improve it further. \"]}),/*#__PURE__*/e(\"p\",{children:\"A step-by-step evaluation process was presented as below:\"})]}),[p]:\"low-tech-case-study\",[g]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[m]:\"\",[u]:null,[f]:\"Step-by-Step\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Why to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"The evaluation objective of this study is to support designers and developers in continuously improving the design, development, and implementation of the digital intake tool.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"When to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"In this case, the digital intake tool has already been developed and can be used in the real world. Therefore, the research team chose to focus on evaluating the effectiveness stage. Participants' momentary experience data was collected \\xa0immediately after the use of the digital intake tool.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"What to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"The research team selected a variety of variables to assess. Some were technical determinants, such as personalized design, navigation design, information design, visual design, and usability, used for formative assessment. Some were emotional and perceptual outcomes, such as overall satisfaction and perceived usefulness, used for summative assessment.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"How to measure?\"})}),/*#__PURE__*/e(\"p\",{children:\"The research team chose a prospective observational, single centered cohort study as the final study design. They used adjusted questionnaires as data collection methods to collect quantitative data from patients, and they performed quantitative analysis, which was \\xa0statistical analysis, in SPSS to analyze the data.\"}),/*#__PURE__*/e(\"p\",{children:\"They will report their results to designers and developers to inform their future design, development, and implementation of the digital intake tool. They will suggest to certain patients and healthcare providers whether to use the digital intake tool based on the research findings. To conclude, they planned to submit their evaluation results to high-quality journals to provide both theoretical and practical implications for a wider community in this area.\"})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"\",[q]:\"\",[D]:\"\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"*Notes: this study is part of a big program.\",[z]:null,[L]:'var(--token-8ca84397-29e0-4737-907d-8e50c9429fca, rgb(239, 238, 247)) /* {\"name\":\"Casestudy Pruple\"} */'},{id:\"dcHqt1Lmq\",[d]:\"Healthcare System Impact\",[o]:\"Economic Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Whether your digital health increases the utilization of healthcare resources.\"})}),[p]:\"economic-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/E2P2DUYBgzNJxZPx0RmZAptBq0.svg\"},\"\"),[m]:\"Cost-effectiveness\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Out-of-pocket expenses for patients: care costs, travel costs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Time-efficiency of using the DHIs: waiting time, travel time, and consultation time\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Reduction in overuse of services: printed materials\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[f]:\"Healthcare service utilization\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Duration of consultations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Number of hospitals, primary care, and emergency department visits\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Hospital admissions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Hospitalization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Proportion of referrals\"})})]})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"\",[q]:\"\",[D]:\"\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does healthcare system impact mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Healthcare system impact contains one theme and two subthemes. Economic outcomes refer to the cost-effectiveness and healthcare services utilization. In terms of cost- effectiveness, for example, studies report less out-of-pocket expenses for patients due to reduced care and travel costs, and greater time- efficiency due to shorter waiting, travel, and consultation time.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"WacZ2_EkA\",[d]:\"Patient Outcomes\",[o]:\"Clinical Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"What medical condition the patient is in and aims to maintain.\"})}),[p]:\"clinical-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/z3bs5fSbO4gaTvs57TSiMsl07Rw.svg\"},\"\"),[m]:\"Health conditions\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Level of pain and symptoms control\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Status of physical health\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Level of health or treatment-related anxiety, depression, and stress\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mortality rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Morbidity rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Adverse effects\"})})]})]}),[f]:\"\",[b]:null,[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"emotional-outcomes\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"capability-outcomes\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"behavioral-outcomes\"},webPageId:\"XXOmzA3Rw\"},[R]:{pathVariables:{wFCs_qBQF:\"perceptual-outcomes\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Emotional Outcomes\",[D]:\"Capability Outcomes\",[P]:\"Behavioural Ouctomes\",[T]:\"Perceptual Outcomes\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does patient outcomes mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Studies used a variety of quantitative and qualitative factors and variables to measure and describe patient outcomes, referring to five themes (emotional outcomes, perceptual outcomes, capability outcomes, behavioral outcomes, and clinical outcomes), and twelve subthemes.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"t7u94Ugl_\",[d]:\"Patient Outcomes\",[o]:\"Behavioral Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"What the patient acts and does.\"})}),[p]:\"behavioral-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/c7nC5VNb44GQQe79yVqu6tJh6U.svg\"},\"\"),[m]:\"Adherence\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Initial, sustained use of certain features\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Download and deletion rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Completion rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dropout rates\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Speed of task completion\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Self-management behaviors\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Number of individuals exercising regularly, and/or using dietary behaviors compared to the total participants\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Engagement of treatment, self-care, and help-seeking behavior\"})})]}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[w]:\"Patient-provider communication\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Number and frequency of patient-provider contacts\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Engagement of patient-provider communication\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quality of patient-provider communication (e.g., % patients reporting HCPs communicated well)\"})})]})]}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"clinical-outcomes\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"emotional-outcomes\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"perceptual-outcomes\"},webPageId:\"XXOmzA3Rw\"},[R]:{pathVariables:{wFCs_qBQF:\"capability-outcomes\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Clinical Outcomes\",[D]:\"Emotional Outcomes\",[P]:\"Perceptual Outcomes\",[T]:\"Capability Outcomes\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does patient outcomes mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Studies used a variety of quantitative and qualitative factors and variables to measure and describe patient outcomes, referring to five themes (emotional outcomes, perceptual outcomes, capability outcomes, behavioral outcomes, and clinical outcomes), and twelve subthemes.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"jWP1kZORs\",[d]:\"Patient Outcomes\",[o]:\"Capability Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"What the patient knows and acquires.\"})}),[p]:\"capability-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/29hjFGhxCAyTF4jQEWNN42edOJE.svg\"},\"\"),[m]:\"Empowerment\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Participants\u2019 level of informed state of mind after using the DHIs: clinical awareness\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patients\u2019 level of health knowledge: health literacy, skills, and understanding\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patients\u2019 ability to make clinical decisions: problem solving, shared decision-making\"})})]})]}),[f]:\"\",[b]:null,[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"behavioral-outcomes\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"clinical-outcomes\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"emotional-outcomes\"},webPageId:\"XXOmzA3Rw\"},[R]:{pathVariables:{wFCs_qBQF:\"perceptual-outcomes\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Behavioral Outcomes\",[D]:\"Clinical Outcomes\",[P]:\"Emotional Outcomes\",[T]:\"Perceptual Ouctomes\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does patient outcomes mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Studies used a variety of quantitative and qualitative factors and variables to measure and describe patient outcomes, referring to five themes (emotional outcomes, perceptual outcomes, capability outcomes, behavioral outcomes, and clinical outcomes), and twelve subthemes.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"XrD8LJ_uL\",[d]:\"Patient Outcomes\",[o]:\"Perceptual Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"What the patient thinks and believes.\"})}),[p]:\"perceptual-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/qfp8wcujocz7ZMu5UjLm22Wn6o.png\",srcSet:\"https://framerusercontent.com/images/qfp8wcujocz7ZMu5UjLm22Wn6o.png?scale-down-to=512 511w, https://framerusercontent.com/images/qfp8wcujocz7ZMu5UjLm22Wn6o.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/qfp8wcujocz7ZMu5UjLm22Wn6o.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/qfp8wcujocz7ZMu5UjLm22Wn6o.png 2481w\"},\"\"),[m]:\"Empowerment\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived values\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quality of life\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Confidence\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Self-efficacy\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comfort\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Acceptability\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Degree to which technology, treatment, and care services are accepted: willingness to use, intention to use, intention to continue using, likelihood to recommend\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Connectedness\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Relationships between patient and provider: closeness, detachment, trust, or doubts\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Attitudes\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Initial beliefs, preferences, and expectations\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Impression of the excellence of the DHIs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interpretation of the DHIs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Motivation to change behavior\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[E]:\"Burden\",[A]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived burden and restriction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Discomfort\\xa0\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Unconfident\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]}),[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"capability-outcomes\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"behavioral-outcomes\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"emotional-outcomes\"},webPageId:\"XXOmzA3Rw\"},[R]:{pathVariables:{wFCs_qBQF:\"clinical-outcomes\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Capbility Outcomes\",[D]:\"Behavioral Outcomes\",[P]:\"Emotional Outcomes\",[T]:\"Clinical Outcomes\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does patient outcomes mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Studies used a variety of quantitative and qualitative factors and variables to measure and describe patient outcomes, referring to five themes (emotional outcomes, perceptual outcomes, capability outcomes, behavioral outcomes, and clinical outcomes), and twelve subthemes.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"jaZpBKobi\",[d]:\"Patient Outcomes\",[o]:\"Emotional Outcomes\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"What the patient feels.\"})}),[p]:\"emotional-outcomes\",[g]:G({src:\"https://framerusercontent.com/images/yCOYu8jFrRVTSg0zs9UJqkQDk7g.svg\"},\"\"),[m]:\"Positive Emotions\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patient satisfaction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of reassurance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Well-being\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of security\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Peace of mind\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of belonging\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Negative Emotions\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Concerns\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fears\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of uncertainties\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Dissatisfaction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of frustration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A sense of insecurity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Worries\"})})]})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"perceptual-outcomes\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"capability-outcomes\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"behavioral-outcomes\"},webPageId:\"XXOmzA3Rw\"},[R]:{pathVariables:{wFCs_qBQF:\"clinical-outcomes\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Perceptual Outcomes\",[D]:\"Capbility Outcomes\",[P]:\"Behavioural Outcomes\",[T]:\"Clinical Outcomes\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does patient outcomes mean?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Studies used a variety of quantitative and qualitative factors and variables to measure and describe patient outcomes, referring to five themes (emotional outcomes, perceptual outcomes, capability outcomes, behavioral outcomes, and clinical outcomes), and twelve subthemes.\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"pkfMZGvbT\",[d]:\"Intervention Outputs\",[o]:\"Care quality\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Whether your digital health increases the likelihood of desired health outcomes.\"})}),[p]:\"care-quality\",[g]:G({src:\"https://framerusercontent.com/images/0Gzr7Y3vuQhyBKA2yyzDVE1zPc.svg\"},\"\"),[m]:\"Accessible care\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Accessibility of care services: data, information, and HCPs.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Involvement of related stakeholders: family, friends, and peer-to-peer communication.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Accessibility to high quality care: timely, integrated, continuous, improved (more predictable daily life), convenient (fits into daily routines), and personalized care.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[f]:\"Safe and credible care\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Credibility and accountability of care: the owners\u2019 credibility, third party verification.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Security of care: the number of medical errors.\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Privacy of care: the presence of general privacy notifications, the documentation of individual access to user private data, regulation compliance.\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"functionality\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"usability\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Functionality\",[D]:\"Usability\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What is intervention Outputs?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Intervention outputs are partially determined by the intervention inputs and processes (i.e., influencing factors and design considerations, such as personalized design).\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"xsYNuMW39\",[d]:\"Intervention Outputs\",[o]:\"Usability\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Whether your digital health is understandable and easy to use.\"})}),[p]:\"usability\",[g]:G({src:\"https://framerusercontent.com/images/f9SioQQRFbrmqEjaQI1EpLTYY.svg\"},\"\"),[m]:\"Technology quality attributes\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technology operability: the ease of use, learnability, memorability, readability, efficiency, system errors, product, or service.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technology standards and specifications: interoperability, integration, scalability, ergonomics, connectivity, adaptability, flexibility, accuracy, and reliability.\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Interaction design\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Use of human-centered design methodologies during the development process: co-design, user-centered design, inclusive design.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Design quality of system architecture, layout, and interface: intuitive, interactive, personalized, esthetic.\"})})]})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"care-quality\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"functionality\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Care quality\",[D]:\"Functionality\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What is intervention Outputs?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Intervention outputs are partially determined by the intervention inputs and processes (i.e., influencing factors and design considerations, such as personalized design).\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"F43PacQTm\",[d]:\"Intervention Outputs\",[o]:\"Functionality\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Whether your digital health works as intended.\"})}),[p]:\"functionality\",[g]:G({src:\"https://framerusercontent.com/images/zYqoSW3MfC1h84dMhNSXNUK94g.svg\"},\"\"),[m]:\"Intended values\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to either change or maintain the user\u2019s health state in a beneficial way: support self-management, shared decision-making, trigger actions, track and respond to changes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to collect clinical metrics: the number of monitored variables, the frequency, accuracy, concordance, timeliness, and visibility of monitoring.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Content and information\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Quality of the content: evidence-based, tailored, relevance, practicality, consistency, clarity.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Amount of the information: comprehensible, completeness, glanceability (understandability), and conciseness.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Language of the information: simple nontechnical language, actionable message, a nonauthoritarian, friendly, and non-judgmental tone of voice.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Intended values\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to either change or maintain the user\u2019s health state in a beneficial way: support self-management, shared decision-making, trigger actions, track and respond to changes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to collect clinical metrics: the number of monitored variables, the frequency, accuracy, concordance, timeliness, and visibility of monitoring.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Intervention features\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Appropriate features that meet the intended values: activity planning, activity scheduling, activity tracking, diary, alerts, journal, feedback, reminders.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Degree of setup, maintenance, and training: ready to use, initial training, ongoing education.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Channel or mode of delivery: phone calls, social media, mobile applications, web, video, devices, and wearable kit.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[E]:\"Theory-based interventions\",[A]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Indicators\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Presence or absence of an underlying theoretical basis: behavior change theory, social presence, a quality certification.\"})})})]}),[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"usability\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"care-quality\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Usability\",[D]:\"Care quality\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What is intervention Outputs?\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Intervention outputs are partially determined by the intervention inputs and processes (i.e., influencing factors and design considerations, such as personalized design).\"})}),[L]:'var(--token-d3fe25de-43a6-49eb-8f5a-be23ed8bb542, rgba(255, 241, 232, 0.8)) /* {\"name\":\"Evaluate Orange\"} */'},{id:\"vsm_6bV4f\",[d]:\"Design Methods\",[o]:\"Inclusive design approaches\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(i,{href:\"https://www-edc.eng.cam.ac.uk/research/inclusive-design\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Inclusive design\"})}),\" Include as many people as possible, regardless of their age, ability, gender, cultural background, or any other form of human difference.\"]})}),[p]:\"inclusive-design-approaches\",[g]:G({src:\"https://framerusercontent.com/images/yN4UQoaJerXqvBBau0xqr7hY.png\",srcSet:\"https://framerusercontent.com/images/yN4UQoaJerXqvBBau0xqr7hY.png?scale-down-to=512 511w, https://framerusercontent.com/images/yN4UQoaJerXqvBBau0xqr7hY.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/yN4UQoaJerXqvBBau0xqr7hY.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/yN4UQoaJerXqvBBau0xqr7hY.png 2481w\"},\"\"),[m]:\"Inclusive\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/e(\"p\",{children:\"Provide flexible design to be usable by people with no limitations as well as by people with functional limitations related to disabilities or old ages.\"})]}),[f]:\"\",[b]:null,[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"user-centered-design-human-centered-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"co-design-participatory-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[q]:\"User-centered design, human-centered design approaches\",[D]:\"Co-design, participatory design approaches\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"AjSiJWwQ1\",[d]:\"Design Methods\",[o]:\"User-centered design, human-centered design approaches\",[h]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/t(\"p\",{children:[\"User-centered design and \",/*#__PURE__*/e(i,{href:\"https://www.designkit.org/resources/1.html\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"human-centered design\"})}),\": methods that prioritize the needs, preferences, and contexts of end-users.\"]}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11.5px\",\"--framer-text-color\":\"rgb(68, 71, 70)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"UCD places the user at the core of the design and development process.\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",style:{\"--framer-font-size\":\"11.5px\",\"--framer-text-color\":\"rgb(68, 71, 70)\",\"--framer-text-decoration\":\"none\"},children:/*#__PURE__*/e(\"p\",{children:\"HCD encompasses not only the user's needs but also considers the broader impact of the design on society, culture, and the environment.\"})})]})]}),[p]:\"user-centered-design-human-centered-design-approaches\",[g]:G({src:\"https://framerusercontent.com/images/Y4NMWDOp3AG88HRZLzc8Fac.png\",srcSet:\"https://framerusercontent.com/images/Y4NMWDOp3AG88HRZLzc8Fac.png?scale-down-to=512 511w, https://framerusercontent.com/images/Y4NMWDOp3AG88HRZLzc8Fac.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/Y4NMWDOp3AG88HRZLzc8Fac.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/Y4NMWDOp3AG88HRZLzc8Fac.png 2481w\"},\"\"),[m]:\"Need Assessment\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Know the needs, capabilities, and environment of users through focus groups, surveys, interviews, and personas;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Composing, preparing, and organizing contents.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Usability testing\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gain early feedback from users through prototypes; Benchmark testing, user testing, heuristic analysis, Failure Modes and Effects Analysis (FMEA), and observations in other healthcare settings.\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Implementation\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fit the tech to the person, not the person to the tech; Pilot testing, task analysis, and reporting mechanism.\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Monitor and sustain\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understanding work-as-imagined often differs from work-as-done;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Pre- and post-testing, contextual inquiry, and safety and hazard reporting.\"})})]})]}),[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"inclusive-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"co-design-participatory-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Inclusive design approaches\",[D]:\"Co-design, participatory design approaches\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"sks8DNjIk\",[d]:\"Design Methods\",[o]:\"Co-design, participatory design approaches\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"p\",{children:[/*#__PURE__*/e(i,{href:\"https://digital-health-lab.org/codesign-in-health\",openInNewTab:!1,smoothScroll:!1,children:/*#__PURE__*/e(\"a\",{children:\"Co-design\"})}),\" and participatory design: methods that include users in the design process to create products.\"]})}),[p]:\"co-design-participatory-design-approaches\",[g]:G({src:\"https://framerusercontent.com/images/zdkaHWquox1B4JBmXDCXfIrGaE.png\",srcSet:\"https://framerusercontent.com/images/zdkaHWquox1B4JBmXDCXfIrGaE.png?scale-down-to=512 511w, https://framerusercontent.com/images/zdkaHWquox1B4JBmXDCXfIrGaE.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/zdkaHWquox1B4JBmXDCXfIrGaE.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/zdkaHWquox1B4JBmXDCXfIrGaE.png 2481w\"},\"\"),[m]:\"Multi-stakeholder\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Involve end users and other stakeholders;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Include the user at the beginning of the design process.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Inter-disciplinary\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/e(\"ol\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"An interdisciplinary approach for the development and implementation.\"})})})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"user-centered-design-human-centered-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"inclusive-design-approaches\"},webPageId:\"XXOmzA3Rw\"},[q]:\"User-centered design, human-centered design approaches\",[D]:\"Inclusive design approaches\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"bTyUnuVj8\",[d]:\"Design Constructs\",[o]:\"Visualization\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Aesthetics, attractiveness, visibility, and consistency of digital health appearance and interface.\"})}),[p]:\"visualization\",[g]:G({src:\"https://framerusercontent.com/images/LpaPjzoBhWuBAb9MTqASaPKHA.png\",srcSet:\"https://framerusercontent.com/images/LpaPjzoBhWuBAb9MTqASaPKHA.png?scale-down-to=512 511w, https://framerusercontent.com/images/LpaPjzoBhWuBAb9MTqASaPKHA.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/LpaPjzoBhWuBAb9MTqASaPKHA.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/LpaPjzoBhWuBAb9MTqASaPKHA.png 2481w\"},\"\"),[m]:\"Message Presentation\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Visualize continuous monitoring data (e.g., present data as graphs and tables);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide a coherent presentation in terms of colors, pictures, and themes;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Simple nontechnical language;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Straightforward and concise text;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Comprehensive descriptions of actionable message;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide positive, non-authoritarian, friendly, and nonjudgmental tone of voice;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Multimedia messages (e.g., text combined with relevant pictures or video);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Highlight information by using various font styles, sizes, and colors.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Interface Aesthetic\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Show graphics (i.e., visual aids) rather than (too much) text;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide a pleasing color scheme (e.g., bright colors);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Simple interface.\"})})]})]}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"navigation\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"information\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"personalization\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Navigation\",[D]:\"Information\",[P]:\"Personalization\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"q6gACw4N3\",[d]:\"Design Constructs\",[o]:\"Navigation\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The interactive, delivered, and instructional elements of digital health.\"})}),[p]:\"navigation\",[g]:G({src:\"https://framerusercontent.com/images/IQ61Yuw8LfDSdRI1Ayjv4kwkc.png\",srcSet:\"https://framerusercontent.com/images/IQ61Yuw8LfDSdRI1Ayjv4kwkc.png?scale-down-to=512 511w, https://framerusercontent.com/images/IQ61Yuw8LfDSdRI1Ayjv4kwkc.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/IQ61Yuw8LfDSdRI1Ayjv4kwkc.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/IQ61Yuw8LfDSdRI1Ayjv4kwkc.png 2481w\"},\"\"),[m]:\"Forms of Delivery\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Readily accessible and downloadable;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improve DHI delivery (e.g., change from a website to a mobile phone application);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to print and email the information.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"User flows\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Minimum input (e.g., voice commands);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Efficient access to information;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clarify what to do next;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide search bar and menu bar;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tools and aids to help understand health information and complete health tasks.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Instruction and tutorials\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Guide users to a greater extent if the design is not self-explanatory;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide more concrete, explicit and context-sensitive instructions (e.g., a virtual guided tour, extra internal links);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Adopt features from common (i.e., familiarized) user interfaces (e.g., the iPhone-interface);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide appropriate education and training on DH use.\"})})]})]}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"visualization\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"information\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"personalization\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Visualization\",[D]:\"Information\",[P]:\"Personalization\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"fhTtlxOvC\",[d]:\"Design Constructs\",[o]:\"Information\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"\\xa0Information source, language, presentation, content, and architecture.\"})}),[p]:\"information\",[g]:G({src:\"https://framerusercontent.com/images/OIGraYjuPmwVIEb49UdJQzU3EY.png\",srcSet:\"https://framerusercontent.com/images/OIGraYjuPmwVIEb49UdJQzU3EY.png?scale-down-to=512 511w, https://framerusercontent.com/images/OIGraYjuPmwVIEb49UdJQzU3EY.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/OIGraYjuPmwVIEb49UdJQzU3EY.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/OIGraYjuPmwVIEb49UdJQzU3EY.png 2481w\"},\"\"),[m]:\"Content\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide comprehensive health information (e.g., medical history, test results, and medication information);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide appropriate education and training on health condition;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide concise information (not overwhelm);\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide evidence-based information from credible source (e.g., no advertisements, validated advice);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Appropriate encryption and DH security (e.g., passwords setting, privacy policy).\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Communication\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide peer-to-peer communication through online forums, communities, by instant messages;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Access to professionals directly via email, text message, or live chat;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Share duties between healthcare staff.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Functionality\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Rewards (e.g., material incentives, intangible rewards, messages of congratulations when a task is completed);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reminders (e.g., email messages, text messages, words of the day, and pop-ups) for task completion;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reflective feedback, persuasive features, gaming features (e.g., knowledge quizzes and games);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Functional characteristics enable accurate and continuous self-management (e.g., activity planning, activity tracking, self-monitoring, and diaries), person-centered care, and sustained behavior change;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Appropriate dose of treatment.\"})})]})]}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"navigation\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"visualization\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"personalization\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Navigation\",[D]:\"Visualization\",[P]:\"Personalization\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"dpS2kfWjK\",[d]:\"Design Constructs\",[o]:\"Personalization\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Creating patient profiles and customizing digital health solutions based on individual needs and preferences.\"})}),[p]:\"personalization\",[g]:G({src:\"https://framerusercontent.com/images/mb8TNcItgJtAgNzqxKBKYSk37M.png\",srcSet:\"https://framerusercontent.com/images/mb8TNcItgJtAgNzqxKBKYSk37M.png?scale-down-to=512 511w, https://framerusercontent.com/images/mb8TNcItgJtAgNzqxKBKYSk37M.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/mb8TNcItgJtAgNzqxKBKYSk37M.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/mb8TNcItgJtAgNzqxKBKYSk37M.png 2481w\"},\"\"),[m]:\"Profiling\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Careful patient selection for DH use;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assess specific metrics (e.g., sociodemographic characteristics, basic health status, individual preferences, habits);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Create an accurate patient profile.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Tailoring\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide personalized information, tailored intervention content, and customized feedback (e.g., predicted possible causes and consequences of a health problem and advice on the behavior under investigation);\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor the content to the user\u2019s needs and preferences;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor images, colors, text quantity, and font size and color to what users find appealing;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor multiple variables rather than a single variable;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Align with end users\u2019 habitual routines.\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Autonomy\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"CONSIDERATIONS\"})}),/*#__PURE__*/t(\"ol\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Choose desirable and accessible forms of delivery;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Choose when and how to receive reminders;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Select or change personalized goals for future use throughout the time span of intervention;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Select preferred styles (e.g., color, font).\"})})]})]}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"information\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"navigation\"},webPageId:\"XXOmzA3Rw\"},[N]:{pathVariables:{wFCs_qBQF:\"visualization\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Information\",[D]:\"Navigation\",[P]:\"Visualization\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What does design consideration mean\uFF1F\",[z]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Notably, there was an overlap between design considerations and influencing factors. The former focuses on concluding possible design suggestions, recommendations, and implications proposed by the reviewed articles. The latter involves mapping the impacts of interaction design on digital PEx in different contexts; therefore, they refer to different themes and references.\"})}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"v5sWcCGVL\",[d]:\"Organizational Determinants\",[o]:\"Social Environment\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The cultural environment (such as policy, business, or customs)\"})}),[p]:\"social-environment\",[g]:G({src:\"https://framerusercontent.com/images/ZBSDH55OduIqQgU6ls6OsSt01hY.png\",srcSet:\"https://framerusercontent.com/images/ZBSDH55OduIqQgU6ls6OsSt01hY.png?scale-down-to=512 511w, https://framerusercontent.com/images/ZBSDH55OduIqQgU6ls6OsSt01hY.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/ZBSDH55OduIqQgU6ls6OsSt01hY.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/ZBSDH55OduIqQgU6ls6OsSt01hY.png 2481w\"},\"\"),[m]:\"Culture\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The absence of or inadequate supporting policies and legislation\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of a plausible business case\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unrealistic financial reimbursement\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of well-established socio-technical infrastructure\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[f]:\"How to address\u2026\u2026\",[b]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide adequate support policies and legislation;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"develop plausible business cases.\"})})]})}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"physical-environment\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"organizational-environment\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Physical Environment\",[D]:\"Organizational Environment\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"u0G4uKdFC\",[d]:\"Organizational Determinants\",[o]:\"Physical Environment\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"The tangible surroundings (such as space, light, or sound) around patients.\"})}),[p]:\"physical-environment\",[g]:G({src:\"https://framerusercontent.com/images/uJEXcY0781CTYXYaSJCePW2Mu4U.png\",srcSet:\"https://framerusercontent.com/images/uJEXcY0781CTYXYaSJCePW2Mu4U.png?scale-down-to=512 511w, https://framerusercontent.com/images/uJEXcY0781CTYXYaSJCePW2Mu4U.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/uJEXcY0781CTYXYaSJCePW2Mu4U.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/uJEXcY0781CTYXYaSJCePW2Mu4U.png 2481w\"},\"\"),[m]:\"Place\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Stay in a familiar and relaxing environment; not restricted to the hospital setting\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Environmental distractions (eg, background noise and lighting)\\xa0\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"How to address\u2026\u2026\",[b]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide a familiar, warm, and comfortable environment rather than cold and unfamiliar settings;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"reduce environmental distractions (eg, background noise or lighting).\"})})]})}),[w]:\"\",[v]:null,[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"organizational-environment\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"social-environment\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Organizational Environment\",[D]:\"Social Environment\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"vg5KigjrH\",[d]:\"Organizational Determinants\",[o]:\"Organizational Environment\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Cost, health care providers, and health information systems.\"})}),[p]:\"organizational-environment\",[g]:G({src:\"https://framerusercontent.com/images/g5xyhDJUezNmMfPsvEP2q4XyZxI.png\",srcSet:\"https://framerusercontent.com/images/g5xyhDJUezNmMfPsvEP2q4XyZxI.png?scale-down-to=512 511w, https://framerusercontent.com/images/g5xyhDJUezNmMfPsvEP2q4XyZxI.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/g5xyhDJUezNmMfPsvEP2q4XyZxI.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/g5xyhDJUezNmMfPsvEP2q4XyZxI.png 2481w\"},\"\"),[m]:\"Cost and Time\\xa0\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less travel costs and waiting time\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Complete tasks at patients\u2019 own pace\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less time consuming\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Faster response\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Real-time feedback or timely support\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Design Procedures\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"User-centered design or human-centered design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inter-organizational collaboration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Co-design or participatory development methodology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inclusive design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Involvement of multi-stakeholder and multidisciplinary teams in the early design stages\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"High start-up costs, ongoing costs, and costs related to loss of revenue\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The cost of damage to equipment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unrealistic financial reimbursement and higher costs relevant to internet or equipment\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Time consuming for daily monitoring or recharging devices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Energy to complete \u201Cone more task\u201D\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Disruption to the daily routine\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of timely feedback\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Long waiting times for digital health calls\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Health Care Providers\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Many more HCPs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clinical positive opinion and approval\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Polite attitudes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Good communication skills\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clinician resistance (eg, less positive views on digital health)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Undermined clinical capacity and professional identity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Increased clinical workload\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Impeded communication with patients\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Over-treatment\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Health Information Systems\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The compatibility, interoperability, integration, sustainability, and completeness of systems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The clarity and transparency on accountability, workflow, and data processing\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clear information on required stakeholder responsibility\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of compatibility and interoperability of the system with different mobile operating systems and terminals\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Poor integration and working relationship between the service team\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of adequate installation\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Connectivity issues between medical devices and mobile terminals\"}),/*#__PURE__*/e(\"p\",{children:\"Limitation on scalability\"})]})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[E]:\"How to address...\",[A]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduce equipment or service cost and time;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"improve health care providers\u2019 professional ability, communication skills, and service attitudes across the use of digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"increase workflow transparency and clarify accountability;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"improve system integration and compatibility.\"})})]})}),[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"social-environment\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"physical-environment\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Social Environment\",[D]:\"Physical Environment\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"FGO4m0yP0\",[d]:\"Technical Determinants\",[o]:\"Intervention Interaction Design\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Personalized design, information design, navigation design, interface design, and design procedures.\"})}),[p]:\"design-intervention-interaction-design\",[g]:G({src:\"https://framerusercontent.com/images/AdR2flfvA8M0StNP3fgc3GSOF54.png\",srcSet:\"https://framerusercontent.com/images/AdR2flfvA8M0StNP3fgc3GSOF54.png?scale-down-to=512 511w, https://framerusercontent.com/images/AdR2flfvA8M0StNP3fgc3GSOF54.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/AdR2flfvA8M0StNP3fgc3GSOF54.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/AdR2flfvA8M0StNP3fgc3GSOF54.png 2481w\"},\"\"),[m]:\"Personalized design\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Individualized feedback, tailored features, or customization\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be able to choose the topic, content, and language of received messages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be able to select the timing and frequency of the delivered interventions\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h3\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Design Procedures\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"User-centered design or human-centered design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interorganizational collaboration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Co-design or participatory development methodology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inclusive design\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Involvement of multistakeholder and multidisciplinary teams in the early design stages\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Navigation Design\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Instruction manuals and extra user training\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technical support or assistance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interactive elements\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of clear navigation or instruction design\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Visual Design\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Visualized health data\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailored, attention-grabbing, simple, and consistent layout design (eg, appealing graphic presentation, pleasing and coherent color scheme, high text quantity, suitable font and interface size, and striking button appearance and location)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unobtrusive wearable devices\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unappealing user interfaces\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Poorly crafted interface\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low visibility of the content\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Bulkiness\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nonportability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Small screen or font size\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[E]:\"Information Design\",[A]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A reliable, trusted, credible information source\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"An unmarked sender\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Multimedia messages\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Detailed and comprehensive information\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Diverse and updated information\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A short, concise, personalized, clear, and direct message\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Formal or clinical language for some functions (description of pathologies)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Informal language for others (evaluation of conduct)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A motivational, friendly, encouraging, polite, respectful, congratulatory, personalized, upbeat, positive, humorous, and relatable tone\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Layered medication information and warnings from basic to advanced\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Overload of information\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Technical language\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Information source\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Information language\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[k]:\"How to address\u2026\u2026\",[I]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide personalized and consistent information, clear tutorials or technical support, and visualized data;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Allow patients to choose personalized interactive elements;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Follow human or user-centered design, co-design, and inclusive design methods;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Involve multi-stakeholders and multi-disciplines in the design process.\"})})]})}),[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"design-intervention-functionality\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-intervention-technology\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Intervention Functionality \",[D]:\"Intervention Technology \",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"oWgewWsVD\",[d]:\"Technical Determinants\",[o]:\"Intervention Functionality \",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Intervention goals, theoretical background, social support, intervention structure, and performed quality.\"})}),[p]:\"design-intervention-functionality\",[g]:G({src:\"https://framerusercontent.com/images/lzSSA1TksValLlGgIiRNAjWDI.png\",srcSet:\"https://framerusercontent.com/images/lzSSA1TksValLlGgIiRNAjWDI.png?scale-down-to=512 511w, https://framerusercontent.com/images/lzSSA1TksValLlGgIiRNAjWDI.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/lzSSA1TksValLlGgIiRNAjWDI.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/lzSSA1TksValLlGgIiRNAjWDI.png 2481w\"},\"\"),[m]:\"Intervention Goals\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Individualized or timely feedback\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Remotely consultation with HCPs\"}),/*#__PURE__*/e(\"p\",{children:\"Provide sufficient health information\"})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Be forced to share data with HCPs, which is undesired by patient\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Under long-term video-based monitoring\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remote data monitoring\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Self-management support\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Health information provision and patient education\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Shared decision-making\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Social support\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Interact with a real human being\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regular and continuous patient-to-physician interaction\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Connect with peers\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Exchange health information and advice with family and friends\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Replace interpersonal connections with HCPs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of physical human contact with HCPs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unable to contact HCPs directly or obtain timely feedback\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Remote connection\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"Performed Quality\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reliability and credibility (eg, owner\u2019s credibility, maintenance, third party verification, research support, involvement of clinical experts in the design process, and empirical evidence for successful implementation)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Regulation compliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexibility\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Less accuracy of clinical assessments\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of availability and accessibility\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of safety and privacy (eg, incorrect intervention dosage and the absence of privacy notifications)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Without well-defined or safely standardized clinical indicators\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[_]:\"Intervention Structure\",[y]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A structured format or regular weekly contact with HCPs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Longer duration\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Flexible interventions\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Structured interventions not tailored to patients\u2019 individual symptoms and preferences\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Structured interventions that constantly remind patients of their symptoms\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The intensity, frequency or duration of interventions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prefixed interventions\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[E]:\"Theoretical Background\",[A]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Presence of multiple underlying theories (BCTsd, EBIse, and persuasive technology)\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[k]:\"How to address\u2026\u2026\",[I]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Promote theory-based and evidence-based digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improve privacy, security, and accuracy concerns;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Provide continuous social support through both digital and physical contact.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fit health promotion and intervention structures to patients\u2019 needs and preferences.\"})})]})}),[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"design-intervention-interaction-design\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-intervention-technology\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Intervention Interaction Design\",[D]:\"Intervention Technology\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"A8y5WDL4g\",[d]:\"Technical Determinants\",[o]:\"Intervention Technology \",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Technical usability, technical features, and delivery media.\"})}),[p]:\"design-intervention-technology\",[g]:G({src:\"https://framerusercontent.com/images/7UUSLyqDvakJc3zRuZMFBGeWmE.png\",srcSet:\"https://framerusercontent.com/images/7UUSLyqDvakJc3zRuZMFBGeWmE.png?scale-down-to=512 511w, https://framerusercontent.com/images/7UUSLyqDvakJc3zRuZMFBGeWmE.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/7UUSLyqDvakJc3zRuZMFBGeWmE.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/7UUSLyqDvakJc3zRuZMFBGeWmE.png 2481w\"},\"\"),[m]:\"Technical Usability\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ease of use and understanding\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ready-to-use applications and devices\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Automatic and seamless system updating\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Adaptive interface\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Avoiding error prompts\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Difficulty to use\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Equipment or battery failure\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"High system complexity (eg, complex software downloads and account or password settings)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Data transmission and input difficulties\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Unstable internet connection or slow loading of website\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low accessibility\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low error tolerance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Poor picture and sound quality\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low visibility on small screens\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Technical Features\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Detect an improvement from digital health data or share data with HCPsc\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Medication or appointment reminders or altering\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Symptoms tracking dairies or tools\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Timely feedback or motivational feedback notifications\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to print or email information\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Ability to take voice commands\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Nutrition calculator\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Clinical measurements\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A security password for record access\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Agenda setting\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Recommender systems\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Summary reports for supporting shared decision-making\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Input or review information at any point\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Access to changeless or worse physiological data over time\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Access to data\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[w]:\"Delivery media or devices\",[v]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Mobile technology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Video- or audio-based technology (for users with sensory impairments)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Assisted equipment (eg, provide headphones for people with hearing difficulties and larger monitors with improved lighting for people with visual impairments)\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Web-based technology\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Types of devices (eg, mobile phones or computers)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Device ownership (eg, personal devices or devices without personal identifiers)\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Types of channels (eg, SMS text message or videos)\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"})]}),[_]:\"How to address\u2026\u2026\",[y]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improve technical usability;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Promote ease of use, ready-to-use, and timely feedback on digital health;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Fit technical features, delivery media, and devices to patients\u2019 preferences and needs.\"})})]})}),[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"design-intervention-functionality\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-intervention-interaction-design\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Intervention Functionality \",[D]:\"Intervention Interaction Design\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"UqETW110g\",[d]:\"Behavioral determinants\",[o]:\"Patient Motivation\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Patients' perceived advantages, perceived disadvantages, and initial mindsets.\"})}),[p]:\"design-patient-motivation\",[g]:G({src:\"https://framerusercontent.com/images/3rJA2kHYT53HQE9aWuEIe81Rb1w.png\",srcSet:\"https://framerusercontent.com/images/3rJA2kHYT53HQE9aWuEIe81Rb1w.png?scale-down-to=512 511w, https://framerusercontent.com/images/3rJA2kHYT53HQE9aWuEIe81Rb1w.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/3rJA2kHYT53HQE9aWuEIe81Rb1w.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/3rJA2kHYT53HQE9aWuEIe81Rb1w.png 2481w\"},\"\"),[m]:\"PERCEPTION (perceived advantages and disadvantages)\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived sense of security, independence, empowerment, convenience and access to care, and less sense of vulnerability\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prepared for emergencies or hospital visits\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Intact social networks\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"A suitable goal setting\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived no benefits\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived threats to security, privacy, independence, or an individual\u2019s sense of identity\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Worried digital health would replace traditional appropriate (face-to-face) health care services\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Impede social life or interfere with patient-to-provider relationships\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cause additional burden (being bombarded with too many messages)\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"MINDSET\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Prefer digital solutions\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Strong desire to keep healthy or gain knowledge\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Computer anxiety\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Overreliance\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Loss of interest\"})}),/*#__PURE__*/t(\"li\",{\"data-preset-tag\":\"p\",children:[/*#__PURE__*/e(\"p\",{children:\"Lack of motivation\"}),/*#__PURE__*/e(\"img\",{alt:\"\",className:\"framer-image\",src:\"blob:https://framer.com/fa26b2b3-b955-4dee-a5ba-41742c095905\"})]})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Patient preferences, expectations, desires, priorities, understanding, or beliefs\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reliance\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Trust in technology\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"How to address\u2026\u2026\",[v]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understand patients\u2019 mindsets and their perceived advantages and disadvantages of using digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Inform them of the benefits of using digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Reduce their concerns and worries;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Understand their expectations and needs;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor the design to their preferences.\"})})]})}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Other Patient Determinants\",[S]:{pathVariables:{wFCs_qBQF:\"design-patient-opportunity\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-patient-motivation\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Patient Opportunity\",[D]:\"Patient Motivation\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"C4BcEXuLQ\",[d]:\"Behavioral determinants\",[o]:\"Patient Opportunity\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Patients' identity and health status.\"})}),[p]:\"design-patient-opportunity\",[g]:G({src:\"https://framerusercontent.com/images/AkHgnBYIbXoxwHEOz0jEbyAoBfs.png\",srcSet:\"https://framerusercontent.com/images/AkHgnBYIbXoxwHEOz0jEbyAoBfs.png?scale-down-to=512 511w, https://framerusercontent.com/images/AkHgnBYIbXoxwHEOz0jEbyAoBfs.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/AkHgnBYIbXoxwHEOz0jEbyAoBfs.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/AkHgnBYIbXoxwHEOz0jEbyAoBfs.png 2481w\"},\"\"),[m]:\"Identity\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Younger age (eg, easier access to the internet)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"DHIs fit into patient\u2019s daily routine\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Older age (eg, with age-related barriers)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low socioeconomic status (eg, lack of access to digital health)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Business (eg, travel required, household responsibilities)\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gender differences\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Health status\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"POSITIVE\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The earlier stages of illness and partial or full remission\"})})}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"NEGATIVE\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Advanced chronic disease and complex comorbidities\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"The acute stages of illness\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Out of control health condition\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Cognitive barriers\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"DOUBLE-EDGED\"})}),/*#__PURE__*/e(\"ul\",{children:/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Gender differences\"})})}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"How to address\u2026\u2026\",[v]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Identify patients' demographic information and health status;\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Consider their accessibility and affordance to digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor the design to their conditions.\"})})]})}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"design-patient-capability\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-patient-motivation\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Patient Capability\",[D]:\"Patient Motivation\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'},{id:\"UAFzcPnJr\",[d]:\"Behavioral determinants\",[o]:\"Patient Capability\",[h]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/e(\"p\",{children:\"Patients\u2019 knowledge and skills to use digital health technologies and confidence in completing digital health tasks\"})}),[p]:\"design-patient-capability\",[g]:G({src:\"https://framerusercontent.com/images/hDoWI7bkutq22h5iHQqHn0JRkxk.png\",srcSet:\"https://framerusercontent.com/images/hDoWI7bkutq22h5iHQqHn0JRkxk.png?scale-down-to=512 511w, https://framerusercontent.com/images/hDoWI7bkutq22h5iHQqHn0JRkxk.png?scale-down-to=1024 1023w, https://framerusercontent.com/images/hDoWI7bkutq22h5iHQqHn0JRkxk.png?scale-down-to=2048 2047w, https://framerusercontent.com/images/hDoWI7bkutq22h5iHQqHn0JRkxk.png 2481w\"},\"\"),[m]:\"Knowledge and Skills\",[u]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Positive Factors\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Familiarity with the technology\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Previous positive experience with digital health\"})})]}),/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Negative Factors\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Low literacy (language, technology; or health)\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Previous negative experiences with digital health (eg, failure to achieve goals and disappointment with the DHIs\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[f]:\"Confidence Levels\",[b]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:/*#__PURE__*/e(\"strong\",{children:\"Negative Factors\"})}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Lack of confidence in skills\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Perceived inability to use technologies or services\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Misunderstanding digital health tasks\\xa0\"})})]}),/*#__PURE__*/e(\"p\",{children:\"___________\"}),/*#__PURE__*/e(\"h5\",{children:/*#__PURE__*/e(\"br\",{className:\"trailing-break\"})})]}),[w]:\"How to address\u2026\u2026\",[v]:/*#__PURE__*/e(l.Fragment,{children:/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Identify patients\u2019 knowledge and skill levels by understanding their technology, language, and health literacy;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Consider their previous experiences and current confidence level in using digital health;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Improve their actual literacy and correct their inaccurate self-perception;\\xa0\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Tailor the design to their abilities.\"})})]})}),[_]:\"\",[y]:null,[E]:\"\",[A]:null,[k]:\"\",[I]:null,[F]:\"Related Content\",[S]:{pathVariables:{wFCs_qBQF:\"design-patient-opportunity\"},webPageId:\"XXOmzA3Rw\"},[O]:{pathVariables:{wFCs_qBQF:\"design-patient-motivation\"},webPageId:\"XXOmzA3Rw\"},[q]:\"Patient Opportunity\",[D]:\"Patient Motivation\",[P]:\"\",[T]:\"\",[C]:G({src:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png\",srcSet:\"https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png?scale-down-to=512 512w, https://framerusercontent.com/images/chSnENrgeZAREDrkqLG14AOEJs.png 1024w\"},\"\"),[x]:\"What are positive, negative, and double-edged factors?\",[z]:/*#__PURE__*/t(l.Fragment,{children:[/*#__PURE__*/e(\"p\",{children:\"These categories were classified into positive, negative, and double-edged factors based on their positive, negative, and diverse impacts on digital PEx.\\xa0\"}),/*#__PURE__*/t(\"ul\",{children:[/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Positive Factors describe the advantageous or beneficial attributes\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Negative Factors describe the disadvantages or detrimental attributes.\"})}),/*#__PURE__*/e(\"li\",{\"data-preset-tag\":\"p\",children:/*#__PURE__*/e(\"p\",{children:\"Double-Edged Factors describe attributes that have both beneficial and harmful sides.\"})})]})]}),[L]:'var(--token-a64b7eae-4406-48ba-8f63-9d3680f0c8ff, rgb(238, 246, 241)) /* {\"name\":\"Understand Green\"} */'}];for(let e of B)Object.freeze(e);a(B,{PqsEubzop:{defaultValue:\"\",displayTextArea:!1,title:\"Tag\",type:r.String},KOTUBNUvn:{defaultValue:\"\",title:\"Page Title\",type:r.String},rRGN_AAF1:{defaultValue:\"\",title:\"Description\",type:r.RichText},wFCs_qBQF:{title:\"Slug\",type:r.String},oTi2E1q5q:{__defaultAssetReference:\"data:framer/asset-reference,chSnENrgeZAREDrkqLG14AOEJs.png?originalFilename=1024px-HD_transparent_picture.png&preferredSize=auto\",title:\"Image\",type:r.ResponsiveImage},ARoMpKl0j:{defaultValue:\"\",title:\"Title1\",type:r.String},KM9wvxts6:{defaultValue:\"\",title:\"Body 1\",type:r.RichText},qQFb9br73:{defaultValue:\"\",title:\"Title2\",type:r.String},w8JznYlUa:{defaultValue:\"\",title:\"Body2\",type:r.RichText},Wr7IrG34w:{defaultValue:\"\",title:\"Title3\",type:r.String},UJx7NcneU:{defaultValue:\"\",title:\"Body3\",type:r.RichText},ElaOj29pC:{defaultValue:\"\",title:\"Title4\",type:r.String},lV4AIZ7qm:{defaultValue:\"\",title:\"Body4\",type:r.RichText},QD75n8eiL:{defaultValue:\"\",title:\"Title5\",type:r.String},jgBSxfXB1:{defaultValue:\"\",title:\"Body5\",type:r.RichText},nGFZqWypQ:{defaultValue:\"\",title:\"Title6\",type:r.String},CrXpa9Cp9:{defaultValue:\"\",title:\"Body6\",type:r.RichText},xsF7a_hrD:{defaultValue:\"Related Content\",title:\"Link Title\",type:r.String},HUB3yhEjs:{title:\"Link_1\",type:r.Link},LJRvrCLe7:{title:\"Link_2\",type:r.Link},Ed1AAFJj3:{title:\"Link_3\",type:r.Link},XhyyKDeKs:{title:\"Link_4\",type:r.Link},Uz8fIphkY:{defaultValue:\"\",title:\"Link1_Title\",type:r.String},pW12Jkloi:{defaultValue:\"\",title:\"Link2_Title\",type:r.String},kvze0kcMl:{defaultValue:\"\",title:\"Link_3 Title\",type:r.String},Ega2OZHgo:{defaultValue:\"\",title:\"Link4_Title\",type:r.String},XgDQnMgVv:{__defaultAssetReference:\"data:framer/asset-reference,chSnENrgeZAREDrkqLG14AOEJs.png?originalFilename=1024px-HD_transparent_picture.png&preferredSize=auto\",title:\"Background Image\",type:r.ResponsiveImage},bOf0NwdKq:{defaultValue:\"What are positive, negative, and double-edged factors?\",title:\"Note Title\",type:r.String},mbdmoayME:{defaultValue:\"\",title:\"Note\",type:r.RichText},GeLapfkNP:{defaultValue:\"rgb(0, 153, 255)\",title:\"Background Color\",type:r.Color}}),B.displayName=\"Blog\";export default B;export const enumToDisplayNameFunctions={};\nexport const __FramerMetadata__ = {\"exports\":{\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerEnumToDisplayNameUtils\":\"2\",\"framerData\":\"\",\"framerSlug\":\"wFCs_qBQF\",\"framerContractVersion\":\"1\",\"framerRecordIdKey\":\"id\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "embedURL1", "videoId2", "embedURL2", "res", "format", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "d", "o", "h", "p", "g", "m", "u", "f", "b", "w", "v", "_", "y", "E", "A", "k", "I", "F", "S", "O", "N", "R", "q", "D", "P", "T", "C", "x", "z", "L", "G", "e", "t", "B", "Link", "motion", "ComponentPresetsConsumer", "Youtube", "addPropertyControls", "ControlType", "r8gYzE_Ut_default", "enumToDisplayNameFunctions", "__FramerMetadata__"]
}
