This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {defineNuxtModule, extendPages} from "@nuxt/kit"; | |
import type {NuxtPage} from "@nuxt/schema"; | |
/** | |
* A function that filters out pages that should be ignored | |
* It should return the valid list of pages to replace the original list completely | |
* @param pages The list of pages to filter | |
* @returns The list of pages to use | |
*/ | |
type PageFilterFunction = (pages: NuxtPage[]) => NuxtPage[]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# uncomment for a colored prompt, if the terminal has the capability; turned | |
# off by default to not distract the user: the focus in a terminal window | |
# should be on the output of commands, not on the prompt | |
#force_color_prompt=yes | |
if [ -n "$force_color_prompt" ]; then | |
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then | |
# We have color support; assume it's compliant with Ecma-48 | |
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such | |
# a case would tend to support setf rather than setaf.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import Lodash library | |
const _ = require('lodash'); | |
// Permissions array from the database. | |
const permissionsArray = [ | |
{ | |
name: 'Home Appliances', | |
rules : { | |
read: true, | |
write: true, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Permissions = [ | |
{ | |
name: 'Home Appliances', | |
rules : { | |
read: true, | |
write: true, | |
delete: true | |
} | |
}, | |
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Import Lodash library | |
const _ = require('lodash'); | |
// Original perissions object | |
const _permissions = { | |
homeAppliances: { | |
read: true, | |
write: true, | |
delete: true | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const permissions = { | |
homeAppliances: { | |
read: true, | |
write: true, | |
delete: true | |
}, | |
haberdashery: { | |
read: true, | |
write: true, | |
delete: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... Schema above | |
productCategories:[ | |
{ | |
name: "Home Appliances", | |
products: [ | |
// ... List of products | |
] | |
}, | |
{ | |
name: "Haberdashery", |