Switching Systems

This commit is contained in:
Brian Buller 2017-07-18 09:19:06 -05:00
parent 3f4485154e
commit 8cdb006208
2 changed files with 52 additions and 34 deletions

View File

@ -2,4 +2,3 @@
define("TITLE", "Static File Generator"); define("TITLE", "Static File Generator");
define("MD_DIR", "MarkdownFiles"); define("MD_DIR", "MarkdownFiles");
define("DEFAULT_FILE", "out.html"); define("DEFAULT_FILE", "out.html");
?>

View File

@ -38,54 +38,73 @@ function buildStaticPage() {
} }
function showAdminPage() { function showAdminPage() {
outputHTMLHeader(); $out = getHTMLHeader(TITLE)
$out = '<form action="/manager.php?f=build" method="POST">'."\n" .'<form class="pure-form" action="/manager.php?f=build" method="POST">'."\n"
.' <div>'."\n" .' <fieldset>'."\n"
.' <label for="filename">Output File:</label>'."\n" .' <div class="margin10">'."\n"
.' <input name="filename" value="worship.html" placeholder="File Name" />'."\n" .' <label for="filename">Output File:</label>'."\n"
.' </div>'."\n" .' <input name="filename" value="worship.html" placeholder="File Name" />'."\n"
.' <div>'."\n" .' <button class="pure-button pure-button-primary" type="submit">Build</button>'."\n"
.' <label for="filter">Filter</label>'."\n" .' </div>'."\n"
.' <input name="filter" value="" placeholder="Filter Files" />'."\n" .' <div class="margin10">'."\n"
.' <table>'."\n" .' <label for="filter">Filter</label>'."\n"
.' <thead><th>File</th><th></th></thead>'."\n" .' <input onkeyup="updateFilter(this.value);" name="filter" value="" placeholder="Filter Files" />'."\n"
.' <tbody>'."\n"; .' <table>'."\n"
.' <tbody>'."\n";
foreach(glob(MD_DIR.'/*.md') as $file) { foreach(glob(MD_DIR.'/*.md') as $file) {
$out.=' <tr>'."\n" $base = basename($file, '.md');
.' <td>'.basename($file, '.md').'</td><td><button onclick="addSong('.$filename.');">Add</button></td>'."\n" $out.=' <tr data-file="'.$base.'">'."\n"
.' </tr>'."\n"; .' <td>'.$base.'</td>'
.'<td><button class="pure-button pure-button-secondary" onclick="addSong('.$filename.');">Add</button></td>'."\n"
.' </tr>'."\n";
} }
$out.= ' </tbody>'."\n" $out.=' </tbody>'."\n"
.' </table>'."\n" .' </table>'."\n"
.' </div>'."\n" .' </div>'."\n"
.' <button type="submit">Build</button>'."\n" .' </fieldset>'."\n"
.'</form>'."\n" .'</form>'."\n"
.'<script>'."\n" .'<script>'."\n"
.'</script>'."\n"; .'var tablerows = document.getElementsByTagName("tr");'."\n"
outputHTMLFooter(); .'function updateFilter(flt) {'."\n"
.' flt = flt.toLowerCase();'."\n"
.' for(var i = 0; i < tablerows.length; i++) {'."\n"
.' if(tablerows[i].dataset.file.toLowerCase().startsWith(flt)) {'."\n"
.' tablerows[i].classList.remove("hidden");'."\n"
.' } else {'."\n"
.' tablerows[i].classList.add("hidden");'."\n"
.' }'."\n"
.' }'."\n"
.'}'."\n"
.'</script>'."\n"
.getHTMLFooter();
echo $out;
} }
function outputHTMLHeader($title = TITLE, $ret = false) { function getHTMLHeader($title = TITLE) {
$out = '<!DOCTYPE html>'."\n" $out = '<!DOCTYPE html>'."\n"
.'<html lang="en">'."\n" .'<html lang="en">'."\n"
.' <head>'."\n" .' <head>'."\n"
.' <title>'.$title.'</title>'."\n" .' <title>'.$title.'</title>'."\n"
.' <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">'."\n" .' <link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">'."\n"
.' <style type="text/css">'."\n"
.' body { margin: 20px; }'."\n"
.' td {'."\n"
.' padding-top: 2px;'."\n"
.' padding-bottom: 3px;'."\n"
.' }'."\n"
.' .margin10 {'."\n"
.' margin: 10px;'."\n"
.' }'."\n"
.' </style>'."\n"
.' </head>'."\n" .' </head>'."\n"
.' <body>'."\n"; .' <body>'."\n";
if($ret) { return $out;
return $out;
}
echo $out;
} }
function outputHTMLFooter($ret = false) { function getHTMLFooter() {
$out = ' </body>'."\n" $out = ' </body>'."\n"
.'</html>'."\n"; .'</html>'."\n";
if($ret) { return $out;
return $out;
}
echo $out;
} }
?> ?>