How to use the contentful-ui-extensions-sdk.locations.LOCATION_ENTRY_SIDEBAR function in contentful-ui-extensions-sdk

To help you get started, we’ve selected a few contentful-ui-extensions-sdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github contentful / ui-extensions-sdk / test / extensions / test-extension / src / index.js View on Github external
init(sdk => {
  window.sdk = sdk
  if (sdk.location.is(locations.LOCATION_ENTRY_FIELD)) {
    renderExtension()
  } else if (sdk.location.is(locations.LOCATION_PAGE)) {
    renderExtension()
  } else if (sdk.location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
    renderExtension()
  } else if (sdk.location.is(locations.LOCATION_ENTRY_EDITOR)) {
    renderExtension()
  } else if (sdk.location.is(locations.LOCATION_DIALOG)) {
    renderExtension()
  }
})
github contentful / extensions / marketplace / gatsby-preview / src / index.js View on Github external
init(sdk => {
  const root = document.getElementById('root');

  if (sdk.location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
    render(, root);
  } else if (sdk.location.is(locations.LOCATION_APP)) {
    render(, root);
  }
});
github contentful / create-contentful-extension / packages / contentful-extension-scripts / template / typescript-page / src / index.tsx View on Github external
init(sdk => {
  if (sdk.location.is(locations.LOCATION_PAGE)) {
    render(, document.getElementById('root'));
  } else if (sdk.location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
    render(, document.getElementById('root'));
  } else {
    return null;
  }
});
github contentful / create-contentful-extension / packages / contentful-extension-scripts / template / javascript-page / src / index.js View on Github external
init(sdk => {
  if (sdk.location.is(locations.LOCATION_PAGE)) {
    render(, document.getElementById('root'));
  } else if (sdk.location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
    render(, document.getElementById('root'));
  } else {
    return null;
  }
});
github contentful / extensions / marketplace / readable / src / index.js View on Github external
init(extension => {
  extension.window.startAutoResizer();

  const rootElm = document.getElementById('root');

  if (extension.location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
    ReactDOM.render(, rootElm);
  } else if (extension.location.is(locations.LOCATION_DIALOG)) {
    const { dialog } = extension.parameters.invocation;
    if (dialog === 'details') {
      ReactDOM.render(, rootElm);
    }
  }
});
github contentful / extensions / marketplace / optimizely / src / index.js View on Github external
const { sdk } = props;
    const { client } = state;
    const { location, parameters } = sdk;

    if (location.is(locations.LOCATION_APP)) {
      return (
        
      );
    }

    if (location.is(locations.LOCATION_ENTRY_SIDEBAR)) {
      if (!parameters.installation.optimizelyProjectId) {
        return ;
      }

      return ;
    }

    if (location.is(locations.LOCATION_ENTRY_EDITOR)) {
      const [valid, missingFields] = isValidContentType(sdk.contentType);

      if (!valid) {
        return ;
      }

      return (