From b6fea434ad2888de8dbc87d25ba0444c991d42d6 Mon Sep 17 00:00:00 2001 From: Geo Halkiadakis Date: Tue, 6 Jun 2023 18:34:51 +0300 Subject: send invitation(s) form is ready --- public/app/config/setup_application.php | 17 +- public/app/controllers/Office.php | 9 +- public/app/routes/user.php | 7 +- public/app/views/components/own_petitions.php | 2 +- public/app/views/templates/invite.php | 133 ++++++ public/app/views/user/panel.php | 55 +-- public/app/views/xx--admin/admin-menu.php | 47 -- public/app/views/xx--admin/categories.php | 91 ---- public/app/views/xx--admin/edit_lesson.php | 159 ------- public/app/views/xx--admin/edit_page.php | 139 ------ public/app/views/xx--admin/files.php | 96 ---- public/app/views/xx--admin/lessons.php | 126 ------ public/app/views/xx--admin/pages.php | 109 ----- public/app/views/xx--admin/panel.php | 4 - public/app/views/xx--admin/privileges.php | 93 ---- public/app/views/xx--admin/skeleton.php | 45 -- public/assets/css/admin.css | 124 ------ public/assets/css/class.css | 4 +- public/assets/css/main.css | 9 - public/assets/css/normalize.css | 349 --------------- public/assets/js/admin/categories.js | 288 ------------ public/assets/js/admin/edit_lesson.js | 600 ------------------------- public/assets/js/admin/edit_page.js | 382 ---------------- public/assets/js/admin/files.js | 302 ------------- public/assets/js/admin/lessons.js | 364 --------------- public/assets/js/admin/pages.js | 240 ---------- public/assets/js/admin/panel.js | 1 - public/assets/js/admin/privileges.js | 291 ------------ public/assets/js/classroom.js | 27 -- public/assets/js/edit-post.js | 612 -------------------------- public/assets/js/lesson-features.js | 218 --------- public/assets/js/manage-category.js | 287 ------------ public/assets/js/manage-posts.js | 177 -------- public/assets/js/manage-tags.js | 163 ------- 34 files changed, 157 insertions(+), 5413 deletions(-) create mode 100644 public/app/views/templates/invite.php delete mode 100644 public/app/views/xx--admin/admin-menu.php delete mode 100644 public/app/views/xx--admin/categories.php delete mode 100644 public/app/views/xx--admin/edit_lesson.php delete mode 100644 public/app/views/xx--admin/edit_page.php delete mode 100644 public/app/views/xx--admin/files.php delete mode 100644 public/app/views/xx--admin/lessons.php delete mode 100644 public/app/views/xx--admin/pages.php delete mode 100644 public/app/views/xx--admin/panel.php delete mode 100644 public/app/views/xx--admin/privileges.php delete mode 100644 public/app/views/xx--admin/skeleton.php delete mode 100644 public/assets/css/admin.css delete mode 100644 public/assets/css/main.css delete mode 100644 public/assets/css/normalize.css delete mode 100644 public/assets/js/admin/categories.js delete mode 100644 public/assets/js/admin/edit_lesson.js delete mode 100644 public/assets/js/admin/edit_page.js delete mode 100644 public/assets/js/admin/files.js delete mode 100644 public/assets/js/admin/lessons.js delete mode 100644 public/assets/js/admin/pages.js delete mode 100644 public/assets/js/admin/panel.js delete mode 100644 public/assets/js/admin/privileges.js delete mode 100644 public/assets/js/classroom.js delete mode 100644 public/assets/js/edit-post.js delete mode 100644 public/assets/js/lesson-features.js delete mode 100644 public/assets/js/manage-category.js delete mode 100644 public/assets/js/manage-posts.js delete mode 100644 public/assets/js/manage-tags.js diff --git a/public/app/config/setup_application.php b/public/app/config/setup_application.php index 2c8b756..45c6712 100644 --- a/public/app/config/setup_application.php +++ b/public/app/config/setup_application.php @@ -206,9 +206,13 @@ define('GENDERED_ARTICLE',[ // gendered (grammar) articles +## ----------------------------------------------------------------------------- +## +## t h e f o r m s +## +## ----------------------------------------------------------------------------- + -// the forms /////////////////////////////////////////////////////////////////// -// ----------------------------------------------------------------------------- // registration/activation form (from invitation) // --- @@ -295,7 +299,8 @@ define('REGISTRATION_FORM', [ ]); - +// (edit) user properties +// --- define('USER_PROPERTIES_FORM', [ 'defaults' => [ 'outer_class' => 'col-12', @@ -365,7 +370,8 @@ define('USER_PROPERTIES_FORM', [ ]); - +// (re-)set password +// --- define('SET_PASSWORD_FORM', [ 'defaults' => [ 'outer_class' => 'col-12', @@ -395,6 +401,7 @@ define('SET_PASSWORD_FORM', [ ] ]); + // Application (common request) form // --- define('APPLICATION_FORM', [ @@ -488,9 +495,9 @@ define('APPLICATION_FORM', [ ] ]); + // penalty form // --- - define('PENALTY_FORM', [ 'defaults' => [ 'outer_class' => 'col-12', diff --git a/public/app/controllers/Office.php b/public/app/controllers/Office.php index c67249a..7a542eb 100644 --- a/public/app/controllers/Office.php +++ b/public/app/controllers/Office.php @@ -23,7 +23,6 @@ class Office { ## PERMITION ## ------------------------------------------------------------------------- - /** is admin or permited * * shortcut method for checking access authorization @@ -52,7 +51,6 @@ class Office { ## SERVE FILE ## ------------------------------------------------------------------------- - /** serve file by file_path * (request is valid only for admin users) * @@ -116,7 +114,6 @@ class Office { ## secretarial support / serve forms for teachers' requests and applications ## ------------------------------------------------------------------------- - /** request any (empty/new) petition form * * The method acts as an authorization checker and internal router @@ -268,7 +265,6 @@ class Office { ## handle submits of forms ## ------------------------------------------------------------------------- - /** add_petition * * handle an add petition request (petition form is submited) @@ -309,7 +305,6 @@ class Office { ## LIST PETITIONS ## ------------------------------------------------------------------------- - public static function user_petitions() { $manager = new App_manager(); // use APP Manager @@ -326,7 +321,6 @@ class Office { } - public static function all_petitions() { if (Auth::in_admin_group()) { @@ -338,7 +332,6 @@ class Office { } - public static function petition_copy($sign) { if (Auth::in_admin_group()) { @@ -359,6 +352,7 @@ class Office { + ## TICKET METHODS (create, remove) ## tickets eliminate CSRF attacks ## ------------------------------------------------------------------------- @@ -415,7 +409,6 @@ class Office { - ## ADMIN METHODS (insert, updated etc.) ## ------------------------------------------------------------------------- diff --git a/public/app/routes/user.php b/public/app/routes/user.php index e43eaa9..67032e6 100644 --- a/public/app/routes/user.php +++ b/public/app/routes/user.php @@ -187,10 +187,15 @@ if (Auth::in_admin_group()) { Office::set_protocol(); }, 'post'); + // invite user(s) // --- -- -- - - - Route::add('/admin/invite', function() { - Render::view('admin/invite'); + $teachers = Registry::use('database')->runQuery( + "SELECT id, concat(last_name, ' ', first_name) as TeacherName + FROM user ORDER BY TeacherName", [] + ); + Render::view('templates/invite', ['teachers' => $teachers]); }); } diff --git a/public/app/views/components/own_petitions.php b/public/app/views/components/own_petitions.php index 41e59b4..c4f84fe 100644 --- a/public/app/views/components/own_petitions.php +++ b/public/app/views/components/own_petitions.php @@ -2,7 +2,7 @@
-
Διαχείριση Αιτήσεων και Δοικητικών Εγγράφων
+

Διαχείριση Αιτήσεων και Δοικητικών Εγγράφων

Επιστροφή diff --git a/public/app/views/templates/invite.php b/public/app/views/templates/invite.php new file mode 100644 index 0000000..637697f --- /dev/null +++ b/public/app/views/templates/invite.php @@ -0,0 +1,133 @@ + + + + + <?=SITE_TITLE?> - Είσοδος Χρήστη + + + + + + +
+
+ + +
+

+ Αποστολή προσκλήσεων + + + Επιστροφή + + +

+
+ +
+ +
+
+ + + +
+
+ + +
+ +
+
+ +
+
+ +
+
+ +
+ +

+ Εαν δικαιούστε αλλά δεν έχετε πρόσβαση στο site, παρακαλούμε επικοινωνήστε + με τη διεύθυνση του σχολείου προκειμένου να σας αποσταλεί σχετική πρόσκληση. +

+

+ Ο ιστότοπος χρησιμοποιεί cookies τα οποία έχουν αποκλειστικά λειτουργικό ρόλο. + Η χρήση των υπηρεσιών του site συνεπάγεται την αποδοχή διατήρησης αυτών των cookies. +

+
+ +
+
+ + + + + + + + + diff --git a/public/app/views/user/panel.php b/public/app/views/user/panel.php index 9ac7908..304237b 100644 --- a/public/app/views/user/panel.php +++ b/public/app/views/user/panel.php @@ -43,60 +43,7 @@
- - - - - - - - - + diff --git a/public/app/views/xx--admin/admin-menu.php b/public/app/views/xx--admin/admin-menu.php deleted file mode 100644 index 52e8522..0000000 --- a/public/app/views/xx--admin/admin-menu.php +++ /dev/null @@ -1,47 +0,0 @@ - 'posts', - * 'id' => 4 - * ]) - * ----------------------------------------------------------------------------- - */ - -$admin_options = [ - 'panel' => 'Διαχείριση', - 'edit_lesson' => 'Νέο Μάθημα', - 'lessons' => 'Μαθήματα', - 'categories' => 'Κεφάλαια', - 'pages' => 'Σελίδες', - 'files' => 'Αρχεία', - 'privileges' => 'Πρόσβαση', - 'users' => 'Χρήστες' -]; -?> - -
- - $label) : ?> - - - - - - - - - - - - Logout - -
\ No newline at end of file diff --git a/public/app/views/xx--admin/categories.php b/public/app/views/xx--admin/categories.php deleted file mode 100644 index 26fd5a2..0000000 --- a/public/app/views/xx--admin/categories.php +++ /dev/null @@ -1,91 +0,0 @@ - -
-
Διαχείριση Κατηγοριών
-
- - -
-
- -
-
-
- -
- - - - - - -
Κατηγορία/Κεφάλαιο
- -
- - -
-
-
- - - - - - diff --git a/public/app/views/xx--admin/edit_lesson.php b/public/app/views/xx--admin/edit_lesson.php deleted file mode 100644 index ef875b4..0000000 --- a/public/app/views/xx--admin/edit_lesson.php +++ /dev/null @@ -1,159 +0,0 @@ - - - -
-
-
- -
-
- - -
-
-
- - -
- - - - - - -
- -
- -
-
- -
- -
- -
-
- - -
- -
- -
-
- -
- -
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- -
-
- -
- -
- - - - -
    -
- -
-
- - -
- -
-
-
- - -
- -
- -
- -
-
- - -
- -
- -
- -
- -
- -
- -
- - - -
-
- - - - - diff --git a/public/app/views/xx--admin/edit_page.php b/public/app/views/xx--admin/edit_page.php deleted file mode 100644 index 46c47bc..0000000 --- a/public/app/views/xx--admin/edit_page.php +++ /dev/null @@ -1,139 +0,0 @@ - - - -
-
-
- -
-
- - -
-
-
- - -
- - - - - - -
- -
- -
-
- - -
- -
- -
-
- -
- -
- -
- -
- -
-
- -
- -
- - - - -
    -
- -
-
- - - - - -
- -
- -
- -
-
- - -
- -
- -
- -
- -
- -
- -
- - - -
-
- - - - - diff --git a/public/app/views/xx--admin/files.php b/public/app/views/xx--admin/files.php deleted file mode 100644 index c6d2771..0000000 --- a/public/app/views/xx--admin/files.php +++ /dev/null @@ -1,96 +0,0 @@ - -
-
Διαχείριση Επιπέδων Πρόσβασης
-
- -
-
- -
-
-
- -
- - - - - - - - - - -
α/αΠεριγραφήΔιαδρομήMedia-TypeΠρόσβαση
- -
- - -
-
-
- - - - - - diff --git a/public/app/views/xx--admin/lessons.php b/public/app/views/xx--admin/lessons.php deleted file mode 100644 index d1cd3ae..0000000 --- a/public/app/views/xx--admin/lessons.php +++ /dev/null @@ -1,126 +0,0 @@ - -
-
Διαχείριση Μαθημάτων
-
- - -   Νέο Μάθημα - -
-
- -
-
-
- -
- - - - - - - - - -
α/αΤίτλοςΚεφάλαιοΠρόσβαση
- -
- -
-
-
- - - - - - diff --git a/public/app/views/xx--admin/pages.php b/public/app/views/xx--admin/pages.php deleted file mode 100644 index dd8f954..0000000 --- a/public/app/views/xx--admin/pages.php +++ /dev/null @@ -1,109 +0,0 @@ - -
-
Διαχείριση Μαθημάτων
-
- - -   Νέα Σελίδα - -
-
- -
-
-
- -
- - - - - - - -
α/αΤίτλος
- -
- -
-
-
- - - - - - diff --git a/public/app/views/xx--admin/panel.php b/public/app/views/xx--admin/panel.php deleted file mode 100644 index 59b8cba..0000000 --- a/public/app/views/xx--admin/panel.php +++ /dev/null @@ -1,4 +0,0 @@ -
-
-
-

Admin panel

\ No newline at end of file diff --git a/public/app/views/xx--admin/privileges.php b/public/app/views/xx--admin/privileges.php deleted file mode 100644 index 587c363..0000000 --- a/public/app/views/xx--admin/privileges.php +++ /dev/null @@ -1,93 +0,0 @@ - -
-
Διαχείριση Επιπέδων Πρόσβασης
-
- - -
-
- -
-
-
- -
- - - - - - - - -
ΚωδικόςΕπίπεδο ΠρόσβασηςΠεριλαμβάνει
- -
- - -
-
-
- - - - - - diff --git a/public/app/views/xx--admin/skeleton.php b/public/app/views/xx--admin/skeleton.php deleted file mode 100644 index 927bd2d..0000000 --- a/public/app/views/xx--admin/skeleton.php +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - Classroom - <?=$title?> - - true] - ); - ?> - - - - - -
- - $action, - 'id' => $id - ]); - - // render main content - //////////////////////////////////////////////////////////////////// - Render::view("admin/{$action}",[ 'id' => $id ]); //////////////// - ?> -
- - - - - - - diff --git a/public/assets/css/admin.css b/public/assets/css/admin.css deleted file mode 100644 index 58fcc45..0000000 --- a/public/assets/css/admin.css +++ /dev/null @@ -1,124 +0,0 @@ -:root { - --class-btn-blue: #337ab7; - --class-btn-cyan: #5bc0de; - --class-btn-grey: #c9c9c9; - --class-btn-grey-light: #c9c9c999; -} - -.office .manage { - width: 100%; - max-width: 1600px; - margin: 0 auto 2em; -} -.office .manage.maximized { max-width: 1960px; } -.office .manage.minimized { max-width: 960px; } -.office .manage.edit-post { max-width: 1420px; } - -.office .edit-post textarea[name=intro] { height: 12vh; } -.office .edit-post textarea[name=body] { - height: calc(100vh - 492px); - min-height:320px; - font-family: Consolas, 'Ubuntu Mono','Courier New', Courier, monospace; - color: #333; -} - -.office .edit-post .post-media button.over-bar { margin: -26px 0 0 0; } -.office .edit-post .post-media ul { - border: 1px solid #ccc; - border-radius: 4px; - padding: 6px; -} - -.office .edit-post .post-media ul li { - border-bottom: 1px solid #ddd; - list-style-type: none; - padding: 3px 6px; - - display: flex; - justify-content: space-between; - align-items: center; -} -.office .edit-post .post-media ul li:last-child { border-bottom: none ;} -.office .edit-post .post-media ul li:hover { background: #eee; } - -.office .manage h2 { - font-size: 20px; - color: #445; - margin: 20px 0; -} - -.office .manage.edit-post textarea { width: 100% !important;} -.office .manage.edit-post .select2-selection { min-height: 34px; } - -.office .manage.edit-post select#status.published { - background-color: #5cb85c; - border-color: #4cae4c; - color: #fff; - text-align: center; -} -.office .manage.edit-post select#status option { - background: #fff; - color: #333; -} - -/* --- optional fields: defaut=hide --- */ - -.office .edit-post .optional label { - margin-bottom: 1em; - padding-bottom: .5em; - border-bottom: 1px solid var(--class-btn-grey-light) -} -.office .edit-post .optional label.show { - margin-bottom: unset; - border: none; -} - - -.office .edit-post .optional label:hover { - cursor: pointer; - color: var(--class-btn-blue); -} -.office .edit-post .optional label::after { float: right; content: "+"; } -.office .edit-post .optional label.show::after { content: "–"; } -.office .edit-post .optional label + div { display: none; } -.office .edit-post .optional label.show + div { display: block; } - - -.alert.alert-info.title-bar { min-height: 52px; margin-top: 20px; } -.alert.alert-info.title-bar button { margin-left: 8px; } - -.office .title-bar { - display: flex; - justify-content: space-between; - align-items: center; - padding: 8px 8px 8px 16px; -} - -.office .action-btn button { float: right; } - -.office .top-bar { padding: 4px 0; } - -.office .top-bar .breadcrumb .btn { - margin-left: 0; - margin-right: 8px; - border-radius: 3px; - color: var(--class-btn-blue); -} - -.office .top-bar .btn:hover { - background-color: var(--class-btn-grey-light); -} -.office .top-bar .btn.selected { - color: #fff; - background-color: var(--class-btn-blue); -} - - -/* --- dataTables --- */ - -.office .manage .dataTable tbody tr:hover { background: #f8f8f8; } -.office .manage .dataTable .dt-actions { width: 48px; text-align: right } - -/* --- unpublished posts -- */ -.office .manage .dataTable .fa-eye-slash { color: #999; } - diff --git a/public/assets/css/class.css b/public/assets/css/class.css index d1e7715..6e44227 100644 --- a/public/assets/css/class.css +++ b/public/assets/css/class.css @@ -201,4 +201,6 @@ html, body { } .image-credits a:hover { color: var(--img-credit-hover-color); } -.manage .table tbody tr:hover { background: #eeea; } \ No newline at end of file +.manage .table tbody tr:hover { background: #eeea; } + +.select2-results__option--selected { display: none; } \ No newline at end of file diff --git a/public/assets/css/main.css b/public/assets/css/main.css deleted file mode 100644 index 016e0ab..0000000 --- a/public/assets/css/main.css +++ /dev/null @@ -1,9 +0,0 @@ -:root { - - --wrapperXXS: 816px; - --wrapperXS: 984px; - --wrapperS: 1142px; - --wrapper: 1240px; - --wrapperL: 1514px; - --wrapperFull: 1920px; -} \ No newline at end of file diff --git a/public/assets/css/normalize.css b/public/assets/css/normalize.css deleted file mode 100644 index 192eb9c..0000000 --- a/public/assets/css/normalize.css +++ /dev/null @@ -1,349 +0,0 @@ -/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ - -/* Document - ========================================================================== */ - -/** - * 1. Correct the line height in all browsers. - * 2. Prevent adjustments of font size after orientation changes in iOS. - */ - -html { - line-height: 1.15; /* 1 */ - -webkit-text-size-adjust: 100%; /* 2 */ -} - -/* Sections - ========================================================================== */ - -/** - * Remove the margin in all browsers. - */ - -body { - margin: 0; -} - -/** - * Render the `main` element consistently in IE. - */ - -main { - display: block; -} - -/** - * Correct the font size and margin on `h1` elements within `section` and - * `article` contexts in Chrome, Firefox, and Safari. - */ - -h1 { - font-size: 2em; - margin: 0.67em 0; -} - -/* Grouping content - ========================================================================== */ - -/** - * 1. Add the correct box sizing in Firefox. - * 2. Show the overflow in Edge and IE. - */ - -hr { - box-sizing: content-box; /* 1 */ - height: 0; /* 1 */ - overflow: visible; /* 2 */ -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -pre { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/* Text-level semantics - ========================================================================== */ - -/** - * Remove the gray background on active links in IE 10. - */ - -a { - background-color: transparent; -} - -/** - * 1. Remove the bottom border in Chrome 57- - * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. - */ - -abbr[title] { - border-bottom: none; /* 1 */ - text-decoration: underline; /* 2 */ - text-decoration: underline dotted; /* 2 */ -} - -/** - * Add the correct font weight in Chrome, Edge, and Safari. - */ - -b, -strong { - font-weight: bolder; -} - -/** - * 1. Correct the inheritance and scaling of font size in all browsers. - * 2. Correct the odd `em` font sizing in all browsers. - */ - -code, -kbd, -samp { - font-family: monospace, monospace; /* 1 */ - font-size: 1em; /* 2 */ -} - -/** - * Add the correct font size in all browsers. - */ - -small { - font-size: 80%; -} - -/** - * Prevent `sub` and `sup` elements from affecting the line height in - * all browsers. - */ - -sub, -sup { - font-size: 75%; - line-height: 0; - position: relative; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -/* Embedded content - ========================================================================== */ - -/** - * Remove the border on images inside links in IE 10. - */ - -img { - border-style: none; -} - -/* Forms - ========================================================================== */ - -/** - * 1. Change the font styles in all browsers. - * 2. Remove the margin in Firefox and Safari. - */ - -button, -input, -optgroup, -select, -textarea { - font-family: inherit; /* 1 */ - font-size: 100%; /* 1 */ - line-height: 1.15; /* 1 */ - margin: 0; /* 2 */ -} - -/** - * Show the overflow in IE. - * 1. Show the overflow in Edge. - */ - -button, -input { /* 1 */ - overflow: visible; -} - -/** - * Remove the inheritance of text transform in Edge, Firefox, and IE. - * 1. Remove the inheritance of text transform in Firefox. - */ - -button, -select { /* 1 */ - text-transform: none; -} - -/** - * Correct the inability to style clickable types in iOS and Safari. - */ - -button, -[type="button"], -[type="reset"], -[type="submit"] { - -webkit-appearance: button; -} - -/** - * Remove the inner border and padding in Firefox. - */ - -button::-moz-focus-inner, -[type="button"]::-moz-focus-inner, -[type="reset"]::-moz-focus-inner, -[type="submit"]::-moz-focus-inner { - border-style: none; - padding: 0; -} - -/** - * Restore the focus styles unset by the previous rule. - */ - -button:-moz-focusring, -[type="button"]:-moz-focusring, -[type="reset"]:-moz-focusring, -[type="submit"]:-moz-focusring { - outline: 1px dotted ButtonText; -} - -/** - * Correct the padding in Firefox. - */ - -fieldset { - padding: 0.35em 0.75em 0.625em; -} - -/** - * 1. Correct the text wrapping in Edge and IE. - * 2. Correct the color inheritance from `fieldset` elements in IE. - * 3. Remove the padding so developers are not caught out when they zero out - * `fieldset` elements in all browsers. - */ - -legend { - box-sizing: border-box; /* 1 */ - color: inherit; /* 2 */ - display: table; /* 1 */ - max-width: 100%; /* 1 */ - padding: 0; /* 3 */ - white-space: normal; /* 1 */ -} - -/** - * Add the correct vertical alignment in Chrome, Firefox, and Opera. - */ - -progress { - vertical-align: baseline; -} - -/** - * Remove the default vertical scrollbar in IE 10+. - */ - -textarea { - overflow: auto; -} - -/** - * 1. Add the correct box sizing in IE 10. - * 2. Remove the padding in IE 10. - */ - -[type="checkbox"], -[type="radio"] { - box-sizing: border-box; /* 1 */ - padding: 0; /* 2 */ -} - -/** - * Correct the cursor style of increment and decrement buttons in Chrome. - */ - -[type="number"]::-webkit-inner-spin-button, -[type="number"]::-webkit-outer-spin-button { - height: auto; -} - -/** - * 1. Correct the odd appearance in Chrome and Safari. - * 2. Correct the outline style in Safari. - */ - -[type="search"] { - -webkit-appearance: textfield; /* 1 */ - outline-offset: -2px; /* 2 */ -} - -/** - * Remove the inner padding in Chrome and Safari on macOS. - */ - -[type="search"]::-webkit-search-decoration { - -webkit-appearance: none; -} - -/** - * 1. Correct the inability to style clickable types in iOS and Safari. - * 2. Change font properties to `inherit` in Safari. - */ - -::-webkit-file-upload-button { - -webkit-appearance: button; /* 1 */ - font: inherit; /* 2 */ -} - -/* Interactive - ========================================================================== */ - -/* - * Add the correct display in Edge, IE 10+, and Firefox. - */ - -details { - display: block; -} - -/* - * Add the correct display in all browsers. - */ - -summary { - display: list-item; -} - -/* Misc - ========================================================================== */ - -/** - * Add the correct display in IE 10+. - */ - -template { - display: none; -} - -/** - * Add the correct display in IE 10. - */ - -[hidden] { - display: none; -} diff --git a/public/assets/js/admin/categories.js b/public/assets/js/admin/categories.js deleted file mode 100644 index e4d2955..0000000 --- a/public/assets/js/admin/categories.js +++ /dev/null @@ -1,288 +0,0 @@ -// Globals -// ----------------------------------------------------------------------------- -var categories = []; -var table; - - - -// Supplamentary functions -// ----------------------------------------------------------------------------- - -// array.indexOf polyfill -// --- -- -- - - - -if (!Array.prototype.indexOf) -{ - Array.prototype.indexOf = function(elt /*, from*/) - { - var len = this.length >>> 0; - - var from = Number(arguments[1]) || 0; - from = (from < 0) - ? Math.ceil(from) - : Math.floor(from); - if (from < 0) - from += len; - - for (; from < len; from++) - { - if (from in this && - this[from] === elt) - return from; - } - return -1; - }; -} - - -// function for sorting an array by 'breadcrumb' attribute -// --- -- -- - - - -function compare_breadcrumb (a,b) { - if ( a.breadcrumb < b.breadcrumb ) { return -1; } - if ( a.breadcrumb > b.breadcrumb ) { return 1; } - return 0; -} - -// return category record by category-id -// --- -- -- - - - -function category_record(id) { - var record = 0; - categories.forEach(el => { if (el.id == id) record = el; }); - - return record; -} - - -// return children of parent -// --- -- -- - - - -function childs_of_parents(list) { - // if 'list' is integer then make it an one-item list - parents = (Number.isInteger(list)) ? [ list ] : list; - - var childs = []; - - if (parents.length == 0) { return []; } - - parents.forEach( pid => { - categories.forEach( el => { if (el.parent == pid) childs.push(el.id)}); - }); - - var grandchilds = childs_of_parents(childs); - - return childs.concat(grandchilds); -} - - -// create actions html (edit and delete buttons) -// --- -- -- - - - -function create_actions_html(id) { - - var del, edit; - - del = ""; - - edit = [ - '' - ].join('\n'); - - return edit +' '+ del; -} - - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - - /** init selec2 element (used to specify parent-category) - * --- -- -- - - - - */ - $("#parent_id").select2({ - placeholder: 'Γονική Κατηγορία', - dropdownParent: $('#manageCategory'), - width: '100%', - // dropdownParent: "#manageCategory" // ref: https://github.com/select2/select2-bootstrap-theme/issues/41 - }); - - - /** init_table - * --- -- -- - - - - * get categories - * constuct categories array - * render dataTable - */ - function init_table() { - - // get all categories from server (ajax) - $.getJSON( "/admin/api/categories") - .done(function( json ) { - // then ... - - // reset categories - categories.length = 0; - - // construct (new) categories data - Object.keys(json).forEach( key => { - el = json[key]; - categories.push({ - id: parseInt(el.rec.id), - label: el.rec.label, - breadcrumb: el.breadcrumb.replaceAll('\t', ' / '), - parent: parseInt(el.rec.parent), - actions: create_actions_html(el.rec.id) - }); - }); - - // sort by breadcrumb - categories.sort( compare_breadcrumb ); - - // destroy previous datatable table instances - $('#dt-categories').dataTable().fnClearTable(); - $('#dt-categories').dataTable().fnDestroy(); - - // (re-)create categories datatable - table = $('#dt-categories').DataTable({ - language: { url: '/libs/DataTables/localization/Greek.json' }, - data: categories, - ordering: false, - columns: [ - { data: 'breadcrumb' }, - { data: 'actions' } - ] - }); - - }) - .fail(function( jqxhr, textStatus, error ) { - console.log( "Request Failed (" + error +")" ); - }); - - } - init_table(); // init table on first run - - - - /** When modal show-up - * ------------------------------------------------------------------------- - * ... prepare the manage-category form - * ... update select2 with possible parents - */ - $('#manageCategory').on('show.bs.modal', event => { - var button = $(event.relatedTarget); // Button that triggered the modal - var id = parseInt( button.data('id') ); // category_id from data-id - // var modal = $(this); // modal object - - // update modal literature - // --- - $('#manageCategory .modal-title').html( // modal title - (id) ? 'Ενημέρωση Κατηγορίας' : 'Δημιουργία Κατηγορίας' - ); - $('#manageCategory form input[name=id]').val( id ); // category id (hidden) - $('#manageCategory form input[name=label]').val( // category label - (id) ? category_record(id).label : "" - ); - prepare_parents_element(id); // prepare - * -> choose selected parent - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(parents, selected) { - // sort parents by breadcrumb - parents.sort( compare_breadcrumb ); - - // remove any olded options from select2 - $('#parent_id option').each(function() { $(this).remove(); }); - - // first option is the root category - $('#parent_id').append('') - - // add all other parent options - parents.forEach( i => { - $('#parent_id').append(``); - }); - - if (selected == -1) { // new category; remove any parent pre-selection - $('#parent_id').val(null).trigger('change'); - - } else { // category exists; choose selected parent - $('#parent_id').val(selected).trigger('change'); - } - } - - - - - // When form is submited - // ------------------------------------------------------------------------- - - $('#manageCategory form').submit( event => { - event.preventDefault(); - - // prepare data to POST - var data = { - id: parseInt($('#manageCategory form input[name=id]').val()), - label: $('#manageCategory form input[name=label]').val(), - parent_id: parseInt($('#parent_id').select2('data')[0].id) - }; - - // select action url (add or update) - var request = '/admin/api/categories/' + ((data.id == 0) ? 'add' : 'update'); - - // send POST request - $.post(request, data) - .done(function( data ) { - - $('#manageCategory').modal('hide'); // when done, close modal - - init_table(); // reload table of categories - }); - - }); - -}); diff --git a/public/assets/js/admin/edit_lesson.js b/public/assets/js/admin/edit_lesson.js deleted file mode 100644 index 367c3b7..0000000 --- a/public/assets/js/admin/edit_lesson.js +++ /dev/null @@ -1,600 +0,0 @@ -/** NOTE: - * depricated code for tag-system is commented-out and kept in the source-code - * as case-study; the code is operational; - */ - - -// Globals -// ----------------------------------------------------------------------------- - -// NOTE: -// Variable `entity_id` is defined before evaluating this script -// id (int) : the id of edited post (or 0 if new post) - -var lesson; - -var id = (entity_id == 0) ? false : entity_id; - -var categories = [ - // Nope! root can not be a post's category ... { id: 0 , label: 'Ρίζα (root)' } -]; - -var privileges = [ - { id: 0, label: '_Δημόσιο_'} -]; - -var files = []; // array of { id:.., title:.., type:.., path:.. } records - -// TODO: support tags -// var tags = []; // array of integers - - -// an alternative--id when a lesson_id not exists (needed for file-upload) -// ... consist of a 6-digit date string + random number up to 999 -const yymmdd = new Date().toISOString().slice(2, 10).replaceAll('-',''); -var rnd999 = Math.floor(Math.random() * 1000); -var altID = (id == 0) ? ( yymmdd +'-'+ rnd999.toString() ) : id; - - - - -// Supplamentary functions -// ----------------------------------------------------------------------------- - -// function for sorting an array by 'label' attribute -// --- -- -- - - - -function compare_label (a,b) { - if ( a.label < b.label ) { return -1; } - if ( a.label > b.label ) { return 1; } - return 0; -} - -// return course record by course-id -// --- -- -- - - - -function course_record(id) { - var record = 0; - categories.forEach(el => { if (el.id == id) record = el; }); - - return record; -} - - - - -// Modal HTML Creators -// ----------------------------------------------------------------------------- - -const modal_header = (title) => { - return [ - '' - ].join('\n'); -} - - -const upload_file_form = () => { - return [ - '
', - - '', - - '', - - '
' - ].join('\n'); -} - - -const preview_article = (title, intro, body) => { - return [ - '', - '' - ].join('\n'); -} - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - - // inti category (select2) - // ... - $("#course_id").select2({ - placeholder: 'Κεφάλαιο', - width: '100%' - }); - - // inti category (select2) - // ... - $("#privilege_id").select2({ - placeholder: 'Επίπεδο Πρόσβασης', - width: '100%' - }); - - - /** DEPRICATED: (tag system) - * - * // init tags (select2) - * // ... - * $('#tags').select2({ - * placeholder: 'Ετικέτες (tags/keywords)', - * width: '100%', - * tags: true - * }); - */ - - /** DEPRICATED: - * - * // TINY-MCE EDITOR - * init editor (tiny MCE) - * tinymce.init({ - * selector: 'form textarea[name=body]', - * language: 'el', - * menubar: true - * }); - */ - - - /** preload content - * --- -- -- - - - - * get post - * get categories - * get tags - * update content (form-elements) - */ - if (id) { // if an `id` is given, load post .. then init_form - - $.getJSON( "/admin/api/lesson/" + id ) - .done( function (data) { - lesson = data; // keep post - - // update fields' values - $('input[name=id]').val(lesson.id); // id - $('input[name=title]').val(lesson.title); // title - $('textarea[name=intro]').val(lesson.intro); // intro - $('textarea[name=body]').val(lesson.body); // body - $('select[name=status]').val( - (lesson.status == 0) ? '0' : "one" - ).trigger('change'); - // $('input[name=status]').prop( // status - // 'checked', - // ((lesson.status==1)? true : false)) - // .trigger('change'); - - // $('#post-info').html('Δημιουργία: '+post.creation_date+'
Τελευταία Ενημέρωση: '+ post.update_date); - - // parse media files; then draw - if (lesson.medias_json != null) { - files = JSON.parse(lesson.medias_json); - } - draw_files_list(); // then draw the files list - - init_form_values(); // init all (other) values - }); - - } else { // else ... just init_form - init_form_values(); - } - - - - /** - * load categories and tags; - * if not a new post (id!=0) update form elemnts with post's values - */ - function init_form_values() { - - $.when( // when loaded posts and categories - - $.getJSON( "/admin/api/categories" ), - - $.getJSON( "/admin/api/privileges" ) - - ).done( function( categories_response, privileges_response ) { - - // construct categories data - // --- - Object.keys(categories_response[0]).forEach( key => { - cat = categories_response[0][key]; - categories.push({ - id: cat.rec.id, - label: cat.breadcrumb.replaceAll('\t', ' / ') - }); - }); - categories.sort( compare_label ); // sort categories by breadcrumb - - /** DEPRICATED: (tag system) - * - * // construct tags data - * // --- - * Object.keys(tags_response[0]).forEach( key => { - * tag = tags_response[0][key]; - * tags.push({ - * id: tag.id, - * label: tag.name - * }); - * }); - */ - - // construct provileges data - // --- - Object.keys(privileges_response[0]).forEach( key => { - priv = privileges_response[0][key]; - privileges.push({ - id: priv.id, - label: priv.label - }); - }); - privileges.sort( compare_label ); // sort categories by breadcrumb - - // pass categories and tags options onto select2 elements - // --- -- -- - - - - if (id == 0) { - set_parent_options( $('#course_id'), categories ); - set_parent_options( $('#privilege_id'), privileges ); - - } else { - // setup category_id options; select post's chosen category-id - set_parent_options( $('#course_id'), categories, lesson.course_id ); - - /*** DEPRICATED: (tag system) - * - * // parse selected tags - * // --- - * var selected_tag_ids = []; - * if (post.tags_json != null) { - * var selected_tags = JSON.parse(post.tags_json); - * selected_tags.forEach( itag => { selected_tag_ids.push(itag.id); }) - * } - */ - - // setup tags options; select post's chosen tags - set_parent_options( $('#privilege_id'), privileges, lesson.privilege_id ); - - // DEPRICATED: ALSO: if tags selectd, show tags field - // if (selected_tag_ids.length != 0) { $('.optional label[for=tags]').addClass('show'); } - } - - }); - - } - - - /** set_parent_options() - * - * -> create options for parents should be a select2 control - * - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(selector, list, selected_value = false) { - - list.forEach( li => { // attach options into ', - - '
', - '', - '', - '
', - - '
', - '', - '', - '
', - - '
', - - '', - - '' - ].join('\n'); -} - - -const preview_article = (title, body) => { - return [ - '', - '' - ].join('\n'); -} - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - /** preload content - * --- -- -- - - - - * get page - * update content (form-elements) - */ - if (id) { // if an `id` is given, load post .. then init_form - - $.getJSON( "/admin/api/page/" + id ) - .done( function (data) { - page = data; // keep post - - // update fields' values - $('input[name=id]').val(page.id); // id - $('input[name=title]').val(page.title); // title - $('textarea[name=body]').val(page.body); // body - $('select[name=status]').val( - (page.status == 0) ? '0' : "one" - ).trigger('change'); - - // $('#post-info').html('Δημιουργία: '+post.creation_date+'
Τελευταία Ενημέρωση: '+ post.update_date); - - // parse media files; then draw - if (page.medias_json != null) { - files = JSON.parse(page.medias_json); - } - draw_files_list(); // then draw the files list - - }); - - } - - - /** draw_files_list - * --- -- -- - - - - */ - function draw_files_list() { - var li_list = []; - var ref_icon, ref_class; - - files.forEach( item => { - var copy = [ // copy button - '' - ].join(''); - - var del = [ // delete button - '' - ].join(''); - var option = [ // li html - '
  • ', - '
    ' + item.label + '
    ', - '
    ', - copy, ' ', del, - '
    ', - '
  • ' - ].join(''); - li_list.push(option); // push to li_list - }); - $('#files_list').html( li_list.join('\n') ); - - } - - - - // When form's action-buttons are clicked - // ------------------------------------------------------------------------- - - - // form submit - // --- -- -- - - - - $('.edit-page form').submit( event => { - event.preventDefault(); - - var attachments = []; - // attachments (array) of "`media_id`;`reference`" strings - files.forEach( f => { attachments.push( f.id ) }); - - // prepare data to POST - // --- - var data = { - id: parseInt($('.edit-page form input[name=id]').val()), - title: $('.edit-page form input[name=title]').val(), - body: $('.edit-page form textarea[name=body]').val(), - status: ( ($('select[name=status]').val() == "0") ? 0 : 1 ), - media: attachments - }; - - // select action url (add or update) - // --- - var request = '/admin/api/page/' + ((data.id == 0) ? 'add' : 'update'); - - // send POST (ajax) request - $.post(request, data) - .done(function( data ) { - console.log(data); - window.location.href = '/admin/pages'; // seems ok; bach to articles - }); - - }); - - - // go-back (to pages) - // --- -- -- - - - - $('#go-back').click( event => { - if (confirm('Θέλετε να ακυρώσετε τις όποιες αλλαγές και να φύγτε από τη σελίδα;')) { - window.location.href = '/admin/pages'; - } - }); - - - // copy url button - // --- -- -- - - - - $('.admin-container').on('click', 'button.js-copy', function (e) { - var copytext = ''; // default: copy nothing - - if ($(this).data('id') !== undefined) { - copytext = window.location.origin +'/page/' + $(this).data('id'); - } - - if ($(this).data('url') !== undefined) { - copytext = window.location.origin + '/serve/file/' + $(this).data('url') + '?type=' + $(this).data('type'); - } - - navigator.clipboard - .writeText(copytext) - .then(() => { // notify the copy event - $(this).addClass('copied'); - setTimeout( () => { $(this).removeClass('copied'); }, 700); - console.log(copytext, ' copied!'); - }) - .catch(() => { - console.log("error on coping text"); - }); - }); - - - - // delete (remove) file button - // --- -- -- - - - - $('.admin-container').on('click', 'button.js-delete', function (e) { - console.log('delete!'); - var media_id = $(this).data('id'); - - // remove from files array the one with id == media_id - // --- - var temp = []; - files.forEach( it => { if (it.id != media_id) temp.push(it); }); - - files = temp; // re-define files - draw_files_list(); // then re-draw files list - }); - - - - /** When modal show-up - * ------------------------------------------------------------------------- - * ... prepare the manage-category form - * ... update select2 with possible parents - */ - $('#editorModal').on('show.bs.modal', event => { - let button = $(event.relatedTarget); // Button that triggered the modal - let action = button.data('action'); // action - // var modal = $(this); // modal object - - // update modal literature - - switch (action) { - case 'upload_file': - $("#editorModal .modal-content").html( - modal_header('Εισαγωγή Αρχείου') + upload_file_form() - ); - break; - - case 'preview': - let preview = preview_article( - $('.edit-page form input[name=title]').val(), - $('.edit-page form textarea[name=body]').val() - ); - $("#editorModal .modal-content").html( modal_header('Προεπισκόπηση') + preview); - break; - - default: - // do nothing - } - - }); - - - - /** submit upload file event - * ------------------------------------------------------------------------- - */ - $('#editorModal').on('submit', 'form[name=upload_file_form]', function (event) { - event.preventDefault(); - - // create the FormData object - // --- -- -- - - - - var fd = new FormData(document.getElementById('file_upload_form')); - - // post the form (via ajax) - $.ajax({ - url: '/admin/api/file_upload', - type: 'POST', - data: fd, - contentType: false, - processData: false, - dataType: 'json', - success: function(response) { // on success - - if (response.success) { - files.push({ // ... update files array - id: response.id, - label: response.title, - path: response.path, - type: response.type - }); - draw_files_list(); - - $('#editorModal').modal('hide'); - - } else { - console.log('File not uploaded'); - } - } - }); - }); - - - // TODO: - // disable links while previewing the article - // OR add a target="_blank" - - -}); - diff --git a/public/assets/js/admin/files.js b/public/assets/js/admin/files.js deleted file mode 100644 index e100b30..0000000 --- a/public/assets/js/admin/files.js +++ /dev/null @@ -1,302 +0,0 @@ -// Globals -// ----------------------------------------------------------------------------- -var privileges = [ { id: 0, label: 'Δημόσιο' } ]; -var files = []; -var table; - - - -// Supplamentary functions -// ----------------------------------------------------------------------------- - -// array.indexOf polyfill -// --- -- -- - - - -if (!Array.prototype.indexOf) -{ - Array.prototype.indexOf = function(elt /*, from*/) - { - var len = this.length >>> 0; - - var from = Number(arguments[1]) || 0; - from = (from < 0) - ? Math.ceil(from) - : Math.floor(from); - if (from < 0) - from += len; - - for (; from < len; from++) - { - if (from in this && - this[from] === elt) - return from; - } - return -1; - }; -} - - -// function for sorting an array by 'label' attribute -// --- -- -- - - - -function compare_label (a,b) { - if ( a.label < b.label ) { return -1; } - if ( a.label > b.label ) { return 1; } - return 0; -} - - -// return file record by file-id -// --- -- -- - - - -function privilege_record(id) { - var record = 0; - files.forEach(el => { if (el.id == id) record = el; }); - return record; -} - - -/** privilege(id) - * label of privilege with - * @param id (int) - */ -function privilege_(id) { - let reply = false; - privileges.forEach( pri => { if (pri.id == id) reply = pri.label; }); - return reply; -} - - -// create actions html (edit and delete buttons) -// --- -- -- - - - -function create_actions_html(id) { - - var del, edit; - - del = ""; - - edit = [ - '' - ].join('\n'); - - return edit +' '+ del; -} - - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - - /** init selec2 element (used to specify parent-category) - * --- -- -- - - - - */ - $("#privilege_id").select2({ - placeholder: 'Επίπεδο πρόσβασης', - dropdownParent: $('#manageFiles'), - width: '100%', - }); - - - /** init_table - * --- -- -- - - - - * get categories - * constuct categories array - * render dataTable - */ - function init_table() { - - // get all categories from server (ajax) - $.getJSON( "/admin/api/files") - .done(function( json ) { - // then ... - - // reset categories - files.length = 0; - - // construct (new) categories data - Object.keys(json).forEach( key => { - el = json[key]; - files.push({ - id: el.id, - label: el.label, - path: el.path, - type: el.type, - privilege_id: ((el.privilege_id == null) ? 0 : el.privilege_id), - privilege: privilege_( ((el.privilege_id == null) ? 0 : el.privilege_id) ), - actions: create_actions_html(el.id) - }); - }); - - // sort by breadcrumb - // categories.sort( compare_breadcrumb ); - - // destroy previous datatable table instances - $('#dt-files').dataTable().fnClearTable(); - $('#dt-files').dataTable().fnDestroy(); - - // (re-)create categories datatable - table = $('#dt-files').DataTable({ - language: { url: '/libs/DataTables/localization/Greek.json' }, - data: files, - ordering: false, - columns: [ - { data: 'id' }, - { data: 'label' }, - { data: 'path' }, - { data: 'type' }, - { data: 'privilege' }, - { data: 'actions' } - ] - }); - - }) - .fail(function( jqxhr, textStatus, error ) { - console.log( "Request Failed (" + error +")" ); - }); - - } - - - - $.getJSON( "/admin/api/privileges" ) - .done( function( response ) { - - // construct provileges data - // --- - response.forEach( el => { - privileges.push({ - id: el.id, - label: el.label - }); - }); - privileges.sort( compare_label ); // sort categories by breadcrumb - - init_table(); // init table on first run - }); - - - - /** When modal show-up - * ------------------------------------------------------------------------- - * ... prepare the manage-category form - * ... update select2 with possible parents - */ - $('#managePrivileges').on('show.bs.modal', event => { - var button = $(event.relatedTarget); // Button that triggered the modal - var id = parseInt( button.data('id') ); // category_id from data-id - // var modal = $(this); // modal object - - // update modal literature - // --- - $('#managePrivileges .modal-title').html( // modal title - (id) ? 'Ενημέρωση Επιπέδου Πρόσβασης' : 'Δημιουργία Επιπέδου Πρόσβασης' - ); - $('#managePrivileges form input[name=id]').val( id ); // category id (hidden) - $('#managePrivileges form input[name=label]').val( // category label - (id) ? privilege_record(id).label : "" - ); - prepare_included_element(id); // prepare - * -> choose selected parent - * @param may_included (array): array of possible included privileges - * @param selected (int): selected included privilege - */ - function set_included_options(may_included, selected) { - // sort parents by breadcrumb - // parents.sort( compare_breadcrumb ); - - // remove any olded options from select2 - $('#included_id option').each(function() { $(this).remove(); }); - - // first option is the root category - $('#included_id').append('') - - // add all other parent options - may_included.forEach( i => { - $('#included_id').append(``); - }); - - if (selected == -1) { // new category; remove any parent pre-selection - $('#included_id').val(0).trigger('change'); - - } else { // category exists; choose selected parent - $('#included_id').val(selected).trigger('change'); - } - } - - - - - // When form is submited - // ------------------------------------------------------------------------- - - $('#manageCategory form').submit( event => { - event.preventDefault(); - - // prepare data to POST - var data = { - id: parseInt($('#manageCategory form input[name=id]').val()), - label: $('#manageCategory form input[name=label]').val(), - parent_id: parseInt($('#parent_id').select2('data')[0].id) - }; - - // select action url (add or update) - var request = '/admin/api/category/' + ((data.id == 0) ? 'add' : 'update'); - - // send POST request - $.post(request, data) - .done(function( data ) { - - $('#manageCategory').modal('hide'); // when done, close modal - - init_table(); // reload table of categories - }); - - }); - -}); diff --git a/public/assets/js/admin/lessons.js b/public/assets/js/admin/lessons.js deleted file mode 100644 index 1a08875..0000000 --- a/public/assets/js/admin/lessons.js +++ /dev/null @@ -1,364 +0,0 @@ -// Globals -// ----------------------------------------------------------------------------- -var categories = []; -var privileges = [ { id: 0, label: 'Δημόσιο' } ]; -var lessons = []; -var table; - - - -// Supplamentary functions -// ----------------------------------------------------------------------------- - -// array.indexOf polyfill -// --- -- -- - - - -if (!Array.prototype.indexOf) -{ - Array.prototype.indexOf = function(elt /*, from*/) - { - var len = this.length >>> 0; - - var from = Number(arguments[1]) || 0; - from = (from < 0) - ? Math.ceil(from) - : Math.floor(from); - if (from < 0) - from += len; - - for (; from < len; from++) - { - if (from in this && - this[from] === elt) - return from; - } - return -1; - }; -} - - -// function for sorting an array by 'label' attribute -// --- -- -- - - - -function compare_label (a,b) { - if ( a.label < b.label ) { return -1; } - if ( a.label > b.label ) { return 1; } - return 0; -} - - -// function for sorting an array by 'breadcrumb' attribute -// --- -- -- - - - -function compare_breadcrumb (a,b) { - if ( a.breadcrumb < b.breadcrumb ) { return -1; } - if ( a.breadcrumb > b.breadcrumb ) { return 1; } - return 0; -} - -// return category record by category-id -// --- -- -- - - - -function lesson_record(id) { - var record = 0; - lessons.forEach(el => { if (el.id == id) record = el; }); - - return record; -} - -/** course(id) - * label of course with - * @param id (int) - */ -function course_(id) { - let reply = false; - categories.forEach( cat => { if (cat.id == id) reply = cat.label; }) - return reply; -} - -/** privilege(id) - * label of privilege with - * @param id (int) - */ -function privilege_(id) { - let reply = false; - privileges.forEach( pri => { if (pri.id == id) reply = pri.label; }); - return reply; -} - - -//// return children of parent -//// --- -- -- - - - -//function childs_of_parents(list) { -// // if 'list' is integer then make it an one-item list -// parents = (Number.isInteger(list)) ? [ list ] : list; -// -// var childs = []; -// -// if (parents.length == 0) { return []; } -// -// parents.forEach( pid => { -// categories.forEach( el => { if (el.parent == pid) childs.push(el.id)}); -// }); -// -// var grandchilds = childs_of_parents(childs); -// -// return childs.concat(grandchilds); -//} - - -// create actions html (edit and delete buttons) -// --- -- -- - - - -function create_actions_html(el) { - - var pub, del, edit; - - // preapre [show|hide]-file as reference - if (el.status == 1) { - pub = ''; - - } else { - pub = ''; - } - - del = ""; - - fast_edit = [ - '' - ].join('\n'); - - edit = [ - '', - '', - '' - ].join('\n'); - - return pub +' '+ fast_edit +' '+ edit +' '+ del; -} - - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - - // inti category (select2) - // ... - $("#privilege_id").select2({ - placeholder: 'Επίπεδο Πρόσβασης', - dropdownParent: $('#manageLessons'), - width: '100%' - }); - - /** init selec2 element (used to specify parent-category) - * --- -- -- - - - - */ - $("#course_id").select2({ - placeholder: 'Κεφάλαιο', - dropdownParent: $('#manageLessons'), - width: '100%', - }); - - - /** init_table - * --- -- -- - - - - * get categories - * constuct categories array - * render dataTable - */ - function init_table() { - - // get all categories from server (ajax) - $.getJSON( "/admin/api/lessons") - .done(function( json ) { - // then ... - - // reset categories - lessons.length = 0; - - // construct (new) categories data - Object.keys(json).forEach( key => { - el = json[key]; - lessons.push({ - id: parseInt(el.id), - title: el.title, - course_id: el.course_id, - course: course_(el.course_id), - privilege_id: el.privilege_id, - privilege: privilege_(el.privilege_id), - actions: create_actions_html(el) - }); - }); - - // sort by breadcrumb - // categories.sort( compare_breadcrumb ); - - // destroy previous datatable table instances - $('#dt-lessons').dataTable().fnClearTable(); - $('#dt-lessons').dataTable().fnDestroy(); - - // (re-)create categories datatable - table = $('#dt-lessons').DataTable({ - language: { url: '/libs/DataTables/localization/Greek.json' }, - data: lessons, - ordering: false, - columns: [ - { data: 'id' }, - { data: 'title' }, - { data: 'course' }, - { data: 'privilege' }, - { data: 'actions' } - ] - }); - - }) - .fail(function( jqxhr, textStatus, error ) { - console.log( "Request Failed (" + error +")" ); - }); - - } - - - $.when( // when loaded posts and categories - - $.getJSON( "/admin/api/categories" ), - - $.getJSON( "/admin/api/privileges" ) - - ).done( function( categories_response, privileges_response ) { - - // construct categories data - // --- - Object.keys(categories_response[0]).forEach( key => { - cat = categories_response[0][key]; - categories.push({ - id: cat.rec.id, - label: cat.breadcrumb.replaceAll('\t', ' / ') - }); - }); - categories.sort( compare_label ); // sort categories by breadcrumb - - // construct provileges data - // --- - Object.keys(privileges_response[0]).forEach( key => { - priv = privileges_response[0][key]; - privileges.push({ - id: priv.id, - label: priv.label - }); - }); - privileges.sort( compare_label ); // sort categories by breadcrumb - - set_parent_options( $('#course_id'), categories ); - set_parent_options( $('#privilege_id'), privileges ); - - init_table(); // init table on first run - }); - - - /** set_parent_options() - * - * -> create options for parents should be a select2 control - * - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(selector, list, selected_value = false) { - - list.forEach( li => { // attach options into for parents - }) - - - /** set_parent_options() - * - * -> create options for parents should be a select2 control - * - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(selector, list, selected_value = false) { - - list.forEach( li => { // attach options into for parents - }) - - - /** set_parent_options() - * - * -> create options for parents should be a select2 control - * - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(selector, list, selected_value = false) { - - list.forEach( li => { // attach options into for parents - }) - - /** prepare_included_element() - * --- - * @param id (int) : id of selected privilege - * -> Get all posible included privileges - * -> call set_included_options() to render the options - */ - function prepare_included_element(id) { - var may_included = []; - - if (id) { // get all possible parents - - // TODO: - // specify forbiden privilege IDs for being included - - // filter privileges adn prepare possible included privileges - privileges.forEach( el => { - if (id != el.id) { - may_included.push({ - id: el.id, - label: el.label - }); - } - }); - console.log(may_included); - set_included_options(may_included, privilege_record(id).included_id); - - - } else { // new record; all categories are possible parrents - privileges.forEach( el => { - may_included.push({ - id: el.id, - label: el.label, - }); - }) - set_included_options(may_included, -1); - } - } - - /** set_included_options() - * -> create options for parents ', - - '
    ', - '', - '', - '
    ', - - '
    ', - - '
    ', - '', - '', - '
    ', - - '
    ', - '', - '', - '
    ', - - '
    ', - - '', - - '', - - '' - ].join('\n'); -} - - -const preview_article = (title, intro, body) => { - return [ - '', - '' - ].join('\n'); -} - - -$(document).ready(function() { - - // When document is ready - // ------------------------------------------------------------------------- - - - // inti category (select2) - // ... - $("#category_id").select2({ - placeholder: 'Γονική Κατηγορία', - width: '100%' - }); - - - // init tags (select2) - // ... - $('#tags').select2({ - placeholder: 'Ετικέτες (tags/keywords)', - width: '100%', - tags: true - }); - - - // init editor (tiny MCE) - // tinymce.init({ - // selector: 'form textarea[name=body]', - // language: 'el', - // menubar: true - // }); - // --- -- -- - - - - - - /** preload content - * --- -- -- - - - - * get post - * get categories - * get tags - * update content (form-elements) - */ - if (id) { // if an `id` is given, load post .. then init_form - - $.getJSON( "/wiki/ajax", { action: "get_post", id: id } ) - .done( function (data) { - post = data; // keep post - - // update fields' values - $('input[name=id]').val(post.id); // id - $('input[name=title]').val(post.title); // title - $('textarea[name=intro]').val(post.intro); // intro - $('textarea[name=body]').val(post.body); // body - $('input[name=status]').prop( // status - 'checked', - ((post.status==1)? true : false)) - .trigger('change'); - - $('#post-info').html('Δημιουργία: '+post.creation_date+'
    Τελευταία Ενημέρωση: '+ post.update_date); - - $('#delete').prop( "disabled", false ); // enable delete button - - // if intro exist, show intro (optinal) field - if ((post.intro != null) && (post.intro != '')) { - $('.optional label[for=intro]').addClass('show'); // unhide section - } - - // parse media files; then draw - if (post.medias_json != null) { - files = JSON.parse(post.medias_json); - $('.optional label[for=media]').addClass('show'); // unhide section - } - draw_files_list(); // then draw the files list - - init_form_values(); // init all (other) values - }); - - } else { // else ... just init_form - $('#delete').prop( "disabled", true ); // disable delete button for new post attempt - // depricated $('select[name=status').val('0').trigger('change'); // pre-selecd unpublished - init_form_values(); - } - - - - /** - * load categories and tags; - * if not a new post (id!=0) update form elemnts with post's values - */ - function init_form_values() { - - $.when( // when loaded posts and categories - - $.getJSON( "/wiki/ajax", { action: "get_categories_array", exclude: '0' } ), - - $.getJSON( "/wiki/ajax", { action: "get_all_tags" } ) - - ).done( function( categories_response, tags_response ) { - - // construct categories data - // --- - Object.keys(categories_response[0]).forEach( key => { - cat = categories_response[0][key]; - categories.push({ - id: cat.rec.id, - label: cat.breadcrumb.replaceAll('\t', ' / ') - }); - }); - categories.sort( compare_label ); // sort categories by breadcrumb - - // construct tags data - // --- - Object.keys(tags_response[0]).forEach( key => { - tag = tags_response[0][key]; - tags.push({ - id: tag.id, - label: tag.name - }); - }); - - // pass categories and tags options onto select2 elements - // --- -- -- - - - - if (id == 0) { - set_parent_options( $('#category_id'), categories ); - set_parent_options( $('#tags'), tags ); - - } else { - // setup category_id options; select post's chosen category-id - set_parent_options( $('#category_id'), categories, post.category_id ); - - // parse selected tags - // --- - var selected_tag_ids = []; - if (post.tags_json != null) { - var selected_tags = JSON.parse(post.tags_json); - selected_tags.forEach( itag => { selected_tag_ids.push(itag.id); }) - } - // setup tags options; select post's chosen tags - set_parent_options( $('#tags'), tags, selected_tag_ids ); - - // ALSO: if tags selectd, show tags field - if (selected_tag_ids.length != 0) { $('.optional label[for=tags]').addClass('show'); } - } - - }); - - } - - - /** set_parent_options() - * - * -> create options for parents should be a select2 control - * - * @param parents (array): array of parents - * @param selected (int): selected parent - */ - function set_parent_options(selector, list, selected_value = false) { - - list.forEach( li => { // attach options into for parents - }) - - /** prepare_parents_element() - * --- - * @param id (int) : id of selected category - * -> Get all posible parents - * -> call set_parent_options() to render the options - */ - function prepare_parents_element(id) { - var parents = []; - - if (id) { // get all possible parents - - // id-category and subcategories are fobiden parents - var forbiden = childs_of_parents(id); - forbiden.push(id); - - // filter catogories adn prepare parents - categories.forEach( el => { - if (!forbiden.includes(el.id)) { - parents.push({ - id: el.id, - breadcrumb: el.breadcrumb, - }); - } - }); - set_parent_options(parents, category_record(id).parent); - - - } else { // new record; all categories are possible parrents - categories.forEach( el => { - parents.push({ - id: el.id, - breadcrumb: el.breadcrumb, - }); - }) - set_parent_options(parents, -1); - } - } - - /** set_parent_options() - * -> create options for parents for parents - }) - - - // When form is submited - // ------------------------------------------------------------------------- - - $('#manageCategory form').submit( event => { - event.preventDefault(); - - // prepare data to POST - var data = { - id: parseInt($('#manageCategory form input[name=id]').val()), - title: $('#manageCategory form input[name=title]').val(), - parent_id: parseInt($('#parent_id').select2('data')[0].id) - }; - - // select action url (add or update) - var request = '/wiki/ajax?action=' + ((data.id == 0) ? 'add_category' : 'update_category'); - - // send POST request - $.post(request, data) - .done(function( data ) { - - $('#manageCategory').modal('hide'); // when done, close modal - - init_table(); // reload table of categories - }); - - }); - -}); -- cgit v1.2.3