- Switch to the Magento file system owner. It will probably be
su www-data
composer require addressfinder/module-magento2
bin/magento module:enable AddressFinder_AddressFinder
bin/magento setup:upgrade
bin/magento cache:flush
- Checkout the project or download the zip
- Create the directory
AddressFinder/AddressFinder
inapp/code
. - Copy the contents into that directory.
bin/magento module:enable AddressFinder_AddressFinder
bin/magento setup:upgrade
- If not in developer mode
bin/magento setup:di:compile
bin/magento setup:static-content:deploy
- Finally run
bin/magento cache:flush
- Click on Stores/Configuration.
- Click on Services and select AddressFinder.
- Uncheck the 'Use system value' checkbox and enter any configuration options. Save your changes.
- Now if you visit your store AddressFinder should be working. The country dropdown is set to 'United States' by default, so make sure this is changed to New Zealand or Australia
- Switch to the Magento file system owner.
su www-data
composer update
- Clear the cache, compile and deploy static content:
cd /var/www/html/bin && ./magento cache:clean && ./magento cache:flush && ./magento setup:upgrade && ./magento setup:di:compile && ./magento setup:static-content:deploy -f en_GB en_US
We test the plugin by using docker images for Magento 2. We install the plugin inside this test store.
-
Clone the image for the version of Magento you want to use, then start the container with
docker-compose up
For Magento 2.3.2
git clone --branch 2.3.2.0 git@github.com:AbleTech/docker-magento2.git docker-magento-2.3.2 && cd docker-magento-2.3.2
For Magento 2.3.1
git clone --branch 2.3.1.0 git@github.com:AbleTech/docker-magento2.git docker-magento-2.3.1 && cd docker-magento-2.3.1
For Magento 2.3
git clone --branch 2.3 git@github.com:AbleTech/docker-magento2.git docker-magento-2.3 && cd docker-magento-2.3
For Magento 2.2
git clone --branch 2.2 git@github.com:AbleTech/docker-magento2.git docker-magento-2.2 && cd docker-magento-2.2
For Magento 2.1
git clone --branch 2.1 git@github.com:AbleTech/docker-magento2.git docker-magento-2.1 && cd docker-magento-2.1
-
Install Magento. In a new tab run:
docker-compose exec web install-magento
-
In a new tab, edit your host file to redirect localhost to local.magento
to open the file:
sudo vim /etc/hosts
add:
127.0.0.1 local.magento
-
Open your browser at:
- Admin pages: http://local.magento/index.php/admin
- Shop pages: http://local.magento/index.php/
You can login to the admin using the credentials MAGENTO_ADMIN_USERNAME and MAGENTO_ADMIN_PASSWORD from the env file inside your docker container.
If you make a mistake and need to start again you can remove docker images and volumes with this command docker-compose down --rmi all -v
You will need to install a product in your store to use the checkout and test the AddressFinder plugin
- Log in to the magento admin
- Click on Catalog/Products
- Click Add Product
- Create a new product with the required fields of product name, sku, price and quantity. Also make sure stock status is set to 'In Stock'
- Click the admin dropdown in the top right corner and select 'customer view'.
- You should be able to search for your new product in the shop and add it to the cart.
This plugin is made up of three parts:
- The Magento plugin itself.
- The Magento JavaScript plugin, which provides the specific configuration for Magento, and connects to a Magento store
- AddressFinder Webpage Tools. This is an NPM package that adds the autocomplete capability. https://github.com/abletech/addressfinder-webpage-tools
To build the Magento JavaScript plugin, simply visit the module's folder and run:
npm install
npm run build
. These files will be added/updated inside theview/frontend/layout/web/js
folder. Magento will take care of minification wherever your store is in production mode.
To add support for new forms or customising existing forms, a level of Magento development knowledge is assumed. You'll firstly need your own module. Magento has a tutorial on creating your module. Within your module, you'll need to create an observer that'll hook into the form configuration step of the AddressFinder plugin in order to attach your own form configuration.
To begin, you'll need to add the following to your module's etc/config.xml
(we are assuming your module is called MyCompany_MyModule
):
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd">
<!-- Listen to the "addressfinder_form_config" event -->
<event name="addressfinder_form_config">
<observer name="checkout_billing_address" instance="MyCompany\MyModule\Observer\FormConfig\AddMyForm"/>
</event>
</config>
You'll need to create your own observer class to hook into the event and create a new form configuration that relates to the HTML on the page where you'd like to see AddressFinder (The available options may be found in the AddressFinder documentation). An example observer with support for state mapping within Australia could be:
<?php
namespace MyCompany\MyModule\Observer\FormConfig;
use AddressFinder\AddressFinder\Model\StateMappingProvider;
use Magento\Framework\Data\Collection;
use Magento\Framework\DataObject;
use Magento\Framework\Event\Observer;
use Magento\Framework\Event\ObserverInterface;
use Magento\Framework\Exception\NoSuchEntityException;
use Psr\Log\LoggerInterface;
class AddMyForm implements ObserverInterface
{
/**
* @var StateMappingProvider
*/
private $stateMappingProvider;
/**
* @var LoggerInterface
*/
private $logger;
/**
* Creates a new "Add My Form" observer.
*
* @param StateMappingProvider $stateMappingProvider
*/
public function __construct(StateMappingProvider $stateMappingProvider, LoggerInterface $logger)
{
$this->stateMappingProvider = $stateMappingProvider;
$this->logger = $logger;
}
/**
* {@inheritDoc}
* @throws NoSuchEntityException
*/
public function execute(Observer $observer)
{
/** @var Collection $forms */
$forms = $observer->getEvent()->getData('forms');
try {
$forms->addItem(new DataObject([
'label' => 'My Form',
'layoutSelectors' => ['input#street_1'],
'countryIdentifier' => 'select[name=country_id]',
'searchIdentifier' => 'input#street_1',
'nz' => [
'countryValue' => 'NZ',
'elements' => [
'address1' => 'input#street_1',
'suburb' => 'input#street_2',
'city' => 'input[name=city]',
'region' => 'input[name=region]',
'postcode' => 'input[name=postcode]',
],
'regionMappings' => null,
],
'au' => [
'countryValue' => 'AU',
'elements' => [
'address1' => 'input#street_1',
'address2' => 'input#street_2',
'suburb' => 'input[name=city]',
'state' => 'select[name=region_id]',
'postcode' => 'input[name=postcode]',
],
'stateMappings' => $this->stateMappingProvider->forCountry('AU'),
],
]));
} catch (NoSuchEntityException $e) {
$this->logger->error(sprintf('Could not fetch state mappings: %s.', $e->getMessage()));
}
}
}
Of course, feel free to replace this with any logic suitable to your store.
You may even modify an existing form configuration it by interacting with the
forms
property of the event (stored as$forms
in the example above).
(These instructions assume you already have Magento and AddressFinder installed.)
- Navigate to your Docker Magento image, and stop the container if it's running
- Add this line
- /[PATH TO ADDRESSFINDER MAGENTO]/addressfinder-magento/view/frontend:/var/www/html/vendor/addressfinder/module-magento2/view/frontend
into the docker-compose.yml file, under web volumes. This will add the frontend folder from your addressfinder-magento project into the addressfinder extension folder inside your docker container. You can find the path by navigating to the addressfinder magento folder and typing the commandpwd
For example:
version: '3.0'
services:
web:
image: alexcheng/magento2:2.2
volumes:
- web-data-test:/var/www/html
- /Users/katenorquay/addressfinder/addressfinder-magento/view/frontend:/var/www/html/vendor/addressfinder/module-magento2/view/frontend
If you want to change the Magento files, as well as the javascript, you can use - /Users/katenorquay/addressfinder/addressfinder-magento:/var/www/html/vendor/addressfinder/module-magento2
- Start docker:
docker-compose up
- Bash into the docker container:
docker-compose exec web bash
- Clear the cache, compile and deploy static content:
cd /var/www/html/bin && ./magento cache:clean && ./magento cache:flush && ./magento setup:upgrade && ./magento setup:di:compile && ./magento setup:static-content:deploy -f en_GB en_US
- Set permissions:
cd .. && chmod 0777 -R var/cache
- Now we create a symlink between the addressfinder extension, and Magento's static content. This means that we don't have to recompile the
static content everytime we make a change. First remove the
js
folder from the static content file so we can start fresh:rm -rf /var/www/html/pub/static/frontend/Magento/luma/en_GB/AddressFinder_AddressFinder/js
- Create the symlink:
ln -s /var/www/html/vendor/addressfinder/module-magento2/view/frontend/web/js /var/www/html/pub/static/frontend/Magento/luma/en_GB/AddressFinder_AddressFinder/js
- Build your js files to add them to the static folder:
npm run watch
. Any further changes you make to theview/frontend/web/js/source/
folder will be watched and recompiled by webpack.
The Magento plugin is deployed in two ways - through Composer and through the Magento MarketPlace. For both, create a release and update the version number in all the necessary files:
composer.json
module.xml
package.json
andpackage-lock.json
magento-plugin.js
Add an entry to CHANGELOG.md, describing the change
run npm run build
to compile the JavaScript.
For a composer deploy, simply push a new git tag to the master branch, after you have merged your changes. This tag will be picked up and deployed automatically.
git tag 1.1.3
git push --tags origin master
For a Magento Marketplace deploy you need to create a zip package for distribution. Run bash package.sh
. You will be prompted to enter the version
number of your new release. Once you enter it, a file named something like 'addressfinder_addressfinder-1.1.5.zip' will be created in this directory.
This file can be uploaded to the Magento Marketplace by Matt, who will add all the necessary release information.
You may run into permissions issues. You can give read/write permissions for all files using: chmod 0777 -R .
If you are debugging a customer site, you can type window.addressfinderDebugMode()
into the javascript console. This will reinitialise the widget, with the debug flag set to true, so you can see console logs from the addressfinder-webpage-tools npm package. This works in all modern browsers, and IE11.