Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 1 | <template> |
Yoshie Muranaka | 74f8687 | 2020-02-10 12:28:37 -0800 | [diff] [blame] | 2 | <b-container fluid> |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 3 | <page-title /> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 4 | <b-row> |
Yoshie Muranaka | 74f8687 | 2020-02-10 12:28:37 -0800 | [diff] [blame] | 5 | <b-col xl="9" class="text-right"> |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 6 | <b-button variant="link" @click="initModalSettings"> |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 7 | {{ $t('pageLocalUserManagement.accountPolicySettings') }} |
Yoshie Muranaka | 996d2d5 | 2019-12-30 09:06:45 -0800 | [diff] [blame] | 8 | <icon-settings /> |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 9 | </b-button> |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 10 | <b-button variant="primary" @click="initModalUser(null)"> |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 11 | {{ $t('pageLocalUserManagement.addUser') }} |
Yoshie Muranaka | 996d2d5 | 2019-12-30 09:06:45 -0800 | [diff] [blame] | 12 | <icon-add /> |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 13 | </b-button> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 14 | </b-col> |
| 15 | </b-row> |
| 16 | <b-row> |
Yoshie Muranaka | 74f8687 | 2020-02-10 12:28:37 -0800 | [diff] [blame] | 17 | <b-col xl="9"> |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 18 | <table-toolbar |
| 19 | ref="toolbar" |
| 20 | :selected-items-count="selectedRows.length" |
| 21 | :actions="tableToolbarActions" |
| 22 | @clearSelected="clearSelectedRows($refs.table)" |
| 23 | @batchAction="onBatchAction" |
| 24 | /> |
| 25 | <b-table |
| 26 | ref="table" |
| 27 | selectable |
| 28 | no-select-on-click |
| 29 | :fields="fields" |
| 30 | :items="tableItems" |
| 31 | @row-selected="onRowSelected($event, tableItems.length)" |
| 32 | > |
| 33 | <!-- Checkbox column --> |
| 34 | <template v-slot:head(checkbox)> |
| 35 | <b-form-checkbox |
| 36 | v-model="tableHeaderCheckboxModel" |
| 37 | :indeterminate="tableHeaderCheckboxIndeterminate" |
| 38 | @change="onChangeHeaderCheckbox($refs.table)" |
| 39 | /> |
| 40 | </template> |
| 41 | <template v-slot:cell(checkbox)="row"> |
| 42 | <b-form-checkbox |
| 43 | v-model="row.rowSelected" |
| 44 | @change="toggleSelectRow($refs.table, row.index)" |
| 45 | /> |
| 46 | </template> |
| 47 | |
| 48 | <!-- table actions column --> |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 49 | <template v-slot:cell(actions)="{ item }"> |
| 50 | <table-row-action |
| 51 | v-for="(action, index) in item.actions" |
| 52 | :key="index" |
| 53 | :value="action.value" |
| 54 | :enabled="action.enabled" |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 55 | :title="action.title" |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 56 | @click:tableAction="onTableRowAction($event, item)" |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 57 | > |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 58 | <template v-slot:icon> |
| 59 | <icon-edit v-if="action.value === 'edit'" /> |
| 60 | <icon-trashcan v-if="action.value === 'delete'" /> |
| 61 | </template> |
| 62 | </table-row-action> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 63 | </template> |
| 64 | </b-table> |
| 65 | </b-col> |
| 66 | </b-row> |
| 67 | <b-row> |
Yoshie Muranaka | 74f8687 | 2020-02-10 12:28:37 -0800 | [diff] [blame] | 68 | <b-col xl="8"> |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 69 | <b-button v-b-toggle.collapse-role-table variant="link" class="mt-3"> |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 70 | {{ $t('pageLocalUserManagement.viewPrivilegeRoleDescriptions') }} |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 71 | <icon-chevron /> |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 72 | </b-button> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 73 | <b-collapse id="collapse-role-table" class="mt-3"> |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 74 | <table-roles /> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 75 | </b-collapse> |
| 76 | </b-col> |
| 77 | </b-row> |
| 78 | <!-- Modals --> |
Yoshie Muranaka | 1b1c100 | 2020-02-20 10:18:36 -0800 | [diff] [blame] | 79 | <modal-settings :settings="settings" @ok="saveAccountSettings" /> |
Yoshie Muranaka | 52b0223 | 2020-02-20 08:00:45 -0800 | [diff] [blame] | 80 | <modal-user |
| 81 | :user="activeUser" |
| 82 | :password-requirements="passwordRequirements" |
| 83 | @ok="saveUser" |
| 84 | /> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 85 | </b-container> |
Derick Montague | a2988f4 | 2020-01-17 13:46:30 -0600 | [diff] [blame] | 86 | </template> |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 87 | |
| 88 | <script> |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 89 | import IconTrashcan from '@carbon/icons-vue/es/trash-can/20'; |
| 90 | import IconEdit from '@carbon/icons-vue/es/edit/20'; |
| 91 | import IconAdd from '@carbon/icons-vue/es/add--alt/20'; |
| 92 | import IconSettings from '@carbon/icons-vue/es/settings/20'; |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 93 | import IconChevron from '@carbon/icons-vue/es/chevron--up/20'; |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 94 | |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 95 | import ModalUser from './ModalUser'; |
| 96 | import ModalSettings from './ModalSettings'; |
| 97 | import PageTitle from '../../../components/Global/PageTitle'; |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 98 | import TableRoles from './TableRoles'; |
| 99 | import TableToolbar from '../../../components/Global/TableToolbar'; |
| 100 | |
| 101 | import BVTableSelectableMixin from '../../../components/Mixins/BVTableSelectableMixin'; |
Yoshie Muranaka | 0fc91e7 | 2020-02-05 11:23:06 -0800 | [diff] [blame] | 102 | import BVToastMixin from '../../../components/Mixins/BVToastMixin'; |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 103 | import TableRowAction from '../../../components/Global/TableRowAction'; |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 104 | |
| 105 | export default { |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 106 | name: 'LocalUsers', |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 107 | components: { |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 108 | IconAdd, |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 109 | IconChevron, |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 110 | IconEdit, |
| 111 | IconSettings, |
| 112 | IconTrashcan, |
| 113 | ModalSettings, |
| 114 | ModalUser, |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 115 | PageTitle, |
Yoshie Muranaka | 8d12910 | 2019-12-19 09:51:55 -0800 | [diff] [blame] | 116 | TableRoles, |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 117 | TableRowAction, |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 118 | TableToolbar |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 119 | }, |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 120 | mixins: [BVTableSelectableMixin, BVToastMixin], |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 121 | data() { |
| 122 | return { |
| 123 | activeUser: null, |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 124 | fields: [ |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 125 | { |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 126 | key: 'checkbox' |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 127 | }, |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 128 | { |
| 129 | key: 'username', |
| 130 | label: this.$t('pageLocalUserManagement.table.username') |
| 131 | }, |
| 132 | { |
| 133 | key: 'privilege', |
| 134 | label: this.$t('pageLocalUserManagement.table.privilege') |
| 135 | }, |
| 136 | { |
| 137 | key: 'status', |
| 138 | label: this.$t('pageLocalUserManagement.table.status') |
| 139 | }, |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 140 | { |
| 141 | key: 'actions', |
| 142 | label: '', |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 143 | tdClass: 'text-right' |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 144 | } |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 145 | ], |
| 146 | tableToolbarActions: [ |
| 147 | { |
| 148 | value: 'delete', |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 149 | label: this.$t('global.action.delete') |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 150 | }, |
| 151 | { |
| 152 | value: 'enable', |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 153 | label: this.$t('global.action.enable') |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 154 | }, |
| 155 | { |
| 156 | value: 'disable', |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 157 | label: this.$t('global.action.disable') |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 158 | } |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 159 | ] |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 160 | }; |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 161 | }, |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 162 | computed: { |
| 163 | allUsers() { |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 164 | return this.$store.getters['localUsers/allUsers']; |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 165 | }, |
| 166 | tableItems() { |
| 167 | // transform user data to table data |
| 168 | return this.allUsers.map(user => { |
| 169 | return { |
| 170 | username: user.UserName, |
| 171 | privilege: user.RoleId, |
| 172 | status: user.Locked |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 173 | ? 'Locked' |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 174 | : user.Enabled |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 175 | ? 'Enabled' |
| 176 | : 'Disabled', |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 177 | actions: [ |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 178 | { |
| 179 | value: 'edit', |
| 180 | enabled: true, |
| 181 | title: this.$t('pageLocalUserManagement.editUser') |
| 182 | }, |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 183 | { |
| 184 | value: 'delete', |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 185 | enabled: user.UserName === 'root' ? false : true, |
| 186 | title: this.$t('pageLocalUserManagement.deleteUser') |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 187 | } |
| 188 | ], |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 189 | ...user |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 190 | }; |
| 191 | }); |
Yoshie Muranaka | 52b0223 | 2020-02-20 08:00:45 -0800 | [diff] [blame] | 192 | }, |
| 193 | settings() { |
| 194 | return this.$store.getters['localUsers/accountSettings']; |
| 195 | }, |
| 196 | passwordRequirements() { |
| 197 | return this.$store.getters['localUsers/accountPasswordRequirements']; |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 198 | } |
| 199 | }, |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 200 | created() { |
| 201 | this.getUsers(); |
Yoshie Muranaka | 52b0223 | 2020-02-20 08:00:45 -0800 | [diff] [blame] | 202 | this.getAccountSettings(); |
Derick Montague | 09e45cd | 2020-01-23 15:45:57 -0600 | [diff] [blame] | 203 | }, |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 204 | methods: { |
| 205 | getUsers() { |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 206 | this.$store.dispatch('localUsers/getUsers'); |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 207 | }, |
Yoshie Muranaka | 52b0223 | 2020-02-20 08:00:45 -0800 | [diff] [blame] | 208 | getAccountSettings() { |
| 209 | this.$store.dispatch('localUsers/getAccountSettings'); |
| 210 | }, |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 211 | initModalUser(user) { |
| 212 | this.activeUser = user; |
Derick Montague | e2fd156 | 2019-12-20 13:26:53 -0600 | [diff] [blame] | 213 | this.$bvModal.show('modal-user'); |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 214 | }, |
| 215 | initModalDelete(user) { |
| 216 | this.$bvModal |
| 217 | .msgBoxConfirm( |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 218 | this.$t('pageLocalUserManagement.modal.deleteConfirmMessage', { |
| 219 | user: user.username |
| 220 | }), |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 221 | { |
Yoshie Muranaka | eaa0480 | 2020-02-28 13:21:27 -0800 | [diff] [blame^] | 222 | title: this.$t('pageLocalUserManagement.deleteUser'), |
| 223 | okTitle: this.$t('pageLocalUserManagement.deleteUser') |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 224 | } |
| 225 | ) |
| 226 | .then(deleteConfirmed => { |
| 227 | if (deleteConfirmed) { |
| 228 | this.deleteUser(user); |
| 229 | } |
| 230 | }); |
| 231 | }, |
| 232 | initModalSettings() { |
Yoshie Muranaka | 1b1c100 | 2020-02-20 10:18:36 -0800 | [diff] [blame] | 233 | this.$bvModal.show('modal-settings'); |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 234 | }, |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 235 | saveUser({ isNewUser, userData }) { |
| 236 | if (isNewUser) { |
Yoshie Muranaka | 0fc91e7 | 2020-02-05 11:23:06 -0800 | [diff] [blame] | 237 | this.$store |
| 238 | .dispatch('localUsers/createUser', userData) |
| 239 | .then(success => this.successToast(success)) |
| 240 | .catch(({ message }) => this.errorToast(message)); |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 241 | } else { |
Yoshie Muranaka | 0fc91e7 | 2020-02-05 11:23:06 -0800 | [diff] [blame] | 242 | this.$store |
| 243 | .dispatch('localUsers/updateUser', userData) |
| 244 | .then(success => this.successToast(success)) |
| 245 | .catch(({ message }) => this.errorToast(message)); |
Yoshie Muranaka | 463a570 | 2019-12-04 09:09:36 -0800 | [diff] [blame] | 246 | } |
| 247 | }, |
| 248 | deleteUser({ username }) { |
Yoshie Muranaka | 0fc91e7 | 2020-02-05 11:23:06 -0800 | [diff] [blame] | 249 | this.$store |
| 250 | .dispatch('localUsers/deleteUser', username) |
| 251 | .then(success => this.successToast(success)) |
| 252 | .catch(({ message }) => this.errorToast(message)); |
Yoshie Muranaka | 183c275 | 2020-02-12 11:30:49 -0800 | [diff] [blame] | 253 | }, |
| 254 | onBatchAction(action) { |
| 255 | switch (action) { |
| 256 | case 'delete': |
| 257 | this.$store |
| 258 | .dispatch('localUsers/deleteUsers', this.selectedRows) |
| 259 | .then(messages => { |
| 260 | messages.forEach(({ type, message }) => { |
| 261 | if (type === 'success') this.successToast(message); |
| 262 | if (type === 'error') this.errorToast(message); |
| 263 | }); |
| 264 | }); |
| 265 | break; |
| 266 | case 'enable': |
| 267 | this.$store |
| 268 | .dispatch('localUsers/enableUsers', this.selectedRows) |
| 269 | .then(messages => { |
| 270 | messages.forEach(({ type, message }) => { |
| 271 | if (type === 'success') this.successToast(message); |
| 272 | if (type === 'error') this.errorToast(message); |
| 273 | }); |
| 274 | }); |
| 275 | break; |
| 276 | case 'disable': |
| 277 | this.$store |
| 278 | .dispatch('localUsers/disableUsers', this.selectedRows) |
| 279 | .then(messages => { |
| 280 | messages.forEach(({ type, message }) => { |
| 281 | if (type === 'success') this.successToast(message); |
| 282 | if (type === 'error') this.errorToast(message); |
| 283 | }); |
| 284 | }); |
| 285 | break; |
| 286 | default: |
| 287 | break; |
| 288 | } |
Yoshie Muranaka | 0e893f0 | 2020-02-18 13:39:45 -0800 | [diff] [blame] | 289 | }, |
| 290 | onTableRowAction(action, row) { |
| 291 | switch (action) { |
| 292 | case 'edit': |
| 293 | this.initModalUser(row); |
| 294 | break; |
| 295 | case 'delete': |
| 296 | this.initModalDelete(row); |
| 297 | break; |
| 298 | default: |
| 299 | break; |
| 300 | } |
Yoshie Muranaka | 1b1c100 | 2020-02-20 10:18:36 -0800 | [diff] [blame] | 301 | }, |
| 302 | saveAccountSettings(settings) { |
| 303 | this.$store |
| 304 | .dispatch('localUsers/saveAccountSettings', settings) |
| 305 | .then(message => this.successToast(message)) |
| 306 | .catch(({ message }) => this.errorToast(message)); |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 307 | } |
| 308 | } |
| 309 | }; |
| 310 | </script> |
| 311 | |
| 312 | <style lang="scss" scoped> |
Yoshie Muranaka | 4b0fc1d | 2020-01-06 07:36:16 -0800 | [diff] [blame] | 313 | .btn.collapsed { |
| 314 | svg { |
| 315 | transform: rotate(180deg); |
| 316 | } |
| 317 | } |
Yoshie Muranaka | 35080ac | 2020-01-17 15:38:57 -0600 | [diff] [blame] | 318 | </style> |