Skip to content

Commit bd3e583

Browse files
committed
init repo with files
1 parent d48e135 commit bd3e583

File tree

4 files changed

+76
-0
lines changed

4 files changed

+76
-0
lines changed

AlpineJS.module

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?php namespace ProcessWire;
2+
3+
/**
4+
* Class AlpineJS
5+
*
6+
*/
7+
8+
class AlpineJS extends ModuleJS implements Module {
9+
10+
public static function getModuleInfo() {
11+
return array(
12+
'title' => 'Alpine.js',
13+
'version' => 001,
14+
'href' => 'http://alpinejs.dev',
15+
);
16+
}
17+
18+
public function getVersionUrl(){
19+
$class = $this->className();
20+
return "{$this->config->urls->$class}alpinejs/{$this->version}/alpine.js";
21+
}
22+
23+
public function init() {
24+
$config = $this->config;
25+
$config->scripts->add($this->getVersionUrl(), ['defer' => true]);
26+
}
27+
28+
}

AlpineJSConfig.php

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php namespace ProcessWire;
2+
class AlpineJSConfig extends ModuleConfig {
3+
public function getInputfields() {
4+
$class = rtrim($this->className(), 'Config');
5+
$config = $this->config;
6+
$inputfields = $this->wire(new InputfieldWrapper());
7+
$f = $this->wire('modules')->get('InputfieldRadios');
8+
$f->attr('name', 'version');
9+
$f->attr('label', 'Version');
10+
$files = $this->files;
11+
$versions = $files->find("{$config->paths->$class}alpinejs", [
12+
'allowDirs' => true,
13+
'recursive' => false,
14+
'returnRelative'=> true
15+
]);
16+
foreach($versions as $i => $version){
17+
$version = rtrim($version,"/");
18+
$versions[$i] = $version;
19+
$f->addOption(rtrim($version,"/"));
20+
}
21+
$f->attr('value', isset($data['version']) ? $data['version'] : $versions[0]);
22+
$inputfields->add($f);
23+
return $inputfields;
24+
}
25+
}

alpinejs/3.10.2/alpine.js

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "elabx/modulejs-alpine",
3+
"description": "Field to setup recurring dates using RRule",
4+
"type": "pw-module",
5+
"keywords": ["processwire", "seo", "metatags", "sitemap"],
6+
"homepage": "https://github.com/elabx/AlpineJS",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Eduardo San Miguel Garcia",
11+
"email": "[email protected]",
12+
"homepage": "https://github.com/elabx"
13+
}
14+
],
15+
"require": {
16+
"wireframe-framework/processwire-composer-installer": "^1.1"
17+
}
18+
}

0 commit comments

Comments
 (0)