-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7a16b8b
commit 3518498
Showing
14 changed files
with
126 additions
and
207 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,5 +5,4 @@ | |
|
||
// Avoid creating global variables | ||
call_user_func(function () { | ||
|
||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
/* global document */ | ||
/* eslint-disable */ | ||
import Config from 'lib/Config'; | ||
import registerReducers from './registerReducers'; | ||
import registerComponents from './registerComponents'; | ||
import registerQueries from './registerQueries'; | ||
|
||
document.addEventListener('DOMContentLoaded', () => { | ||
registerComponents(); | ||
|
||
registerQueries(); | ||
|
||
registerReducers(); | ||
}); |
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<?php | ||
|
||
namespace SilverStripe\LinkField\Controllers; | ||
|
||
use SilverStripe\Control\Controller; | ||
use SilverStripe\Control\HTTPResponse; | ||
use SilverStripe\Control\HTTPResponse_Exception; | ||
use SilverStripe\LinkField\Type\Registry; | ||
|
||
/** | ||
* Endpoint for /admin/linkfield/<action> | ||
* | ||
* Routing to this controller is done via Extensions/LeftAndMain.php in the linkfield() method | ||
*/ | ||
class LinkFieldController extends Controller | ||
{ | ||
private static array $allowed_actions = [ | ||
'description', | ||
'types', | ||
]; | ||
|
||
/** | ||
* Used for requests to /admin/linkfield/description?data={json} | ||
*/ | ||
public function description(): HTTPResponse | ||
{ | ||
/** @var HTTPRequest $request */ | ||
$request = $this->getOwner()->getRequest(); | ||
$jsonStr = $request->getVar('data'); | ||
// data will be an empty array if there is no existing link | ||
$data = json_decode($jsonStr, true); | ||
$description = ''; | ||
if (json_last_error() !== JSON_ERROR_NONE) { | ||
throw new HTTPResponse_Exception('data is not a valid JSON string'); | ||
} | ||
if (array_key_exists('typeKey', $data)) { | ||
$typeKey = $data['typeKey']; | ||
/** @var Type $type */ | ||
$type = Registry::singleton()->byKey($typeKey); | ||
if (!$type) { | ||
throw new HTTPResponse_Exception('typeKey is not allowed'); | ||
} | ||
$description = $type->generateLinkDescription($data); | ||
} | ||
return $this->jsonResponse([ | ||
'description' => $description | ||
]); | ||
} | ||
|
||
/** | ||
* Used for requests to /admin/linkfield/types | ||
*/ | ||
public function types(): HTTPResponse | ||
{ | ||
$data = []; | ||
/** @var Type $type */ | ||
foreach (Registry::singleton()->list() as $key => $type) { | ||
$data[$key] = [ | ||
'key' => $key, | ||
'handlerName' => $type->LinkTypeHandlerName(), | ||
'title' => $type->LinkTypeTile() | ||
]; | ||
} | ||
return $this->jsonResponse($data); | ||
} | ||
|
||
/** | ||
* Create a JSON response to send back to the browser | ||
*/ | ||
private function jsonResponse(array $data) | ||
{ | ||
$response = $this->getOwner()->getResponse(); | ||
$jsonStr = json_encode($data, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); | ||
$response->setBody($jsonStr); | ||
$response->addHeader('Content-type', 'application/json'); | ||
return $response; | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.