js-shared-data

1.0.0 • Public • Published

JS Shared Data

This package provides a front-end solution for the coderello/laravel-shared-data package.

Install

yarn add js-shared-data

Usage

Let's imagine that we shared such data from the backend using coderello/laravel-shared-data:

share([
    'user' => [
        'full_name' => 'Ilya Sakovich',
        'username' => 'hivokas',
        'email' => 'me@hivokas.com',
    ],
    'balance' => 120,
]);

On the front-end side we can access this data using shared() helper.

import { shared } from 'js-shared-data';
 
// retrieve the user object
const user = shared('user');
 
// retrieve the username from the user object
const username = shared('user.username');
 
// retrieve the balance
const balance = shared('balance');
 
// specify the default value which will be used if value for specified path doesn't exist
const status = shared('status', 'Working...');

Customization

import { sharedData } from 'js-shared-data';
 
// specify the default value globally
sharedData.setDefaultValue(null);
 
// specify the namespace which contains an object with all shared data
sharedData.setNamespace('App');
 
// specify the source
sharedData.setSource(window);

Package Sidebar

Install

npm i js-shared-data

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

4.59 kB

Total Files

7

Last publish

Collaborators

  • coderello