From 2214a5048b540e785e374103a500dc7a41e20a05 Mon Sep 17 00:00:00 2001 From: Rish Date: Tue, 28 Apr 2020 01:04:30 +0530 Subject: [PATCH] Added new parent context refs https://github.com/TryGhost/members.js/issues/5 - Adds new parent context with default values for all common context data we want to pass through This adds base for using contexts (https://reactjs.org/docs/context.html) in our application as that allows easier overall base data and method sharing between different components instead of passing them down --- ghost/portal/src/components/ParentContext.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ghost/portal/src/components/ParentContext.js diff --git a/ghost/portal/src/components/ParentContext.js b/ghost/portal/src/components/ParentContext.js new file mode 100644 index 0000000000..bb26e584cd --- /dev/null +++ b/ghost/portal/src/components/ParentContext.js @@ -0,0 +1,10 @@ +// Ref: https://reactjs.org/docs/context.html +const React = require('react'); + +export const ParentContext = React.createContext({ + site: {}, + member: {}, + action: '', + brandColor: '', + onAction: () => {} +}); \ No newline at end of file