@treely/strapi-slices v7.5.2
Tree.ly Strapi Slices
This package contains all the slices that are used for the Tree.ly website as well as other projects developed by Tree.ly and powered by the Tree.ly Strapi instance.
Find the documentation of the slices here.
Development
Install dependencies:
npm installRun the app in DEV mode:
npm run storybookRun the linter:
npm run lintRun the tests:
npm run testFor local testing, you can link the package to your project:
npm run build
npm packGo to the project which uses the strapi-slices package and remove the
node_modules and the .next folder before installing the package there:
cd ../path/to/your/project
rm -r node_modules
rm -r .next
npm install
npm install ../path/to/strapi-slices-package.tgzNote: The Strapi CMS uses the data from the fpm-api for staging.
Commit message guideline
The project uses the Angular commit message guideline. Find the documentation here.
Build
Build the package:
npm run buildFind the build in the dist folder.
Use the package
Install the package:
npm install @treely/strapi-slices
npm install boemlyUse the slices:
import {
IStrapiData,
SliceRenderer,
StrapiBlogPost,
StrapiCustomerStory,
} from '@treely/strapi-slices';
import { BoemlyThemeProvider } from 'boemly';
// Get the slices, blog posts, and customer stories from Strapi
// Get the projects from the FPM API
const slices: any[] = [];
const blogPosts: IStrapiData<StrapiBlogPost> = [];
const projects: PortfolioProject[] = [];
const customerStories: IStrapiData<StrapiCustomerStory> = [];
const App = (): JSX.Element => (
<BoemlyThemeProvider>
<SliceRenderer
slices={slices}
blogPosts={blogPosts}
projects={projects}
customerStories={customerStories}
/>
</BoemlyThemeProvider>
);8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
10 months ago
10 months ago
10 months ago
11 months ago
1 year ago
1 year ago
12 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago