You can install the package via npm / yarn:
npm install @binarcode/restifyjsSetup package:
// main.js
import { createRestify } from '@binarcode/restifyjs';
await createRestify('https://host.test/api/restify/restifyjs/setup?token=testing')In the configuration above, the https://host.test/api/restify/restifyjs/setup is the fully qualified url to your Laravel Restify based API.
:::warn
In the local and testing environments, the authorization is not required, however, if you want to get the setup configuration in a production environment, you have to provide a token via query param to authorize it. This token is stored in your Laravel app, in the restify.restifyjs.token configuration key.
:::
Under the hood package will fetch the configurations from the server, so you don't have to worry about that. Next, you
can import the Restify in any of yours project files.
Here is what the package does when createRestify is called:
import Restify from '@binarcode/restifyjs'
//...
const config = await fetch('https://host.test/api/restify/restifyjs/setup');
return Restify.init(config);The createRestify accept an object as well instead of the URL, so you can fetch the configuration using your
custom axios instance, and give the configuration object:
const config = await axios.get('...');
createRestify(config);After creating you call createRestify, the Restify singleton is available gloabally, however you can mount on your
own on window object using mount:
createRestify(config).mount(window);RestifyJS has its own axios instance to made requests. However, you can use your own axios instance by using:
Restify.useAxiosInstance(axiosInstance);This is the setup you can use in your vue 3 application:
import { createApp } from 'vue'
import App from './App.vue'
import axios from './utils/axios';
import { createRestify } from '@binarcode/restifyjs';
createRestify('http://restify-app.test/api/restify/restifyjs/setup').then(Restify => {
Restify.useAxiosInstance(axios);
createApp(App).mount('#app');
})And this basic setup for the vue 2:
import Vue from 'vue'
import App from './App.vue'
import router from './router'
import axios from '@/modules/common/apiConfig'
import { createRestify } from '@binarcode/restifyjs';
createRestify('http://restify-app.test/api/restify/restifyjs/setup').then(Restify => {
Restify.useAxiosInstance(axios);
window.app = new Vue({
router,
render: h => h(App)
}).$mount('#app')
})In Restify, every single resource you may have (users, articles etc.), is called Repository.
You can list all available repositories keys using:
Restify.repositoriesKeys();You also have access to the repository collection using:
Restify.getRepositories()Let's get the user repository, and perform some actions:
// Any .vue or .js file
import Restify from '@binarcode/restifyjs';
const userRepository = Restify.repository('users');
// List matches:
userRepository.matches()
// List related:
userRepository.related()
// List searchables:
userRepository.searchables()// Login:
Restify.login({
email, password
});
// Register:
Restify.register({
name, email, password, password_confirmation
});
// Forgot Password:
Restify.forgotPassword({
email
});
// Reset Password:
Restify.resetPassword({
email, token, password
})
// (Optional) Verify user email:
// `userId` and `emailHash` will be send via email when `register` users if verification enabled.
Restify.verify(userId, emailHash)Requests above returns a promise you can await.
const usersRepository = Restify.repository('users');
// List with related posts:
await usersRepository.get({related: 'posts'});
// Show with related post:
await usersRepository.show(id, {related: 'posts'});
// Create:
await usersRepository.store({
first_name, last_name, email
});
// Update:
await usersRepository.update(id, {
first_name
});
// Delete:
await usersRepository.delete(id);Sure enough you can perform these actions in a custom way. You can get the base repository url using:
usersRepository.uri('actions')This will return you back the FQDN:
http://restify-app.test/api/restify/users/actions
Actions are the main feature to modify your resources. Let's assume you have a Post, and you have to publish it using the itemAction:
Restify.repository('posts').itemAction(id, 'publish');Publish multiple posts posts using action instead of itemAction, but in this case you have to pass the list of ids you want this action to be performed:
Restify.repository('posts').action('publish', {
repositories: [1, 2, 3]
});RestifyJS provides an event bus, so you can listen for some events.
The error event happens when any request fails with 500 status code:
Restify.$on('error', message => console.warn(message));