Skip to content

Commit

Permalink
Merge branch 'release/5.0.0-beta.2' into v5
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jan 30, 2024
2 parents 79c3fe7 + bb2ba1e commit 1bd04e7
Show file tree
Hide file tree
Showing 12 changed files with 177 additions and 19 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/code-analysis.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Code Analysis

on:
pull_request: null
push:
branches:
- develop-v5
workflow_dispatch:
permissions:
contents: read
jobs:
code_analysis:
strategy:
fail-fast: false
matrix:
actions:
-
name: 'PHPStan'
run: composer phpstan
-
name: 'Coding Standards'
run: composer fix-cs
name: ${{ matrix.actions.name }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# see https://github.com/shivammathur/setup-php
- uses: shivammathur/setup-php@v2
with:
php-version: 8.2
coverage: none
# composer install cache - https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v2"
- run: ${{ matrix.actions.run }}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

All notable changes to this project will be documented in this file.

## 5.0.0-beta.2 - 2024.01.30
### Added
* If the `devServer` is running, the `ViteService::fetch()` method will try to use the `devServerInternal` URL first, falling back on the `devServerPublic` so that `craft.vite.inline()` can pull from the `devServer` if it is running ([#22](https://github.com/nystudio107/craft-plugin-vite/issues/22))
* Add `phpstan` and `ecs` code linting
* Add `code-analysis.yaml` GitHub action

### Changed
* PHPstan code cleanup
* ECS code cleanup

## 5.0.0-beta.1 - 2024.01.21
### Added
- Initial beta release
14 changes: 12 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-vite",
"description": "Allows the use of the Vite.js next generation frontend tooling with Craft CMS",
"type": "craft-plugin",
"version": "5.0.0-beta.1",
"version": "5.0.0-beta.2",
"keywords": [
"craft",
"cms",
Expand All @@ -24,7 +24,17 @@
],
"require": {
"craftcms/cms": "^5.0.0-alpha.1",
"nystudio107/craft-plugin-vite": "^5.0.0-beta.1"
"nystudio107/craft-plugin-vite": "^5.0.0-beta.2"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
},
"scripts": {
"phpstan": "vendor/bin/phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"config": {
"allow-plugins": {
Expand Down
74 changes: 74 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# `vite` docs

This buildchain is a self-contained build system for the `vite` documentation.

## Overview

The buildchain uses [VitePress](https://vitepress.dev/) via a Docker container to facilitate writing the docs as [markdown](https://vitepress.dev/guide/markdown), linting them via [textlint](https://textlint.github.io/), building them as HTML files with bundled assets, and publishing them automatically via a [GitHub action](https://docs.github.com/en/actions).

It also uses a [Rollup](https://rollupjs.org/) [sitemap plugin](https://github.com/aminnairi/rollup-plugin-sitemap) to generate a `sitemap.xml` for the generated docs.

The markdown sources for the docs and assets are in the `docs/docs/` directory.

The built distribution docs are created via the `build-and-deploy-docs.yaml`

## Prerequisites

To run the buildchain for development purposes:

- You must have [Docker Desktop](https://www.docker.com/products/docker-desktop/) (or the equivalent) installed

## Commands

This buildchain uses `make` as an interface to the buildchain. The following commands are available from the `buildchain/` directory:

- `make image-build` - Build the Docker image & run `npm install`. This command must be run once before using the Docker container.
- `make dev` - Start Vite HMR dev server while writing/editing the docs. Click on the link displayed in the terminal to open the docs up
- `make lint` - Run `textlint` on the docs, reporting on any errors and warnings
- `make fix` - Run `textlint` on the docs, automatically fixing any errors, and reporting any warnings
- `make clean` - Remove `node_modules/` and `package-lock.json` to start clean (need to run `make image-build` after doing this, see below)
- `make npm XXX` - Run an `npm` command inside the container, e.g.: `make npm run lint` or `make npm install`
- `make ssh` - Open up a shell session into the buildchain Docker container
- `make build` - Do a local distribution build of the docs; normally not needed since they are built & deployed via GitHub action

## Docs versioning

Each major version of the plugin corresponds to a major version of Craft.

Each major version of the plugin has separate documentation that needs to be updated when changes span plugin versions.

The latest version of the docs that correspond to the latest version of the plugin is always the root of the docs tree, with older versions appearing in sub-directories:

```
│ index.html
├── v4
│ └── index.html
├── v3
│ └── index.html
```

The docs are entirely separate, but linked to eachother via a version menu, configured in the `docs/docs/.vitepress/config.ts` file.

## Algolia Docsearch

The docs uses [Algolia Docsearch](https://docsearch.algolia.com/) to index them, and allow for easy searching via a search field with auto-complete.

Algolia Docsearch is configured in the `docs/docs/.vitepress/config.ts` file.

## textlint

The buildchain uses [textlint](https://textlint.github.io/) to automatically fix errors on build, and also issue writing style warnings.

`textlint` automatically uses any rules added to the `docs/package.json` file, which can be overridden or customized via the `docs/.textlintrc.js` file.

See the [textlint docs](https://textlint.github.io/docs/getting-started.html) for details.

## Overriding environment variables

The `Makefile` contains sane defaults for most things, but you can override them via environment variables if you need to.

For instance, if you want to change the `DOCS_DEST` environment variable to change where `make build` builds the docs locally, you can set it before running any buildchain `make` commands:
```bash
env DOCS_DEST=../path/to/some/dir make build
```
...or use any other method for [setting environment variables](https://www.twilio.com/blog/how-to-set-environment-variables.html). This environment variable needs to be set in the shell where you run the buildchain's various `make` commands from, so setting it in your project's `.env` file won't work.
19 changes: 15 additions & 4 deletions docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ To install the plugin, follow these instructions.

3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Vite.

4. Install Vite. Vite's *[Getting Started Guide](https://vitejs.dev/guide/)* provides various installation options.

Check warning on line 35 in docs/docs/index.md

View workflow job for this annotation

GitHub Actions / build (20.x)

"various" is a weasel word

## Vite Overview

Vite is a bridge between Craft CMS/Twig and the next generation frontend build tool [Vite.js](https://vitejs.dev/)

Check warning on line 39 in docs/docs/index.md

View workflow job for this annotation

GitHub Actions / build (20.x)

Avoid using “next generation”
Expand Down Expand Up @@ -126,6 +128,15 @@ hosted on a CDN or such.

### Configuring Vite.js

### Vite 5.0 or later

As of Vite 5.0 or later, there's been a [change to where the `manifest.json`](https://vitejs.dev/guide/migration#manifest-files-are-now-generated-in-vite-directory-by-default) is generated by default.

It is now placed inside a `.vite/` directory by default. You can accomodate this in either of the following ways:

* Change the `manifest` setting in your `vite.config.js` file to `manifest.json` (it can not either be a `bool` or a file path `string`)
* Change the `manifestPath` setting in your `config/vite.php` file to `'@webroot/dist/.vite/manifest.json'`

#### Basic Config

Here’s a basic `vite.config.js` for use as a [Vite config](https://vitejs.dev/config/):
Expand All @@ -138,7 +149,7 @@ export default ({command}) => ({
outDir: '../cms/web/dist/',
rollupOptions: {
input: {
app: './src/js/app.ts',
app: 'src/js/app.ts',
}
},
},
Expand Down Expand Up @@ -168,7 +179,7 @@ export default ({command}) => ({
outDir: '../cms/web/dist/',
rollupOptions: {
input: {
app: './src/js/app.ts',
app: 'src/js/app.ts',
}
},
},
Expand Down Expand Up @@ -202,7 +213,7 @@ export default ({command}) => ({
outDir: '../cms/web/dist/',
rollupOptions: {
input: {
app: './src/js/app.ts',
app: 'src/js/app.ts',
}
},
},
Expand Down Expand Up @@ -254,7 +265,7 @@ export default ({command}) => ({
outDir: '../cms/web/dist/',
rollupOptions: {
input: {
app: './src/js/app.ts',
app: 'src/js/app.ts',
}
},
},
Expand Down
13 changes: 13 additions & 0 deletions ecs.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

use craft\ecs\SetList;
use Symplify\EasyCodingStandard\Config\ECSConfig;

return static function(ECSConfig $ecsConfig): void {
$ecsConfig->paths([
__DIR__ . '/src',
__FILE__,
]);
$ecsConfig->parallel();
$ecsConfig->sets([SetList::CRAFT_CMS_4]);
};
7 changes: 7 additions & 0 deletions phpstan.neon
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
includes:
- vendor/craftcms/phpstan/phpstan.neon

parameters:
level: 5
paths:
- src
7 changes: 3 additions & 4 deletions src/Vite.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ protected function installEventListeners(): void
Event::on(
CraftVariable::class,
CraftVariable::EVENT_INIT,
function (Event $event) {
function(Event $event) {
/** @var CraftVariable $variable */
$variable = $event->sender;
$variable->set('vite', [
Expand All @@ -125,7 +125,7 @@ function (Event $event) {
Event::on(
ClearCaches::class,
ClearCaches::EVENT_REGISTER_CACHE_OPTIONS,
function (RegisterCacheOptionsEvent $event) {
function(RegisterCacheOptionsEvent $event) {
Craft::debug(
'ClearCaches::EVENT_REGISTER_CACHE_OPTIONS',
__METHOD__
Expand All @@ -142,11 +142,10 @@ function (RegisterCacheOptionsEvent $event) {
Event::on(
View::class,
View::EVENT_BEFORE_RENDER_PAGE_TEMPLATE,
static function (TemplateEvent $event) {
static function(TemplateEvent $event) {
self::$templateName = $event->template;
}
);

}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/models/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public function rules(): array
'includeReactRefreshShim',
'includeModulePreloadShim',
],
'boolean'
'boolean',
],
[
[
Expand All @@ -111,13 +111,13 @@ public function rules(): array
'cacheKeySuffix',
'devServerInternal',
],
'string'
'string',
],
[
[
'errorEntry',
],
'string'
'string',
],
];
}
Expand Down
4 changes: 2 additions & 2 deletions src/services/ServicesTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ public static function config(): array
return [
'components' => [
'helper' => HelperService::class,
'vite' => PluginConfigHelper::serviceDefinitionFromConfig('vite', ViteService::class)
]
'vite' => PluginConfigHelper::serviceDefinitionFromConfig('vite', ViteService::class),
],
];
}

Expand Down
2 changes: 1 addition & 1 deletion src/translations/en/vite.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
*/
return [
'Vite Cache' => 'Vite Cache',
'{name} plugin loaded' => '{name} plugin loaded'
'{name} plugin loaded' => '{name} plugin loaded',
];
6 changes: 3 additions & 3 deletions src/variables/ViteVariable.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ViteVariable implements ViteVariableInterface
public function includeCriticalCssTags(?string $name = null, array $attributes = []): Markup
{
return Template::raw(
Vite::$plugin->helper->getCriticalCssTags($name, $attributes) ?? ''
Vite::$plugin->helper->getCriticalCssTags($name, $attributes)
);
}

Expand All @@ -55,7 +55,7 @@ public function includeCriticalCssTags(?string $name = null, array $attributes =
public function getCssInlineTags(string $path, array $attributes = []): string
{
return Template::raw(
Vite::$plugin->helper->getCssInlineTags($path, $attributes) ?? ''
Vite::$plugin->helper->getCssInlineTags($path, $attributes)
);
}

Expand All @@ -68,7 +68,7 @@ public function getCssInlineTags(string $path, array $attributes = []): string
public function getCssHash($path): Markup
{
return Template::raw(
Vite::$plugin->helper->getCssHash($path) ?? ''
Vite::$plugin->helper->getCssHash($path)
);
}
}

0 comments on commit 1bd04e7

Please sign in to comment.